How can i code the following condition in ProBuilder:
=> “After a loss, there should be at least 1 day break to reentry the market”
So i need an additional condition to rest one day after a closed position with an loss. I use the “Daily Timeframe”.
Thank You for anwers!
ProOrder is the correct forum, not ProBuilder. I moved it.
Once TradeOFF = 0
TradeOFF = TradeOFF - (TradeOFF = 1)
If StrategyProfit < StrategyProfit[1] then
TradeOFF = 1
Endif
If MyLongConditions and TradeOFF = 0 then
Buy at Market
Endif
Use TradeOFF as an additional condition to enter a trade.