Description Usage Arguments Details Zipline Documentation See Also
The execution style of the order to be placed. This can be a market,
limit, stop or stop-limit order. For use with fly_order()
.
1 2 3 4 5 6 7 | MarketOrder(exchange = NULL)
LimitOrder(limit_price, exchange = NULL)
StopOrder(stop_price, exchange = NULL)
StopLimitOrder(limit_price, stop_price, exchange = NULL)
|
exchange |
The exchange to execute the order on. |
limit_price |
The limit price for the order. |
stop_price |
The stop price for the order. |
MarketOrder()
- Class encapsulating an order to be placed at the current market price.
LimitOrder()
- Execution style representing an order to be executed at a
price equal to or better than a specified limit price.
StopOrder()
- Execution style representing an order to be placed once the
market price reaches a specified stop price.
StopLimitOrder()
- Execution style representing a limit order to be
placed with a specified limit price once the market reaches a specified
stop price.
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.