Is there any difference in the behaviour of a managed entry limit order (e.g. EnterLongLimit) in the following examples?
In both cases CalculateOnBarClose = false for every tick operation.
Example 1
entryOrder1 = EnterLongLimit( nContracts1, entryLevel, entryName1 );
Example 2
if( entryOrder1 == null )
entryOrder1 = EnterLongLimit( 0, true, nContracts1, entryLevel, entryName1 );
Specifically:
Where does the limit order reside in each example?
Does Example 1 send a new order to the trade server every tick?
Regards
Tony

Comment