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

iMA iStochastic Custom - MetaTrader 5용 expert

조회수:
8127
평가:
(15)
게시됨:
2019.02.07 08:46
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

The EA uses custom indicators Custom Moving Average Levels and Stochastic Custom.

iMA iStochastic Custom

The EA only operates when a new bar appears. It can be averaged, i.e., open multiple position in the same direction. Exit a position:

  • By Stop Loss triggering
  • By Take Profit triggering
  • By the opposite signal

There is the reverse of trading signals.

Trading signals. Here, close[1] is the Close price on bar #1, ma_down[1] - the value of the Down buffer of indicator Custom Moving Average Levels on bar #1, , ma_up[1] - the value of the UP buffer of indicator Custom Moving Average Levels on bar #1, sto_main[1] - the value of the Main buffer of indicator Stochastic Custom on bar #1, and sto_signal[1] - the value of the Signal buffer of indicator Stochastic Custom on bar #1:

   if(close[1]<ma_down[1] && (sto_main[1]<Inp_STO_Level2 || sto_signal[1]<Inp_STO_Level2))
     {
      if(!InpReverse)
         m_need_open_sell=true;
      else
         m_need_open_buy=true;
     }
   else if(close[1]>ma_up[1] && (sto_main[1]>Inp_STO_Level1 || sto_signal[1]>Inp_STO_Level1))
     {
      if(!InpReverse)
         m_need_open_buy=true;
      else
         m_need_open_sell=true;
     }

MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/23386

Stochastic Custom Stochastic Custom

A modification of standard indicator iStochastic (Stochastic Oscillator, STO) - now you can manage levels #1 and #2 from your EA.

iMA iSAR EA iMA iSAR EA

A trading system based on three indicators iMA (Moving Average, MA) and two indicators iRSI (Relative Strength Index, RSI)

Stalin_Signal Stalin_Signal

Indicator Stalin_Signal displays information on the current trend, using the values of indicator Stalin_NRTR with a fixed timeframe

FitFul 13 FitFul 13

The EA focuses on the OHLC of timeframe W1