Guarda come scaricare robot di trading gratuitamente
Ci trovi su Twitter!
Unisciti alla nostra fan page
Script interessante?
Pubblica il link!
lasciare che altri lo valutino
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
Sistemi Esperti

GO - sistema esperto per MetaTrader 5

Pubblicati da::
Vladimir Karputov
Visualizzazioni:
2690
Valutazioni:
(14)
Pubblicato:
2017.01.26 09:07
Aggiornato:
2018.06.15 12:30
GO.mq5 (20.4 KB) visualizza
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

Author of the idea — Victor Chebotariovauthor of the MQL5 code — barabashkakvn.

Signals based on four iMA (MA) indicators, by PRICE_OPEN, PRICE_HIGH, PRICE_LOW, PRICE_CLOSE prices. Trades only on hedge accounts.

Block for determining the signal direction:

   double open =iMAGet(handle_iMA_open,0);
   double high =iMAGet(handle_iMA_high,0);
   double low  =iMAGet(handle_iMA_low,0);
   double close=iMAGet(handle_iMA_close,0);
   double GO=((close-open)+(high-open)+(low-open)+(close-low)+(close-high))*iTickVolume(0);

The number of positions is limited by the parameter 

input int               MaxPositions   =5;

Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/16968

Expert MACD EURUSD 1 Hour Expert MACD EURUSD 1 Hour

Works based on the iMACD (MACD) indicators

Fractal_Bands_HTF Fractal_Bands_HTF

The Fractal_Bands indicator with the timeframe selection option available in the input parameters.

Fractal_Keltner_HTF Fractal_Keltner_HTF

The Fractal_Keltner indicator with the timeframe selection option available in the input parameters.

Fractal_DeMarker Fractal_DeMarker

Fractal DeMarker oscillator.