用户没有留下任何评级信息
Elevation
The strategy is based on the Martingale. The Expert Advisor analyzes the last trade. If it was unprofitable, then it opens a new one in the same direction with the volume, multiplied by the value of the coefficient parameter. If the trade made profit, then it opens a new one in the opposite direction with the volume of Lot.
The Expert Advisor has one feature. It is possible to open several orders at once according to the OrderTotal parameter. The distance between orders is determined by the step parameter. The logic of the EA remains the same.
It also provides a trading corridor with the upper and lower boundaries UP and DOWN, respectively.
Input Parameters
- UP - the upper boundary level; when exceeded, the EA stops trading;
- DOWN - the lower boundary level; when exceeded, the EA stops trading;
- Lot - initial volume of the trades;
- coefficient - the coefficient to multiply the Lot in case of a losing trade;
- TakeProfit - TakeProfit level;
- StopLoss - StopLoss level;
- OrderTotal - maximum number of opened orders;
- step - distance between orders in points.
Recommended parameter values
Parameter | 4 Digits | 5 Digits |
---|---|---|
UP | 999 | |
DOWN | 0 | |
Lot | 0.1 | |
coefficient | 2 | |
TakeProfit | 20 | 200 |
StopLoss | 20 | 200 |
OrderTotal | 100 | |
step | 1 | 10 |
Indicator is suitable both for novice and experienced traders.

用户没有留下任何评级信息