당사 팬 페이지에 가입하십시오
- 게시자:
- Vladimir Karputov
- 조회수:
- 7025
- 평가:
- 게시됨:
- 2018.08.23 13:17
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
The author of the idea: Scriptor
MQL5 code author: barabashkakvn
The EA is based on three iMA (Moving Average, MA) indicators using the MODE_SMA averaging method (Simple averaging). It works on every tick.
Signal for opening a BUY position
"MA 1", "MA 2" and "MA 3" indicator values are taken from the bar #0.
"MA 1" is above "MA 2" by MA's spread points, while "MA 2" indicator is above "MA 3" by MA's spread points:
Signal for opening a SELL position
"MA 1", "MA 2" and "MA 3" indicator values are taken from the bar #0.
"MA 1" indicator is below "MA 2" by MA's spread points, while "MA 2" is below "MA 3" by MA's spread points.
Limitations for position opening
If at the moment, there are BUY positions opened by this EA, then the BUY signal is ignored. The same is done with the SELL signal.
Closing Positions
"MA 1" and "MA 2" indicator values are taken from the bar #0.
- If "MA 1" is less than "MA 2" for the half of MA's spread → close BUY position;
- If "MA 1" is above "MA 2" for the half of MA's spread → close SEll position.
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/21495

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

CandleStop_System indicator with the timeframe selection option available in the input parameters.

Chaikin volatility indicator as a colored histogram.

The EA based on single iMA (Moving Average, MA) indicator signals.