당사 팬 페이지에 가입하십시오
- 게시자:
- Vladimir Karputov
- 조회수:
- 3856
- 평가:
- 게시됨:
- 2017.01.19 16:57
- 업데이트됨:
- 2018.06.27 13:39
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
Author of the idea — Maksim Zerkalov, author of the mq5 code — barabashkakvn.
When opening a new bar, the EA analyzes the value of the previous four bars:
iHigh(3)>iHigh(4) && iOpen(1)>iOpen(2) &&
iOpen(2)>iOpen(3) && iOpen(3)>iOpen(4))
BuyOp=true;
if(iHigh(1)<iHigh(2) && iHigh(2)<iHigh(3) &&
iHigh(3)<iHigh(4) && iOpen(1)<iOpen(2) &&
iOpen(2)<iOpen(3) && iOpen(3)<iOpen(4))
SellOp=true;
When we have an open position, then the "HalfLots" variable value is checked in the
trailing block. In other words, the system checks if it is possible to partially close a profitable position. If "HalfLots==true", the position is closed partially:
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/16787

The Exp_CenterOfGravityCandles Expert Advisor is based on signals of the CenterOfGravityCandles indicator.

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

The Expert Advisor opens and closes positions at the predefined moments in time.

SilverTrend semaphore signal indicator features alerts, emails and push notifications.