place_stop_order
Place a stop order that automatically buys or sells when the market price hits your target stop price, with optional day or good-till-cancel validity.
Instructions
Place a stop order to buy or sell an instrument when the market price
reaches a specified stop price.
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 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 | ||
| time_validity | No | DAY |