please take a look into the followings if it is a known issue or not:
case 1.
Bar x:
EnterShort( 1 , "enterBy_A" );
Bar x + n:
EnterShort( 1 , "enterBy_B" );
Bar x + n + m:
ExitShort ( "enterBy_B");
result: enterBy_B is bought and enterBy_A goes on. It is OK.
case 2.
Bar x:
EnterShort( 1 , "enterBy_A" );
Bar x + n:
EnterShort( 1 , "enterBy_B" );
Bar x + n + z :
EnterShort( 1 , "enterBy_B" );
Bar x + n + z + y :
ExitShort ( "enterBy_B");
result: both enterBy_B positions are bought and enterBy_A is bought too, instead of letting it going on
thanks for your time
kittyan

Comment