i am using the ChangeOrder() in my strategy
Example if(entryOrder == null ) entryOrder = EnterShortLimit(0 , true , CurrentTradeSize , EntryLevel , "Short"); else ChangeOrder(entryOrder,CurrentTradeSize,EntryLevel,EntryLevel );
Reason='Exceeded entry signals limit based on EntryHandling and EntriesPerDirection properties'
it is as if the Changeorder is considered as a new order to same direction every time its used.
if I set the EntriesPerDirection = 50. it works. (kind of)
am I supposed to use the ChangeOrder() in some other way ?

Comment