ATR_RR_EMASignalPanel
Indicador
1 compras
Version 1.0, Dec 2025
Windows, Mac
Imagem carregada de "ATR_RR_EMASignalPanel"
42.04M
Volume negociado
6.13M
Pips ganhos
94
Vendas
4.43K
Instalaรงรตes gratuitas

๐Ÿ”ง ATR_RR_SignalPanel โ€” Technical & Detailed Description (EN) ๐Ÿง ๐Ÿ“ˆ

ATR_RR_SignalPanel is an overlay indicator for cTrader that generates trend-change entry signals using a Fast EMA vs Slow EMA regime, then builds a complete virtual trade framework (Entry ๐Ÿ, Stop Loss ๐Ÿ›‘, Final Take Profit ๐ŸŽฏ, Intermediate Targets ๐ŸŸข) using ATR-based risk sizing and a configurable Risk:Reward multiplier โš–๏ธ.

๐Ÿงญ Core Logic (Signal Engine) ๐Ÿšฆ

  • The indicator computes:
    • Fast EMA โšก and Slow EMA ๐Ÿข on Close.
    • ATR (Wilder smoothing) ๐ŸŒก๏ธ for volatility-based stop distance.
  • A trend regime is defined as:
    • Bull trend ๐ŸŸข when Fast EMA > Slow EMA
    • Bear trend ๐Ÿ”ด when Fast EMA < Slow EMA
  • A Trend Change ๐Ÿ” triggers when the bull/bear state differs from the previous bar (equivalent to Pineโ€™s bullTrend != bullTrend[1]).

๐ŸŽฏ Entry Conditions (BUY/SELL) ๐ŸŸฉ๐ŸŸฅ

When a trend change occurs:

  • BUY signal ๐ŸŸข if:
    • Bull trend is active and a trend change is detected
    • Optional candle confirmation โœ…: Close > Open (bullish candle)
  • SELL signal ๐Ÿ”ด if:
    • Bear trend is active and a trend change is detected
    • Optional candle confirmation โœ…: Close < Open (bearish candle)

๐Ÿงช Virtual Position Management (Not a cBot) ๐Ÿงฉ

This indicator does not place orders. Instead it simulates an internal โ€œvirtual positionโ€:

  • On a new BUY/SELL signal it sets:
    • Entry Price = current close ๐Ÿ
    • Stop Loss = candle extreme ยฑ ATR ร— multiplier ๐Ÿ›‘
    • Final Take Profit = Entry ยฑ (Risk ร— RiskReward) ๐ŸŽฏ
    • Intermediate TP levels = steps at 1R, 2R, โ€ฆ up to floor(RR)-1 ๐ŸŸข
  • It monitors price action bar-by-bar:
    • If TP final is touched โžœ marks ๐ŸŽฏ and closes virtual position โœ…
    • If SL is touched โžœ marks ๐Ÿ›‘ and closes virtual position โŒ
    • Intermediate TP hits are tracked only once ๐Ÿงท

๐Ÿ” Invalidation Logic (Opposite Signal While Active) โš ๏ธ

If a new signal arrives while a virtual trade in the opposite direction exists:

  • The previous entry is marked as INVALIDATED โš ๏ธ (INV BUY / INV SELL)
  • The prior virtual position is terminated ๐Ÿงฏ
  • A new virtual position is created in the new direction ๐Ÿ”„

๐Ÿงผ Multi-Instance Safe (Multiple Copies on Same Chart) ๐Ÿงฉ๐Ÿงฉ

Each indicator instance generates a unique internal ID ๐Ÿ†”, so:

  • Lines/text from one instance wonโ€™t overwrite another instance โœ…
  • You can run several configurations in parallel (e.g., scalping + swing) ๐Ÿง ๐Ÿ“Š

๐Ÿงฏ Anti-Clutter Controls (Markers Limiter) ๐Ÿงนโœจ

To keep charts readable, it can:

  • Limit the number of text markers drawn (BUY/SELL/TP/SL/INV/TP1โ€ฆ) ๐Ÿงพ
  • Automatically delete older markers when the limit is exceeded โ™ป๏ธ

๐Ÿงท Optional โ€œKeep Last Risk Linesโ€ ๐Ÿง ๐Ÿ“Œ

When enabled, the last Entry/SL/TP lines remain visible even after TP/SL closes:

  • Great for post-trade review ๐Ÿง‘โ€๐Ÿ”ฌ
  • Great for journaling ๐Ÿ“’โœ…


โš™๏ธ Parameters โ€” Detailed Explanation (EN) ๐Ÿ”๐Ÿ“Œ

๐Ÿ“ˆ Signal & Risk Core

โšก Fast EMA

  • What it does ๐Ÿง : Sets the period of the fast EMA used to detect regime shifts.
  • Effect ๐Ÿ“Š: Lower values = more reactive โžœ more signals; higher = smoother โžœ fewer signals.
  • Typical ranges ๐ŸŽ›๏ธ: 3โ€“10 for fast markets โšก, 10โ€“20 for calmer setups ๐Ÿข

๐Ÿข Slow EMA

  • What it does ๐Ÿง : Sets the period of the slow EMA used as the trend baseline.
  • Effect ๐Ÿ“Š: Higher slow EMA = stronger filtering โžœ fewer trend-change triggers.
  • Typical ranges ๐ŸŽ›๏ธ: 13โ€“55 depending on style ๐Ÿงญ

๐ŸŒก๏ธ ATR Period

  • What it does ๐Ÿง : Controls volatility measurement length for ATR.
  • Effect ๐Ÿ“: Short ATR reacts quickly (tighter SL), long ATR stabilizes (steadier SL).
  • Typical ranges ๐ŸŽ›๏ธ: 10โ€“21 is common โœ…

๐Ÿ›‘ SL Multiplier (ATR)

  • What it does ๐Ÿง : Defines Stop Loss distance in ATR units.
  • Long ๐ŸŸข: SL = Low - ATR * Mult
  • Short ๐Ÿ”ด: SL = High + ATR * Mult
  • Effect ๐ŸŽฏ: Higher multiplier = wider SL (fewer stops, bigger risk); lower = tighter SL (more stops).
  • Typical values ๐ŸŽ›๏ธ: 0.3โ€“2.0 depending on volatility ๐ŸŒช๏ธ

โš–๏ธ Risk:Reward (R:R)

  • What it does ๐Ÿง : Multiplies the โ€œriskโ€ distance to compute final TP.
  • Formula ๐Ÿ“Œ:
    • Risk = |Entry โˆ’ SL|
    • Final TP = Entry ยฑ Risk ร— RR ๐ŸŽฏ
  • Intermediate TPs ๐ŸŸข: TP1 at 1R, TP2 at 2R, โ€ฆ up to floor(RR)-1
  • Example ๐Ÿงช: RR=3 โžœ TP1 (1R), TP2 (2R), Final TP (3R) ๐ŸŽฏ๐ŸŽฏ๐ŸŽฏ

โœ… Require candle confirmation

  • What it does ๐Ÿง : Adds candle direction validation on the signal bar.
  • BUY ๐ŸŸข: requires Close > Open
  • SELL ๐Ÿ”ด: requires Close < Open
  • Effect ๐Ÿงฝ: Filters out weak flips, reduces noise, may enter later โณ


๐Ÿ“Œ EMAs Display

๐Ÿ‘๏ธ Show Fast EMA

  • What it does ๐Ÿง : Shows/hides the fast EMA line.
  • Use case ๐Ÿ’ก: Hide if you want a clean chart ๐Ÿงผ

๐Ÿ‘๏ธ Show Slow EMA

  • What it does ๐Ÿง : Shows/hides the slow EMA line.
  • Use case ๐Ÿ’ก: Keep visible for trend context ๐Ÿงญ


๐ŸŽ›๏ธ Visual Controls (Clutter Management) ๐Ÿงนโœจ

๐Ÿšฆ Show Signals

  • What it does ๐Ÿง : Shows/hides BUY/SELL markers.
  • Includes ๐Ÿงท: BUY ๐ŸŸข / SELL ๐Ÿ”ด markers (only)
  • Tip ๐Ÿ’ก: Disable for โ€œlines-onlyโ€ mode ๐Ÿ“

๐Ÿท๏ธ Show TP Labels

  • What it does ๐Ÿง : Shows/hides labels like TP1, TP2โ€ฆ
  • Effect ๐Ÿงผ: Turning OFF removes lots of text noise on higher TFs ๐Ÿ“‰
  • Note ๐Ÿงท: Labels appear only once per TP hit โœ…

โš ๏ธ Show Invalidation Marks

  • What it does ๐Ÿง : Shows/hides INV BUY / INV SELL markers.
  • Use case ๐Ÿง : Useful when you want to study signal reversals ๐Ÿ”

๐ŸŽฏ๐Ÿ›‘ Show Final TP/SL Marks

  • What it does ๐Ÿง : Shows/hides final TP and SL markers.
  • Use case ๐Ÿ“’: Great for reviewing outcome distribution ๐ŸŽฒ

๐Ÿ“ Show Risk Lines (Entry/SL/TP)

  • What it does ๐Ÿง : Draws Entry ๐Ÿ, SL ๐Ÿ›‘, Final TP ๐ŸŽฏ lines on the chart.
  • Effect ๐Ÿ“Œ: Visualizes the virtual trade structure instantly ๐Ÿง 

๐ŸŸข Show Intermediate TP Lines

  • What it does ๐Ÿง : Draws dotted lines for TP1/TP2/... levels.
  • Tip ๐Ÿงผ: Disable if chart gets too โ€œgreen spaghettiโ€ ๐Ÿ๐ŸŸข

๐Ÿ“Œ Keep Last Risk Lines

  • What it does ๐Ÿง : Keeps the last Entry/SL/TP lines visible after virtual exit (TP/SL).
  • Why itโ€™s useful ๐Ÿ“’: Perfect for journaling & post-trade analysis ๐Ÿง‘โ€๐Ÿ”ฌโœ…

๐Ÿงพ Max Markers On Chart (0=unlimited)

  • What it does ๐Ÿง : Limits how many text objects the indicator leaves on the chart.
  • How it works โ™ป๏ธ: When the limit is exceeded, the oldest markers are removed automatically.
  • Recommended ๐ŸŽ›๏ธ: 80โ€“200 depending on timeframe and history depth ๐Ÿ•ฐ๏ธ

๐Ÿงพ Show Info Panel

  • What it does ๐Ÿง : Displays a compact status panel on the chart.
  • Shows ๐Ÿ“‹: Status (LONG/SHORT/No Position), Entry, SL, TP, computed RR.
0.0
Avaliaรงรตes: 0
Avaliaรงรตes de clientes
Ainda nรฃo hรก avaliaรงรตes para este produto. Jรก o experimentou? Seja o primeiro a contar a outras pessoas!
NAS100
NZDUSD
Martingale
Forex
Fibonacci
EURUSD
MACD
BTCUSD
SMC
Indices
ATR
Stocks
Grid
RSI
Breakout
XAUUSD
FVG
Commodities
Signal
Bollinger
GBPUSD
AI
VWAP
ZigZag
Prop
Supertrend
Crypto
USDJPY
Scalping

Mais deste autor

Indicador
NAS100
NZDUSD
Martingale
+26
Volume Delta
Read aggressive flow in real time. Flexible resets (Day/Week/Month), optional EMA smoothing, and non-repainting cumulati
cBot
NAS100
NZDUSD
Martingale
+26
Prop Ready Bot_v.2.0
The Prop-Ready Bot The Definitive Automaton for Challenges ๐Ÿ›ก๏ธ V2.0
Indicador
Grid
NZDUSD
XAUUSD
+16
vWAP Free
Editions: Free (core VWAP + bands) ยท Pro (multiโ€‘VWAP, clickโ€‘toโ€‘anchor, alerts).
cBot
Grid
NAS100
RSI
+20
Breakout Premium Pro v2.0
A price-action-first algorithm to trade Breakout, Approach, and Return around prior High/Low levelsโ€”with Prop-style risk
Indicador
NAS100
NZDUSD
Martingale
+26
Volume Bubble
Volume Bubbles is a lightweight yet powerful visual indicator for cTrader
cBot
NAS100
NZDUSD
Martingale
+26
TradeCopierBot
โœ… Buy 3 prop accounts and manage just 1: cut management effort by 66% with a professional tool.
cBot
NAS100
NZDUSD
Martingale
+26
ElliottWaveBot
N.B.: Results with an initial invested capital of 100 euros.
cBot
NAS100
NZDUSD
Martingale
+26
ElliottWave Pro cBot
The Elliott Wave Pro Bot is a sophisticated and highly configurable algorithmic trading system
Indicador
NAS100
NZDUSD
Martingale
+26
Breakout channel
Breakout Channels automatically detects consolidation ranges and highlights when price breaks out of them.
cBot
Grid
Indices
XAUUSD
+7
Scalper Pro PROP
Breakout scalping with prop-firm grade equity control.
Indicador
NAS100
NZDUSD
Breakout
+14
ZIG ZAG Free
ZigZag Free is a clean swing-detection tool that marks significant pivot highs/lows
cBot
NAS100
Indices
XAUUSD
+7
COT Institutional Sentiment Bot
Institutional COT sentiment, automated position trading and full prop-firm style risk control โ€“ all in one cBot.

Tambรฉm poderรก gostar de

Indicador
NZDUSD
XAUUSD
Stocks
+7
Signals Volatility Cloud Breakout
๐ŸŽฏGenerate precise BUY/SELL signals. ๐Ÿ“ˆ๐ŸŽฏ Tracks trends with colored candles & clouds.
VolumeRenkoRange
Volume for Renko/Range
Indicador
ZigZag
NAS100
NZDUSD
+7
Price Projection Swing Volume
Price Projection Swing Volume maps future paths using swing pivots and Fibonacci ratios. Visual, geometric and precise.!
Indicador
FVG
Forex
Volume Profile Price
Volume Profile Price Period and Live VAH,VAL,POC,
Indicador
RSI
ATR
Signal
+1
Trading Fusion Bars 2
This indicator works best as a trend-confirmation toolโ€”wait for multiple signals!
Indicador
Indices
Commodities
Forex
+2
Advanced Swings
ICT Advanced Swings Indicator โ€“ Multi-Timeframe Precision
Indicador
Indices
Forex
EURUSD
+1
DXY w HMA
DXY HMA Indicator
Trend Direction Force Index - TDFI (Alerts)
Spot Strong Trends Early & Filter Market Noise
zh-cn Variety Period time panel๏ผˆmultilanguage๏ผ‰
This indicator can be used to: change color, shape size, position, change font, increase or decrease, and other function
Indicador
Indices
Breakout
Prop
+8
Deviation Trend Profile
Easy trend tool showing price zones and movement patterns with colour signals that change when trends shift direction.
Indicador
NAS100
NZDUSD
XAUUSD
+11
Support and Resistance Lite
๐ŸŸข Real swing-based support & resistance with ATR-powered half-bands ๐Ÿ”ด
Indicador
NAS100
XAUUSD
Breakout
+12
Daily Weekly Monthly - Highs & Lows
Daily/Weekly/Monthly - Highs & Lows Indicator (Customizable Settings)
42.04M
Volume negociado
6.13M
Pips ganhos
94
Vendas
4.43K
Instalaรงรตes gratuitas