hi, can someone help me out with this? i want to close half my position when the market has reach have my limit and then move stoploss to breakeven. ONCE PerCent = 0.50 //0.50 = close half positions IF positionperf = 0.5 AND LongOnMarket THEN SELL (abs(CountOfPosition) * PerCent) AT Market set stop ploss 0 ELSIF positionperf = 0.5 AND ShortOnMarket THEN EXITSHORT (abs(CountOfPosition) * PerCent) AT Market set stop ploss 0 ENDIF here’s what i got so far thank you