당사 팬 페이지에 가입하십시오
- 조회수:
- 9137
- 평가:
- 게시됨:
- 2017.03.02 09:54
-
이 코드를 기반으로 한 로봇이나 지표가 필요하신가요? 프리랜스로 주문하세요 프리랜스로 이동
This is a simple Expert Advisor with an implemented trailing stop.
It has only two parameters:
TrailingStop — the distance between the price and the Stop Loss level.
TrailingStep — protection against to frequent modification of position.
How TrailingStop works — the example of the Buy position:
Originally the StopLoss of a position is equal to zero, we wait for the following condition to be met
— i.e. when the Bid minus TrailingStop is greater than the position open price PriceOpen:
StopLoss is moved to the PriceOpen level (position open price):
now, when the position has StopLoss (i.e. when StopLoss is not equal to zero), wait for the following condition to be met:
— i.e. when the Bid minus TrailingStop minus TrailingStep is greater than the StopLoss price: So here we need to additionally check TrailingStep — this prevent position modification on every tick:
StopLoss is then moved to Bid minus TrailingStop:
Here is why we need a protection in the form of TrailingStep:
MetaQuotes Ltd에서 러시아어로 번역함.
원본 코드: https://www.mql5.com/ru/code/17263

An example of working with the trading history on Hedge accounts — reconstruction of positions.

The EA places pending stop orders BUY_STOP and SELL_STOP.

The EA works based on the analysis of Open, High and Low.

Derived from the NRTR indicator, provided with a new visual display.