You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -284,35 +202,19 @@ Most properties here can be None as they are dependent on the exchange response.
284
202
| Attribute | DataType | Description |
285
203
|------------|-------------|-------------|
286
204
|`trade`| Trade | Trade object this order is attached to |
287
-
|`ft_trade_id`| int | ID of the trade this order belongs to |
288
205
|`ft_pair`| string | Pair this order is for |
289
206
|`ft_is_open`| boolean | is the order still open? |
290
-
|`ft_amount`| float | Amount in base currency (freqtrade's internal amount) |
291
-
|`ft_price`| float | Price the order was placed at (freqtrade's internal price) |
292
-
|`ft_order_side`| string | Order side ('buy', 'sell', or 'stoploss') |
293
-
|`ft_cancel_reason`| string | Reason why the order was canceled |
294
-
|`ft_order_tag`| string | Custom order tag |
295
-
|`ft_fee_base`| float | Fee paid in base currency |
296
-
|`order_id`| string | Exchange order ID |
297
207
|`order_type`| string | Order type as defined on the exchange - usually market, limit or stoploss |
298
208
|`status`| string | Status as defined by [ccxt's order structure](https://docs.ccxt.com/#/README?id=order-structure). Usually open, closed, expired, canceled or rejected |
299
-
|`symbol`| string | Symbol/pair as defined by the exchange |
300
209
|`side`| string | buy or sell |
301
210
|`price`| float | Price the order was placed at |
302
211
|`average`| float | Average price the order filled at |
303
212
|`amount`| float | Amount in base currency |
304
213
|`filled`| float | Filled amount (in base currency) (use `safe_filled` instead) |
305
214
|`safe_filled`| float | Filled amount (in base currency) - guaranteed to not be None |
306
-
|`safe_amount`| float | Amount - falls back to ft_amount if None |
307
-
|`safe_price`| float | Price - falls back through average, price, stop_price, ft_price |
308
-
|`safe_placement_price`| float | Price at which the order was placed |
|`safe_remaining`| float | Remaining amount - either taken from the exchange or calculated. |
311
-
|`safe_cost`| float | Cost of the order - guaranteed to not be None |
312
-
|`safe_fee_base`| float | Fee in base currency - guaranteed to not be None |
313
-
|`safe_amount_after_fee`| float | Amount after deducting fees |
314
217
|`cost`| float | Cost of the order - usually average * filled (*Exchange dependent on futures, may contain the cost with or without leverage and may be in contracts.*) |
315
-
|`stop_price`| float | Stop price for stop orders |
316
218
|`stake_amount`| float | Stake amount used for this order. *Added in 2023.7.*|
317
219
|`stake_amount_filled`| float | Filled Stake amount used for this order. *Added in 2024.11.*|
318
220
|`order_date`| datetime | Order creation date **use `order_date_utc` instead**|
0 commit comments