Comments for https://ctrader.com/products/3156
Comments for: https://ctrader.com/products/3156
- Aalgo_expert
The overall architecture of the system looks disciplined and professionally structured. The combination of D1/H4 trend filtering, ADX confirmation, ATR-based exits, breakeven, and trailing logic creates a clean and technically safe swing-trading framework without dangerous recovery mechanics. Runtime behavior during testing was stable and predictable. The main issue observed was extremely low trade frequency caused by very strict filtering conditions. The strategy appears to wait for near-perfect setups, which significantly limits opportunity participation and makes profitability statistically fragile. A slightly more flexible calibration of the ADX, EMA deviation, or cooldown logic could potentially improve market engagement without damaging the system’s overall robustness.
- AAI_PROGRAMMING
Thanks for the detailed review.
The low trade frequency is a deliberate design choice, not an oversight. This cBot targets D1/H4 swing setups where signal quality is prioritized over signal count. In my own forward testing, loosening ADX, EMA deviation, or cooldown raised trade count but also raised drawdown and reduced average R per trade, so the defaults are tuned conservatively.
That said, every filter you mentioned is exposed as a parameter — ADX Threshold, ADX Slope Tolerance, EMA Deviation Pips, Cool Down Hours — so users who prefer higher market engagement can recalibrate without modifying the code. For a more active profile, ADX Threshold around 15–18 and EMA Deviation around 200+ pips is a reasonable starting point.
Appreciate the constructive feedback.- Aalgo_expert
The additional clarification significantly improved understanding of the system design. It is now clear that the low trade frequency is an intentional architectural decision rather than an unintended side effect of over-filtering. The conservative defaults appear designed to prioritize signal quality, reduce drawdown, and maintain a cleaner risk profile. It is also positive that key filters such as ADX Threshold, EMA Deviation, and Cooldown Hours remain fully adjustable, allowing users to adapt the strategy to different trading styles without modifying the core logic. The overall framework now looks more like a disciplined long-horizon swing system rather than a low-activity limitation.
- BIn reply tosystem⬆:BotTraderPro1
Is there a “kill switch” or safety mechanism?
- AAI_PROGRAMMING
There is no single-button kill switch in this version, but multiple layered safety mechanisms are built in:
Risk % per Trade caps loss per position (default 1%).
Max Lots hard-limits position size regardless of equity growth.
Cool Down Hours prevents back-to-back entries on the same instrument.
ATR-based SL with a minimum SL pips floor ensures every position has a stop attached at order time.
One position per instance at a time — no pyramiding, no martingale, no grid.
BE move at +1.2R and ATR trailing at +2.2R lock in profit once a trade runs in favor.For account-wide protection, cTrader's built-in Equity Stop Loss or a separate guardian cBot can be layered on top of this one.