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

MARE5.1 - MetaTrader 5용 expert

게시자:
Vladimir Karputov
조회수:
4711
평가:
(30)
게시됨:
2017.03.02 11:50
업데이트됨:
2018.02.28 10:23
MARE5.1.mq5 (16.84 KB) 조회
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동

Author of the idea — Collectorauthor of the MQL5 code — barabashkakvn.  

The MARE5.1 Expert Advisor is very easy to use. It uses the values of two Moving Averages (SMA) at the close of 0th, 2nd and 5th bar. The EA is configured to work on the M1 timeframe.

Input Parameters:

  • Lots — entry position volume
  • TakeProfit — the Take Profit level
  • StopLoss — the Stop Loss level
  • MAFastPeriod — averaging period of the first Moving Average
  • MASlowPeriod — averaging period of the second Moving Average
  • MovingShift MA shift (the same for both Moving Averages)
  • HourTimeOpen and HourTimeClose — time (in hours), an interval inside which position opening is allowed
The OnInit() block contains security time validation:

   if((HourTimeOpen<0 || HourTimeClose<0) || (HourTimeOpen>23 || HourTimeClose>23))
     {
      return(INIT_PARAMETERS_INCORRECT);
     }
   if(HourTimeOpen==HourTimeClose)
     {
      return(INIT_PARAMETERS_INCORRECT);
     }
   if(HourTimeOpen>HourTimeClose)
     {
      return(INIT_PARAMETERS_INCORRECT);
     }

It means that time in hours cannot be less than "0" or greater than "23", overlapping is not allowed. 

MARE5.1 tester 

 

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

Session Buy Sell Orders Volume Session Buy Sell Orders Volume

A histogram of minimum and maximum values of the following parameters: SYMBOL_SESSION_BUY_ORDERS_VOLUME - "Total current volume of buy orders" and SYMBOL_SESSION_SELL_ORDERS_VOLUME - "Total current volume of sell orders".

Open Interest Open Interest

The indicator shows t he parameter "Total volume of open positions - SYMBOL_SESSION_INTEREST".

Exp_Fractal_WeightOscillator Exp_Fractal_WeightOscillator

The simplest EA based on the Fractal_WeightOscillator weighted oscillator.

NRTR_Gator_HTF NRTR_Gator_HTF

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