SetNOW (Reserved Word)
Enables or disables the ”NOW (ECN’s Only)” advanced order setting.
No validation of orders will be done. Any incorrect combination will result in the trade server rejecting the order.
Usage
SetNOW(tfNow)
Return
None
Inputs
tfNow is a Boolean. Passing TRUE will enable the setting and passing FALSE will disable the setting.
Example
A limit order to buy at the inside bid with the NOW advanced order enabled:
if lastbaronchart then begin
SetNOW(TRUE);
Buy next bar at InsideBid Limit;
End;