ATR Rider
- 专家
-
Rudi Rupian
我的交易之旅始于2008年——不是为了追逐快速利润,而是为了建立真正理解市场运作方式的纪律与耐心。多年来,我形成了一种沉稳、长期的交易方式:专注、系统化,并始终以概率为导向。
我专注于在MQL5平台上开发智能交易系统(EA)——从逻辑设计、历史回测,到参数优化与实盘部署。我的EA不是建立在侥幸之上,而是建立在统计优势、风险管理与持续稳定性之上。我相信,一个好的交易系统应该在后台安静运行,让你安心生活。
除了开发系统,我也热衷于教育——帮助其他交易者了解如何创建、测试并信任自己的自动化交易系统。我认为,最好的交易者不是交易次数最多的人,而是真正理解自己系统运作逻辑的人。 - 版本: 1.20
- 激活: 9
ATR Rider is an automated Expert Advisor (EA) for MetaTrader 5, designed for trading XAUUSD (Gold) and other volatile instruments. It uses ATR (Average True Range) Volatility Breakout signals to detect high-momentum market moves, entering trades only after a candle fully closes — ensuring confirmation before execution.
The EA features a smart averaging system that adds positions when the market moves against the initial entry, using ATR-based distance rather than fixed pips — making it adaptive to current market volatility. A built-in loss recovery mechanism automatically extends Take Profit after a Stop Loss event to cover accumulated losses.
Key principle: One direction only per cycle — no hedging, no conflicting positions.
Entry Signal — ATR Volatility Breakout
Signals are confirmed only on candle close. No trade is opened mid-candle.
BUY Signal: Close[1] > High[2] + (ATR[2] × Signal_ATR_Mult) → Last closed candle breaks above the previous candle's High extended by ATR distance.
SELL Signal: Close[1] < Low[2] − (ATR[2] × Signal_ATR_Mult) → Last closed candle breaks below the previous candle's Low extended by ATR distance.
Where:
- Close[1] = Closing price of the most recently completed candle
- High[2] / Low[2] = High and Low of the candle before that
- ATR[2] = ATR value of that reference candle
- Signal_ATR_Mult = configurable multiplier (default: 1.0)
