Guarda come scaricare robot di trading gratuitamente
Ci trovi su Facebook!
Unisciti alla nostra fan page
Unisciti alla nostra fan page
Ti è piaciuto lo script? Provalo nel Terminale MetaTrader 5
- Pubblicati da::
- Vladimir Karputov
- Visualizzazioni:
- 7269
- Valutazioni:
- Pubblicato:
- 2017.01.26 09:25
- Aggiornato:
- 2018.02.27 13:08
-
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance
Author of the idea — Collector, author of the MQL5 code — barabashkakvn.
Uses signals from the indicators: ATR, MACD.
Block of getting the indicators:
Range=iATRGet(1);
rr=Range*LEVEL;
Delta=iMACDGet(MAIN_LINE,0)-iMACDGet(SIGNAL_LINE,0);
Delta1=iMACDGet(MAIN_LINE,1)-iMACDGet(SIGNAL_LINE,1);
rr=Range*LEVEL;
Delta=iMACDGet(MAIN_LINE,0)-iMACDGet(SIGNAL_LINE,0);
Delta1=iMACDGet(MAIN_LINE,1)-iMACDGet(SIGNAL_LINE,1);
Open Buy if:
if(Delta>rr && Delta1<rr)
Open Sell if:
if(Delta<-rr && Delta1>-rr)
Tradotto dal russo da MetaQuotes Ltd.
Codice originale https://www.mql5.com/ru/code/17080

Increasing the lot after a losing trade. Entry signals are based on the DeMarker indicator.

The simplest EA based on the WeightOscillator weighted oscillator.

The Chart on Chart indicator displays a chart of other symbol on the current chart.

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