I want to aks if it can be that when I do
SetStopLoss ("SA", CalculationMode.Ticks, 70, false);
EnterShort(3000, "SA");
ExitShort(1000, "X1","SA");
that with the exit my positions of 3000 are reduced by 1000 to 2000 but the stop (visible in chart-trader) remains with 3000 (and is not reduced to 2000)?
Also with SetStopLoss (CalculationMode.Ticks, 70);
EnterShort(3000);
ExitShort(1000);
the position size is reduced by 1000 to 2000 but not the stops (remain 3000)
I know I can do with individual entry-names ("SA1"....) and ("SA2"...) and ("SA3"....) and corresponding entries with (1000, "SA1")..... to scale out positions and stops.
But isn´t it possible to do the entry with all positions (no individual entry-names) and to scale out NOT ONLY postions but also stops?
This is important because when running more strategies to avoid a lot lines with entries and stops appearing in the platform of broker.
Thanks

Tony
Comment