당사 팬 페이지에 가입하십시오
- 조회수:
- 1195
- 평가:
- 게시됨:
- 2025.04.13 19:59
- 업데이트됨:
- 2025.04.13 20:02
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
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.