the price at 10:00am is 1.5820 and I place a buy limit @1.5800. At 10:08am, the price reaches 1.5798 and it suppose to trigger my buy limit order. I use
OnBarUpdate() /* based on 1min chart */
{
if (cond1) EnterLongLimit(1.5800);
}
I use OnOrderUpdate() to check the status, it changes from
10:00am, State:PendingSubmit
10:00am, State:Accepted
10:00am, State:Working
10:00am, State:PendingCancel
10:00am, State:Cancelled
I don't understand why it is cancelled.
Pls show me how to set the limitprice in EnterLongLimit ?
Regards,
Toyogo

Comment