SetNonDisplay (Reserved Word)

image\trumpet2.gif Disclaimer

Enables or disables the ”Non-Display” advanced order setting.

No validation of orders will be done.  Any incorrect combination will result in the trade server rejecting the order.

Usage

SetNonDisplay(tfNonDisplay)

Return

None

Inputs

tfNonDisplay 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 Non Display advanced order enabled:

if lastbaronchart then begin

  SetNonDisplay(TRUE);

  Buy next bar at InsideBid Limit;

End;