Exits the specified unit for the current instrument on the next bar if the market trades through the specified limit price. This function is generally used by an Exit Block to lighten up a position.
Syntax: |
---|
broker.ExitUnitAtLimit( unitNumber, limitPrice, [ quantity ] ) |
Parameter: |
Description: |
---|---|
unitNumber |
Unit number to exit |
limitPrice |
A price a which the next bar must trade through to trigger this order. |
quantity |
Exit option to remove a partial quantity from the unit. When left blank, entire unit will be removed. |
Returns: |
---|
When a broker function succeeds it will place a True in the system.orderExists() and when it fails to this property will return a False. Before attempting to access any order information expected from a broker order, consider checking to confirm an order was created with a conditional statement similar to this: ' ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
Example: |
---|
' Exit the first unit if the market trades through our target. |
Links: |
---|
See Also: |
|
Edit Time: 10/20/2020 3:41:21 PM |
Topic ID#: 324 |