May be my question is too simple but I tried hard to get answer to it through NT guides but couldn't get it, so posting here.
I have a code as below :
if (CrossAbove(EMA(10), SMA(20), 1)) {
EnterLongStop(QUANTITY, High[0] + 0.001, "");
}
On the next bar update, I want to know is this order is filled or not ?
Please let me know is there any way to know the order filled status at next BarUpdate.
The above code is called in the onBarUpdate function.
Thanks,
Niraj.

Comment