addedInput schema / properties / orders / items / properties / limit_offset_bps
Added value: +{
+ "description": "Fire-time limit-price offset in basis points (`trailing_limit` only; required together with `trailing_offset_bps`). The rested limit sits at fire_price * (1 + offset) for buys / * (1 - offset) for sells; 0 rests exactly at the fire price.",
+ "maximum": 9999,
+ "minimum": 0,
+ "type": "integer"
+}
changedInput schema / properties / orders / items / properties / price / description
Previous value: -"Limit price as a positive decimal string (> 0). Required for limit orders, ignored for market."New value: +"Limit price as a positive decimal string (> 0). Required for limit-family orders (`limit`, `stop_limit`, `take_profit_limit`); must be omitted for market, stop_market, take_profit_market, and trailing orders (which are priced by the engine or computed at fire time)."
addedInput schema / properties / orders / items / properties / trailing_offset_bps
Added value: +{
+ "description": "Trailing trigger offset in basis points (1 bp = 0.01%). Required for trailing orders (`trailing_stop`, `trailing_limit`); must be omitted otherwise. Fires once the mark price retraces from its best-seen extreme by this many bps (0 fires at the first evaluation).",
+ "minimum": 0,
+ "type": "integer"
+}
addedInput schema / properties / orders / items / properties / trigger_price
Added value: +{
+ "description": "Trigger threshold as a positive decimal string (> 0). Required for stop and take-profit orders (`stop_limit`, `stop_market`, `take_profit_limit`, `take_profit_market`): the order activates once the mark price crosses it — adversely for stops, favorably for take-profits. Must be omitted for other order types.",
+ "type": "string"
+}
changedInput schema / properties / orders / items / properties / type / description
Previous value: -"Order type."New value: +"Order type. `limit` and `market` are unconditional. `stop_limit` / `stop_market` fire when the mark price crosses `trigger_price` in the adverse direction (stop-loss); `take_profit_limit` / `take_profit_market` fire on the favorable direction. `trailing_stop` fires a market order once the mark retraces from its best-seen extreme by `trailing_offset_bps`; `trailing_limit` fires the same way but rests a limit order priced off the fire price by `limit_offset_bps`. Field requirements: limit-family (`limit`, `stop_limit`, `take_profit_limit`) require `price`; stop / take-profit types require `trigger_price`; trailing types require `trailing_offset_bps`."
changedInput schema / properties / orders / items / properties / type / enum
Previous value: -[
- "limit",
- "market"
-]New value: +[
+ "limit",
+ "market",
+ "stop_limit",
+ "stop_market",
+ "take_profit_limit",
+ "take_profit_market",
+ "trailing_stop",
+ "trailing_limit"
+]