pub struct BybitExecutionReport {Show 27 fields
pub category: String,
pub symbol: String,
pub order_id: String,
pub order_link_id: String,
pub side: String,
pub order_price: String,
pub order_qty: String,
pub leaves_qty: String,
pub order_type: String,
pub stop_order_type: String,
pub exec_fee: String,
pub exec_id: String,
pub exec_price: String,
pub exec_qty: String,
pub exec_type: String,
pub exec_value: String,
pub exec_time: String,
pub is_maker: bool,
pub fee_rate: String,
pub trade_iv: String,
pub mark_iv: String,
pub mark_price: String,
pub index_price: String,
pub underlying_price: String,
pub block_trade_id: String,
pub closed_size: String,
pub seq: i64,
}Expand description
Bybit execution report data structure
Contains execution report information received from Bybit WebSocket streams. This structure represents the response format from Bybit’s V5 API execution reports.
Fields§
§category: StringTrading category (spot, linear, inverse, option)
symbol: StringSymbol/instrument identifier
order_id: StringExchange-generated order ID
order_link_id: StringClient-provided order link ID for tracking
side: StringOrder side (Buy/Sell)
order_price: StringOrder price as string
order_qty: StringOrder quantity as string
leaves_qty: StringRemaining quantity to be filled
order_type: StringOrder type (Market, Limit, etc.)
stop_order_type: StringStop order type
exec_fee: StringExecution fee amount
exec_id: StringExecution ID
exec_price: StringExecution price
exec_qty: StringExecuted quantity
exec_type: StringExecution type (Trade, AdlTrade, etc.)
exec_value: StringExecution value
exec_time: StringExecution timestamp
is_maker: boolWhether the order is maker order
fee_rate: StringFee rate applied to the trade
trade_iv: StringTrade implied volatility (for options)
mark_iv: StringMark implied volatility (for options)
mark_price: StringMark price at execution
index_price: StringIndex price at execution
underlying_price: StringUnderlying price (for derivatives)
block_trade_id: StringBlock trade ID
closed_size: StringClosed position size
seq: i64Sequence number for ordering