Bonjour,
Est ce que ce code est correct pour que le trading s’arrête si on a un nombre de perte max dans la journée sur le nasdaq par exemple ?
Merci pour votre réponse.
Je l’ai adapté.
if day<>day[1] then
strategyprofitpoint=0 //daily reset
allowtrading=1 //daily reset
endif
if(strategyprofit<>strategyprofit[1]) then
pnl = strategyprofit-strategyprofit[1]
totalstrategyprofit = totalstrategyprofit+pnl
endif
if totalstrategyprofitpoint<=-MaxLoss then
SELL AT MARKET
EXITSHORT AT MARKET
allowtrading=0
ENDIF