place_stop_limit_order
Place a stop-limit order that triggers a limit buy or sell when the market hits your stop price, ensuring execution at or better than your limit price.
Instructions
Place a stop-limit order to buy or sell an instrument when the market
price reaches a specified stop price, then execute at a specified limit
price or better.
Args:
ticker: Ticker symbol of the instrument to trade (e.g., 'AAPL_US_EQ')
quantity: Number of shares/units to trade
stop_price: Stop price that triggers the limit order
limit_price: Limit price for the order
time_validity: Time validity of the order. Defaults to DAY.
Possible values: DAY, GOOD_TILL_CANCEL
Returns:
Order: Details of the placed order
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| ticker | Yes | ||
| quantity | Yes | ||
| stop_price | Yes | ||
| limit_price | Yes | ||
| time_validity | No | DAY |