거래 로봇을 무료로 다운로드 하는 법을 시청해보세요
당사를 Twitter에서 찾아주십시오!
당사 팬 페이지에 가입하십시오
당사 팬 페이지에 가입하십시오
스크립트가 마음에 드시나요? MetaTrader 5 터미널에서 시도해보십시오
Ingrit - MetaTrader 5용 expert
- 게시자:
- Vladimir Karputov
- 조회수:
- 5567
- 평가:
- 게시됨:
- 2019.02.07 08:58
- 이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Idea by: Ingrit
mq5 code by: barabashkakvn
BUY opening condition.
Bar #1 is bearish
Difference between the High price of bar #14 and the Low price of bar #1 exceeds the value of parameter "Step"
if(rates_m5[1].open>rates_m5[1].close) if((rates_m5[14].high-rates_m5[1].low)>ExtStep) { if(!InpReverse) m_need_open_buy=true; else m_need_open_sell=true; }
SELL opening condition.
Bar #1 is bullish
Difference between the High price of bar #14 and the Low price of bar #1 exceeds the value of parameter "Step"
if(rates_m5[1].close>rates_m5[1].open) if((rates_m5[1].high-rates_m5[14].low)>ExtStep) { if(!InpReverse) m_need_open_sell=true; else m_need_open_buy=true; }
Testing at EURUSD, H1:
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/23499
Starter
Three timeframes. One iMA (Moving Average, MA) and one iStochastic (Stochastic Oscillator) on each timeframe
XXDPO_CandleIndicator XXDPO represented as candles
hedger
Protecting a position (hedging)
Stochastic_Convergence_DivergenceIndicator Two Stochastics with MA Smoothing and Convergence Divergence line