Hello
Please, I need help because I don't know what I am doing wrong with one condition. I want to choose in some way if my EA have to trade with a risk % of the Equity account or using fixed lots.
I have tried to add a condition using a boolean variable for Money Management activation or not:
MoneyManagement bool (True = %Equity, False = Lots)
If MoneyManagement == True -> Buy/Sell with MM
If MoneyManagment == False -> Buy/Sell with Lots
So, my EA looks like this
But the EA does not open any trade on the backtesting:
If I delete the MoneyManagement condition the EA Works as it should be with MM or Lots:
Could anybody help me to get what I want on my EA?
Thanks