Voir comment télécharger gratuitement des robots de trading
Retrouvez-nous sur Facebook !
Rejoignez notre page de fans
Un script intéressant ?
Poster un lien vers celui-ci -
laisser les autres l'évaluer
Vous avez aimé le script ? Essayez-le dans le terminal MetaTrader 5
Vues:
3780
Note:
(14)
Publié:
2018.12.18 19:13
Mise à jour:
2023.03.29 13:48
\MQL5\Include\
Besoin d'un robot ou d'un indicateur basé sur ce code ? Commandez-le sur Freelance Aller sur Freelance

Semaphore signal indicator triggering when the JMACandle candles change their direction.

//+----------------------------------------------+
//|  INDICATOR INPUTS                            |
//+----------------------------------------------+
input Smooth_Method MA_Method1=MODE_JJMA;              //smoothing method
input int Length1=30;                                  //smoothing depth                    
input int Phase1=15;                                   //smoothing parameter,
//---- for JJMA, changing within -100 ... +100, affects the transient process quality;
//---- For VIDIA this is CMO period, for AMA this is a slow average
input uint Gap=10;                                     //not considered gap in points
input uint BuySymb=171;                                //Buy symbol
input uint SellSymb=171;                               //Sell symbol

To replace the values of the two last inputs, use the Wingdings font symbols table.

The indicator uses SmoothAlgorithms.mqh library classes (copy it to <terminal_data_folder>\MQL5\Include). The use of the classes was thoroughly described in the article "Averaging Price Series for Intermediate Calculations Without Using Additional Buffers".

Fig. 1. JMACandleTrend indicator

Fig. 1. JMACandleTrend indicator

Traduit du russe par MetaQuotes Ltd.
Code original : https://www.mql5.com/ru/code/22560

JMACandleTrend_Signal JMACandleTrend_Signal

JMACandleTrend_Signal indicator shows information on the current trend using the values of the JMACandleTrend indicator with a fixed timeframe

JMACandleTrend_x10 JMACandleTrend_x10

JMACandleTrend_x10 shows the direction of JMACandle indicator signals from ten different timeframes from the bar defined in the indicator input parameters

Three indicators Three indicators

The Expert Advisor is based on OHLC and three indicators: iMACD (Moving Average Convergence/Divergence, MACD), iStochastic (Stochastic Oscillator) and iRSI (Relative Strength Index, RSI)

SL_Breakeven SL_Breakeven

The function for moving an open position to a breakeven.