Rejoignez notre page de fans
- Vues:
- 1171
- Note:
- Publié:
- 2025.04.13 19:59
- Mise à jour:
- 2025.04.13 20:02
-
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance
Candle signature with example is a script which can be useful for traders doing research and development in finding single candlestick pattern, storing them and further making an enquiry
to find if such custom patterns may be repeated again
it has following example of datasets e.g. open,high,low,close,comment
where a user can add custom values to further find and explore matching patterns of candlestick using fuzzy matching algorithm
Example :
AddCustomPattern(1.0, 1.1, 0.95, 1.08, "Bullish Engulfing");
Futher user can also add tolerace as perfect patterns are rare to be repeated exactly
detector = new CandlePatternDetector(0.3); // 30% tolerance

This is a simple mean reversion EA

A logger with the ability to log specific modules or code sections

Kuskus Starlight is an oscillator that utilizes a Fisher price transformation to identify trends and potential reversals. The original MT4 code by Scriptor is available at: https://www.mql5.com/en/code/8365.

EquiPeak Drawdown Tracker is an indicator designed to monitor and record the maximum drawdown of your trading account in real time. It's not just a current drawdown indicator; it's especially useful for visually comparing your current drawdown with the maximum historical drawdown you expect or have previously recorded.