RTI Seven Slope Systemthis is an indicatorthis is an indicatorthis is an indicatorthis is an indicator
指標和策略
Period Separator with DatesSimple Period Separator script for multiple timeframes with dates and months for higher timeframes, and time if you are using lower time frames.
RTI Seven Slope SystemRTI Seven Slope System created by me myself and i. This has my favorite lines I like to use.
Volatility & Market Regimes [AlgoXcalibur]Analyze Market Conditions Like a Pro.
Volatility & Market Regimes is a specialized, institution-inspired indicator designed to help traders instantly identify the current conditions of the market with clarity and confidence.
By combining a real-time Volatility Histogram and Strength Line with a compact Regime Table, this tool reveals four essential market dimensions—Volatility, Strength, Participation, and Noise—in a clean and intuitive format. Whether you’re confirming trade setups or managing risk, knowing the current regimes enhances awareness across all assets and timeframes.
🧠 Algorithm Logic
This sophisticated tool continuously monitors four independent regimes, each reflecting a distinct dimension of market behavior:
• Volatility – Gauges how active or dormant the market is by comparing current price action movement to historical averages. A dynamic, color-gradient Volatility Histogram transitions from Low (ice blue/white) to Medium (green/yellow) to High (orange/red), giving you an immediate assessment of volatility and risk.
• Strength – Measures directional intensity by assessing trend momentum, pressure, and persistence. A color-gradient Strength Line ranges from weak (red) to strong (green), helping traders determine if directional strength is trending, weakening, or consolidating.
• Participation – Analyzes relative volume to assess the level of trader engagement. Higher volume indicates stronger participation and conviction, while low volume may signal uncertainty, fading momentum, or even liquidity traps.
• Noise – Evaluates structural stability by measuring how orderly or chaotic the price action is. High noise suggests choppy, unstable conditions, while low noise reflects clean, stable moves.
Each regime includes a High / Medium / Low classification and a color-coded directional arrow to indicate whether condition parameters are increasing or decreasing. Together, these components deliver real-time market context—helping you stay grounded in logic, not emotion.
⚙️ User-Selectable Features
Each component of the indicator—the Volatility Histogram, Strength Line, and Regime Table—can be independently made visible or hidden to match your preference. This flexibility allows you to display only the Regime Table and move it directly to your main chart, where it auto-positions to the center-right and integrates seamlessly with other AlgoXcalibur indicators that also use data tables for a cohesive and refined experience.
📊 Clarity, Not Guesswork
Volatility & Market Regimes is a unique, institution-inspired algorithm rarely seen in retail trading. Not only does it clearly display volatility—it translates complex market behavior into a clear context to reveal what’s happening behind the candles. By decoding core regimes in real-time, this tool transforms uncertainty into structured insight—empowering traders to act with clarity, not guesswork.
🔐 To get access or learn more, visit the Author’s Instructions section.
RSI + Divergence + Stochastic RSIsimple indicator combining RSI and STOCH
RSI indicator (with divergence detection, smoothing, and optional Bollinger Bands)
Stochastic RSI indicator (with %K and %D lines, bands, and background fill)
Pro Dual Supertrend-PDS|ask2maniish📘 Dual Supertrend Pro|PDS
Version: Pine Script v6 | Author: ask2maniish | Overlay: Yes
Description: Combines two Supertrend layers for high-confidence signals with advanced trade management and volatility-adjusted safety margins.
🌟 Key Features
Feature Description
Dual Supertrend Confirmation Main (conservative) + Fast (responsive) layers for high-probability entries
Trade Management System 3 Profit Targets + Dynamic Trailing Stop-Loss with auto-exit at T3
Safety Margin ATR/Percentage/Point-based buffer with volatility adjustments
Professional Visualization Trend tables, target lines, and color-coded trade markers
Comprehensive Alerts Entry/exit signals, target hits, and SL updates
⚙️ Input Parameters
🔵 Supertrend (Main)
Parameter Description Default
ATR Period (Main) ATR length for trend filtering 10
ATR Multiplier (Main) Sensitivity control 3.0
Change ATR Method? Use SMA(TR) instead of classic ATR true
Show Signals? Display buy/sell markers true
Highlighter Color-coded trend background true
🟢 Supertrend (Fast)
Parameter Description Default
ATR Period (Fast) Shorter ATR for early signals 5
ATR Multiplier (Fast) Aggressive sensitivity 1.5
Change ATR Method? Use SMA(TR) calculation true
Show Signals? Display fast layer markers true
Highlighter Highlight fast trend true
🎯 Trade Management
Parameter Description Default
ATR For SL/Target Volatility basis for risk management 21
SL/Target Multiplier Base distance multiplier 3.0
Auto Exit After T3? Close trade automatically at final target true
Show Target Labels? Mark T1/T2/T3 hits on chart true
Show Entry/Exit Marks? Label trade events true
🛡️ Safety Margin
Parameter Description Default
Enable Safety Margin Activate SL buffer true
Margin Type ATR/Percentage/Points ATR
Margin Value Buffer size (e.g., 0.5 ATR) 0.5
Dynamic Adjustment? Auto-increase in volatility true
Volatility Threshold ATR % to trigger dynamic mode 1.5%
Dynamic Factor Margin multiplier in volatility 1.5x
📊 Visuals & Tables
Parameter Description Default
Show Target Lines Plot T1/T2/T3 levels true
Show Trailing SL Display dynamic stop-loss true
Trend Layer Table Show Main/Fast trend status true
Trade State Table Real-time trade dashboard true
Table Location Bottom Right/Top Left etc. Bottom Right
🔍 Logic Overview
1. Dual Supertrend Calculation
pine
// Modified ATR Calculation
getATR(len, changeMethod) => changeMethod ? ta.atr(len) : ta.sma(ta.tr, len)
// Supertrend Logic
upBand = src - (Multiplier × ATR)
dnBand = src + (Multiplier × ATR)
trend = close > prevUpBand ? 1 : close < prevDnBand ? -1 : prevTrend
2. Trade Triggers
Condition Action
Both supertrends flip UP Long Entry
Both supertrends flip DOWN Short Entry
Price hits trailing SL or T3 Exit Trade
3. Safety Margin Adjustment
pine
safetyMargin =
useSafetyMargin ?
(safetyMarginType=="ATR" ? atrVal×safetyMarginValue :
safetyMarginType=="Percentage" ? close×(safetyMarginValue/100) :
safetyMarginValue×syminfo.mintick) : 0
4. Trailing SL Evolution
Event New SL Position
T1 Hit Entry price (breakeven)
T2 Hit Entry ± 0.5×ATR
T3 Hit Entry ± 1.5×ATR
📊 Visual Outputs
Trend Lines
Main Layer: 🟢 Green (UP) / 🔴 Red (DOWN)
Fast Layer: 🦠 Teal (UP) / 🟠 Orange (DOWN)
Signals
Buy/Sell markers for individual layers
CB (Confirmed Buy) / CS (Confirmed Sell) labels
Trade Markers
Entry: 🟩 Long / 🟥 Short
Exit: ⛔ "SL Hit" or "Exit"
Targets: ✅ T1 (Green) / T2 (Blue) / T3 (Purple)
IST Timestamps
All trade events in Indian Standard Time
🔔 Alert Conditions
Long Entry - Both supertrends confirm UP trend
Short Entry - Both supertrends confirm DOWN trend
Target 1/2/3 Hit - Profit targets achieved
Stop Loss Updated - Trailing SL moved
Long/Short Exit - Trade closed at SL or T3
⚡ Recommended Settings
Market Profile ATR Period Multiplier Use Case
Conservative 14 1.0-1.5× Balanced risk-reward
High Volatility 21 1.5-2.5× Crypto/indices
Scalping 5-10 0.5-1.0× Fast intraday trades
Swing Trading 14-21 1.5-3.0× Trend following
💡 Pro Tips
Layer Alignment - Only trade when both supertrends agree
Safety Margin - Use dynamic mode for crypto/volatile assets
Trade Management
Trail stops aggressively after T2
Enable auto-exit at T3 to lock profits
Backtesting - Test multipliers: Stocks (1-3×), Crypto (2-5×)
Note: For institutional-style exits, combine with order blocks/volume analysis
*** Disclaimer: Educational tool only. Not financial advice. Test strategies in risk-controlled environments.
HalfTrend cross 2.0 LcfxCore Functionality
HalfTrend Baseline
Plots a dynamic trend-following line that alternates between blue (bullish) and red (bearish)
Uses amplitude and channel deviation settings to adapt to market volatility
Shows ATR-based channels around the trend line (optional)
Key Signals:
Reversal Signals: Traditional arrows at trend reversal points
Cross Signals: Basic "B"/"S" labels when price crosses the HalfTrend line
Re-Cross Signals: Special "RB"/"RS" labels for strategic re-entry opportunities
Unique Re-Cross Logic
Bullish Trend:
Triggers RB (Re-Cross Buy) only when:
Price first crosses BELOW HalfTrend (bearish cross)
Then crosses BACK ABOVE HalfTrend
Only the FIRST such occurrence in current bullish trend
Bright green "RB" label
Bearish Trend:
Triggers RS (Re-Cross Sell) only when:
Price first crosses ABOVE HalfTrend (bullish cross)
Then crosses BACK BELOW HalfTrend
Only the FIRST such occurrence in current bearish trend
Orange "RS" label
Smart Signal Management
Prevents signal spam by allowing only one re-cross signal per trend phase
Automatically resets signals when trend reverses
Dedicated alerts for all signal types
Customizable visual elements (colors, channels, arrows)
Practical Use Case
Identifies high-probability continuation entries:
RB signals: Potential add-to-position points in uptrends after minor pullbacks
RS signals: Shorting opportunities in downtrends after dead-cat bounces
This enhanced version reduces noise while highlighting strategic trade setups where price temporarily violates the trend line but quickly reconfirms the dominant trend direction.
ANDROMEDA - Directional Strength Matrix [Multi-Asset]ANDROMEDA - Directional Strength Matrix
Pedro Canto – Portfolio Manager | CGA/CGE
OVERVIEW
The Directional Strength Matrix is a multi-symbol indicator designed to track and compare the directional momentum of up to five financial instruments simultaneously.
It builds upon the logic of the classic Currency Strength Slope, but expands its utility beyond currencies—making it applicable to indices, commodities, stocks, and crypto assets. The core of the system relies on a normalized slope algorithm, using a TMA-compensated moving average and ATR-based scaling to deliver accurate, real-time momentum readings.
This tool is ideal for traders seeking a quantitative view of strength and weakness across multiple assets, enabling fast relative analysis and improved decision-making in both trend-following and mean-reversion strategies.
---
WALKTHROUGH
Each asset’s directional strength is calculated using the slope of a weighted moving average (WMA), adjusted for volatility using the Average True Range (ATR). To reduce lag while maintaining stability, a TMA-compensated formula is applied — replicating behavior seen in the classic MQL4 CSS Indicator.
The normalized slope values are plotted as independent lines in a dedicated window, making it easy to spot which assets are strengthening or weakening at any given moment.
Key logic flow:
i) Calculate a TMA-style WMA for each instrument
ii) Estimate directional slope via differential between current and previous weighted averages
iii) Normalize by ATR to make values comparable across different assets and price ranges
iv) Plot all slope values on a shared matrix
Traders can compare multiple symbols side by side and visually identify the relative direction, strength, and acceleration of each asset.
---
USE CASES
- Comparing strength across indices like US30, US500, NASDAQ, Oil and Crypto
- Detecting early momentum shifts between competing assets
- Timing entries based on momentum divergence or alignment
- Filtering out weaker assets in trend strategies
- Creating custom strength overlays in multi-asset dashboards
---
KEY FEATURES
1. Multi-Asset Capability
Analyze up to 5 assets in real time, including the chart’s native symbol plus 4 customizable inputs.
2. TMA-Compensated Slope Algorithm
Provides low-lag slope estimation with high reactivity and accuracy.
3. ATR-Based Normalization
Ensures comparability across assets with different price scales and volatility levels.
4. Customizable Color Scheme
Assign distinct colors to each asset line for clean visual separation.
5. Real-Time Responsiveness
Supports shift adjustments to align with candle timing (real-time or closed-bar mode).
6. Compatible with All Asset Classes
Works with forex, indices, commodities, stocks, and crypto (a major improvement from the original Currency Strength Slope Indicator).
---
INPUTS AND CUSTOMIZATION
- Moving Average Period: Adjustable WMA length
- ATR Period: Volatility scaling parameter
- Shift: Choose between real-time view (-1) or closed-candle confirmation (0)
- Asset Inputs: Symbol selection for Asset 2 to 5
- Colors: Fully customizable for each line
---
DISCLAIMER
This indicator is a tool for technical analysis and educational purposes only. It is not intended as financial advice or a trading signal provider. Always apply proper risk management and consider fundamental and macroeconomic context before making investment decisions.
Past performance does not guarantee future results.
Adjustable EMA Crossover with Signals2 adjustable ema's with a crossover signal. This is to be used for trend identification along with entry and exit signals.
Mean Amplitude (300 candles)Displays the average candle amplitude (volatility) as % over a selected period. Useful for gauging market activity compression or expansion.
Intra-bar Close/Open Gap [YuL]Just checking one idea: look at gaps between close and open bars on lower timeframe to try to estimate how much slippage exists there that may be a result of buying or selling pressure.
Perhaps it only useful in real time to see if situation of the current bar is changing.
Open to ideas and suggestions.
Volume & Distance IndicatorA comprehensive multi-metric indicator that combines volume analysis, volatility measurement, and momentum positioning to provide crucial trading insights in a clean, customizable table format.
📊 Key Metrics:
52WH (52-Week High Distance) - Shows percentage distance from 52-week high, helping identify momentum and potential reversal zones.
Vol Val (Volume Value) - Calculates current close × SMA of volume, providing dollar-weighted volume analysis for institutional activity insights.
ADR (Average Daily Range) - Measures average volatility using SMA of High/Low ratios, essential for position sizing and risk management.
⚙️ Features: • Customizable periods (20 or 50 days) for Volume and ADR calculations • Enable/disable individual metrics • Fully customizable colors for labels and values • Adjustable text size (Tiny/Small/Normal/Large) • 9 table position options • Smart alert system with color-coded warnings
🚨 Alert System: • Red background when ADR < 3% (low volatility warning) • Red background when 52WH < -25% (oversold condition) • Customizable thresholds for personalized risk management
💡 Use Cases:
Identify low-volatility breakout setups
Monitor institutional volume participation
Track momentum relative to recent highs
Set position sizing based on volatility metrics
Settings are fully customizable - choose your preferred periods, colors, and alert levels. Perfect for swing traders, day traders, and investors who rely on volume and volatility analysis.
Works on all timeframes and asset classes.
This description highlights the indicator's professional features while explaining its practical trading applications for TradingView users.
SessionShades: London & NY CTSessionShades: London & NY CT is a lightweight TradingView indicator that visually highlights the London and New York trading sessions using a shaded background — no clutter, no blocks.
🔹 Time Zone: Central Time – automatically adjusts for DST
🔹 Sessions Highlighted:
• London: 2:00 AM – 11:00 AM CT
• New York: 7:00 AM – 4:00 PM CT
🔹 Customizable Colors: Easily change the shading colors and transparency
🔹 Intraday Use: Best viewed on intraday charts (1h, 30m, 15m, etc.)
This tool helps intraday traders and forex scalpers stay aware of key market hours with zero distraction. No indicators — just clean, visual session awareness.
BTC VWAP + EMA | Signal + Trailing ExitHello Everyone, this Indicator works only on futures and 15mins time frame.
VWAP + EMA-based signal tool with basic volatility filtering and trailing exit logic.
All the best :)
Internet Money TradingThis is a trend-following breakout indicator designed to identify bullish or bearish momentum using a combination of moving averages and volatility bands (based on ATR). It aims to capture price breakouts from a volatility envelope and alert traders to potential trend reversals or entries.
Red Report FilterHello Traders,
This script will make your everyday trading sessions a lot less stressful if you're having to watch for 'Red' restricted reports.
You can set up to five reports for the day, with a selector for either: 'Red' / 'Orange'
Super simple to update manually, usually less than 15s. You do need to pull the information from ForexFactory.com or your required feed daily.
No need to worry about audio fails; the alarm background visually updates as price candles start to sweep thru the preset time window.
Default window settings are for Red Reports, '15m Before' / '6m After', for a 5m x 5m window.
I like the '15m Before' because it gives me a buffer to react to if I'm managing an open trade.
Click the tool-tip for more details.
PLEASE NOTE: Time-Zone is hard-coded UTC -4. Make the appropriate adjustment to a different zone if necessary.
Let me know how it works for you.
Thx!
EMA Cross PThis is 20 , 50 , 200 ema line , display, you can also edit to any ema of your choice, you can also mark their crossover and highlight them at any time. so this is not for just the 20 50 or 200 , it can be 10 20 30 40 50 60 80 90 100 150 200 any ema of your choice, you can plot upto 3 ema with a single indicator. Thanks for your support.
ATR & SMA Info Table (v6)An indicator that displays ATR data with percentage change and moving average including stock name and time frame
ADX with Reference LineKey Features
ADX Line (Blue): Indicates the strength of the trend.
Reference Line at 25 (Dashed): A key threshold used to assess whether the market is trending or ranging.
+DI and -DI Lines (Green and Red): Show the direction of the trend — whether buyers or sellers are stronger.
Additional Reference Lines at 0 and 50: Help visualize the ADX range and potential trend strength zones.
RSI Orderflow S/R LinesRSI Orderflow S/R Lines is a lightweight, overlay-style indicator that automatically marks short-term support and resistance levels derived from momentum shifts in the 14-period Relative Strength Index. Instead of relying on raw RSI values, the script tracks the change in RSI from one bar to the next (ΔRSI). When this one-bar delta exceeds a user-defined positive threshold, it treats the surge in buying momentum as a potential support zone and drops a horizontal line at that bar’s close. Conversely, when ΔRSI falls below the negative of the threshold, the script interprets the selling pressure as a resistance cue and plots a line at that close.
Two simple inputs keep the tool highly configurable. “RSI Δ Threshold” (0–20) lets you dial in how sensitive the signal is: lower values will print levels more frequently, while higher settings focus only on the most forceful momentum swings. “Max S/R Lines” (1–10) controls chart clutter by limiting how many active levels remain on the screen. As new signals emerge, the indicator adds fresh lines and automatically deletes the oldest ones once the user-set cap is reached.
Each level is dynamic in color: green whenever the current price trades above the line (acting as support) and red whenever price is below (acting as resistance). Because every line extends to the right indefinitely, the indicator gives you a clear, real-time view of recent momentum-based zones that may attract bids or offers on subsequent retests.
This approach can complement traditional technical analysis by highlighting hidden supply-and-demand pockets rooted in aggressive shifts in trader conviction. Combine it with price-action confirmation, volume patterns, or broader market structure to refine entries, exits, and stop placement. As always, test settings on your preferred markets and timeframes before committing real capital, and remember that no indicator guarantees future performance—sound risk management is essential.
Multi Pivot Point - Nadeem alaa V1This advanced pivot point indicator combines both Traditional and Camarilla methods in one unified script, offering full customization and bilingual interface (Arabic–English).
It supports flexible pivot timeframes, including standard (Daily, Weekly, Monthly) and extended intervals (Biyearly, Quinquennial, Decennial).
Key features:
Traditional and Camarilla Pivot Levels (R1–R5, S1–S5, H1–H6, L1–L6)
Multi-timeframe logic with auto or manual resolution control
Customizable label placement, prices, and line styles
Daily-based or intraday-based OHLC calculation logic
Designed for high accuracy, clean visualization, and ease of use
Smart RSI DashboardThis script is a multi-timeframe dashboard indicator that analyzes Stochastic RSI and trend direction using EMA-based logic, with optional signal alerts when price reaches Fibonacci levels on the active chart. It includes:
- Customizable colors for RSI and trend states
- Buy/Sell signal detection based on:
- RSI being oversold or overbought
- Trend direction: Uptrend or Downtrend
- Price reaching Fibonacci key zones (0.618 for support, 0.382 for resistance)
- A floating table showing RSI status and trend across multiple timeframes
🔍 Detailed Breakdown:
| Component | Purpose |
| indicator(...) | Declares the indicator and sets it to overlay directly on the chart. |
| input.color(...) | Lets the user customize visual colors for RSI and trend states. |
| stoch() function | Calculates Stochastic RSI from the RSI values over a given period. |
| getStatus() | Returns text status "Oversold ✅", "Overbought ❌", or "Neutral" based on RSI thresholds. |
| getTrend() | Compares EMA(10) and EMA(50) to define "Uptrend 🔼", "Downtrend 🔽", or "Sideways". |
| Fibonacci levels | Automatically calculates 0.382 and 0.618 retracement levels from the last 100 candles. |
| Signals & Alerts | Detects buy/sell setups when RSI + trend + Fibonacci are aligned. Triggers alerts accordingly. |
| Dashboard table | Displays RSI and trend status for 5 timeframes (5m, 15m, 1H, 4H, 1D) in top-right corner. |
"This indicator analyzes market conditions using Stochastic RSI and EMA-based trend direction across multiple timeframes. It provides buy/sell signals when price reaches Fibonacci support/resistance levels and RSI/trend conditions agree. Users can customize display colors, and use real-time alerts for signal execution."