I have currently a strategy running.
with the current SL TP and Order Entries.
SetProfitTarget("", CalculationMode.Ticks, Target);
SetStopLoss("", CalculationMode.Ticks, Stop, false);
EnterLongLimit(0, true, Contracts, POC[1] + (tickoffset * TickSize) , "Long Limit");
EnterShortLimit(0, true, Contracts, (POC[1] - (tickoffset * TickSize)) , "Short Limit")
at the moment i can only have 1 order open at a time.
What i would like to acomplish is the posibility for the strategy to submit many limit orders long below current price and short above.
I would likt to have the run until they hit thier SL or TP.
if i change the option "EntriesPerDirection" to 3 or 5 i can still only have orders and positions in one direction.
I know that when both a short and Long trade would be running at the same time.
I would be flat waiting on one of the stops or targets to be hit.
please correct me if i am wrong here.
I have been searching a bit and is it correctley understood the only way i can acomplish this is by changing the order enty to use ATMs instead,
and if so how would an example look like.

Comment