|
EnterShortAtLimitOpen |
Top Previous Next |
|
Enters a short position on the next open if it is higher than the specified price. This function is generally used by an Entry Block to initiate a position.
Syntax
EnterShortAtLimitOpen( limitPrice [, protectStopPrice] )
Parameters
Example ' Enter the market on the next open if above the entry price. broker.EnterShortAtLimitOpen( entryPrice, protectStopPrice )
or
' Enter the market on the next open if above entry price with no stop broker.EnterShortAtLimitOpen( entryPrice ) |