一个简单EA表达一个如何实现利润增长的下单策略,对开发EA有启发。
思路:
Accumulating the volume of a profitable trade allows to gain maximum profit from the market movement that we come across. But the volume must be accumulated so that it does not result in the increase of risks.
First of all we need a reference point - the first main trade. The main trade should be of volume larger than volume of each auxiliary trade. Suppose the volume of the main trade is 0.2 lot, volume of auxiliary trades will be 0.1 lot. Trailing Stop Loss is used for all trades, for example 50 points. When profit of the main trade reaches +100 points, Stop Loss will be +50. At this moment a trade of 0.1lot is opened in the same direction with Stop Loss of -50 points. If price goes back, both trades will be closed by Stop Loss order. Acquired profit will be equal to 50 points of 0.2 lot, loss - 50 points of 0.1 lot. Totally profit will be equal to 50 points of 0.1 lot. Thus loss protection s achieved, while the trade volume is increased.
If a trade continues movement in the necessary direction, when profit of the auxiliary trade reaches +50 points, Trailing Stop Loss is enabled. When profit of 200 points is reached in the main trade, and that of 100 points in the auxiliary one, one more auxiliary trade will be opened. SL again is equal to -50. And so on.
看不懂洋文的就看代码吧,或看看实现这样思路的代码。