거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Telegram에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
스크립트가 흥미로우신가요?
그렇다면 링크 to it -
하셔서 다른 이들이 평가할 수 있도록 해보세요
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Experts

Bronze Warrioir - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
3472
평가:
(16)
게시됨:
2018.11.20 12:46
\MQL5\Indicators\
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

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.

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: 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.