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

Three Typical Candles - MetaTrader 5용 expert

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

The EA only operates when a new bar appears within a specified time interval. It calculates the Typical prices for bars #1, #2, and #3. This results in getting trading signals:

   double typical_3=(rates[3].high+rates[3].low+rates[3].close)/3.0;
   double typical_2=(rates[2].high+rates[2].low+rates[2].close)/3.0;
   double typical_1=(rates[1].high+rates[1].low+rates[1].close)/3.0;

   if(typical_3<typical_2 && typical_2<typical_1)
      if(count_buys==0)
         m_need_open_buy=true;

   if(typical_3>typical_2 && typical_2>typical_1)
      if(count_sells==0)
         m_need_open_sell=true;

No more than one position is in the market at a time. A BUY open signal is also a SELL close one, and vice versa: A SELL open signal is a BUY close one (the algorithm is like this: First closing, and then opening).

I recommend testing it on timeframes starting from H1 and higher and on several symbols. 


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

Spreader Spreader

An Expert Advisor for two currency pairs

Stalin_x10 Stalin_x10

Indicator Stalin_x10 displays the trend direction and enter signals of indicator Stalin_NRTR from ten different timeframes on the bar defined in the indicator input parameters.

Heiken_Ashi_Smoothed_Volatility_Volume Heiken_Ashi_Smoothed_Volatility_Volume

Indicator Heiken_Ashi_Smoothed_VolatilityStep without rounding, multiplied by the averaged volumes

Float_Pivot_Digit_HTF Float_Pivot_Digit_HTF

Indicator Float_Pivot_Digit with the timeframe selection option in its input parameters