Guarda come scaricare robot di trading gratuitamente
Ci trovi su Facebook!
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

Bronze Warrioir - sistema esperto per MetaTrader 5

Pubblicati da::
Vladimir Karputov
Visualizzazioni:
3501
Valutazioni:
(16)
Pubblicato:
2018.11.20 12:46
\MQL5\Indicators\
Hai bisogno di un robot o indicatore basato su questo codice? Ordinalo su Freelance Vai a Freelance

The author of the idea - Scriptor

mq5 code author - barabashkakvn

The Expert Asvisor uses iCCI (Commodity Channel Index, CCI) and iWPR (Williams’ Percent Range, %R) indicators, as well as custom DayImpuls indicator. You can open opposite positions, therefore only hedging accounts are recommended.

All three indicators have a common averaging interval - Averaging period for all indicators. For CCI, the level is set as a positive number CCI: positive, negative levels - in the code, it is compared both as + CCI: positive, negative levels, and as CCI: positive, negative levels:

      if(count_sells==0)
         if(custom[0]>Inp_DayImpuls_Level && custom[1]<custom[0] && wpr[0]>Inp_WPR_Level_UP && cci[0]>Inp_CCI_Level)
           {
            OpenPosition(InpLots,POSITION_TYPE_SELL);
            return;
           }
      if(count_buys==0)
         if(custom[0]<Inp_DayImpuls_Level && custom[1]>custom[0] && wpr[0]<Inp_WPR_Level_DOWN && cci[0]<-Inp_CCI_Level)
           {
            OpenPosition(InpLots,POSITION_TYPE_BUY);
            return;
           }

WPR has two levels: WPR: level UP and WPR: level DOWN.

DayImpuls custom indicator has a single level: DayImpuls: level.

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

Executer AC Executer AC

Trading system based on iAC indicator (Acceleration/Deceleration, Accelerator/Decelerator Oscillator, AC)

InvertBar_Plus InvertBar_Plus

The inverted chart of the current financial instrument, displaying Ask and Bid price levels in the form of colored bars in the additional window

DayImpuls DayImpuls

Impulse detector. The indicator applies MovingAverages.mqh

FT CCI MA FT CCI MA

The Expert Advisor is based on iCCI (Commodity Channel Index, CCI) and iMA (Moving Average, MA) indicators.