Hallo
ich möchte die halbe Anzahl an Position verkaufen, wenn der Trade nach 6 Tagen noch im Verlust ist.
Ist der Trade nach 6 tagen im Gewinn dann soll der Stop Loss auf Tradeprice gelegt werden
Hier mein Code, das mit der halben Position bekomme ich nicht hin???
IF MyLongConditions THEN
BUY 2 CONTRACT AT MARKET
StopLoss = lowest[3](low)
CRV11 = close + (close – StopLoss)
Joker = close – ((close – StopLoss)/2)
TargetPrice = close + 2*(close – StopLoss)
SET STOP PRICE StopLoss
SET TARGET PRICE TargetPrice
endif
if longonmarket and barindex-tradeindex>6 and close<tradeprice THEN
sell size/2 at market
endif
If longonmarket and barindex-tradeindex>6 and close>tradeprice then
StopLoss = TradePrice
SET STOP PRICE StopLoss
endif