Self-Aware Trend System (SATS) is a multi-engine SuperTrend for MT5 built around four parts: adaptive ATR SuperTrend bands, a Trend Quality Index (TQI), composite signal scoring, and on-chart risk levels (entry, SL, TP1–TP3).
Band width adapts with Kaufman Efficiency Ratio:
Automated trading on MetaTrader
- Daily Risk Monitor Lite is a free, open-source MT5 indicator that renders intraday account risk directly on the chart with a small, explainable feature set. The panel shows Daily Realized P/L, Floating P/L, Daily Total, and current drawdown percent, plus SAFE/WARNING/DANGER
- A confluence detector identifies price zones where Fibonacci retracement levels from multiple swing pairs align. The algorithm selects 4–5 significant swing points, calculates 38.2%, 50%, 61.8%, and 78.6% levels for each swing pair, then scans for clusters where two or more
- MQL5 EAs often persist input changes by rewriting a single settings file, which removes history and makes past test results hard to reproduce. A practical alternative is an append-only binary log. Each parameter snapshot is stored as a fixed-size struct record, enabling fast
- MetaTrader 5 keeps trade history inside the terminal, so external analytics need an explicit export path. This article completes that link by adding a lightweight EA that emits a trade record the moment a position is closed. The core design is event-driven: OnTradeTransaction

