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