Instructions

MagicNumber: Used to distinguish between different EA on the same platform. Each EA has to use its own magic number. Usually the default value is ok.

Max_loss_percent: when loss reaches this percentage of the equity, all positions are closed.

So for example if you it’s set to 10, and account equity is 1000 $, when loss reaches 100$ all positions are closed. Only integer values are accepted ( i.e. it can’t be set to 0.5% )

Comment: all the orders opened by the EA will have this comment.

Daily_open_time_hour: The EA will perform its calculation and possibly open new positions at this time of the day, hour in this case.

So for example if you want to perform the calculation at midnight, set it to 0.

Daily_open_time_minute: The EA will perform its calculation and possibly open new positions at this time of the day, minutes in this case.

So for example if you want to perform the calculation at midnight and 5 minutes, set it to 5.

These 2 values can be used if you want to avoid a certain range of hours because you think the market is not good during that time. So for example if you want to avoid nighttime because market is too volatile, you can set hour to 9 and minute to 1, and the EA will start to calculate and open positions at 9:01 am.

Size_orders: The size used for all the opened orders.

Multiplier: The EA opens a new position everyday if the existing one(s) on the same pair are in loss and some criterias are met. The multiplier defines how big should be the new order size.

For example if you set it to 2, and latest opened position has a size of 0.01, the new position will have a size of 0.02. If latest opened position has a size of 0.05, the new position will have a size of 0.1.

USD_basket_close: When more of one order is open on the same pair, and their total profit reached this value, all the positions on that pair are closed.

ATR_multiply: Used to define the TP of the first order. The TP is defined by the current value of ATR indicator on that pair multiplied by this multiplier.

For example if ATR on EURUSD at the time of opening is 0.053, and multiplier is 1, the TP will be positioned 53 pips away from the entry price.

SelectedPairs: all the pairs the EA will work on. Just write them with a comma in between. You can write any pair you want, just make sure to limit the number of used pairs to 28.

Account