#[repr(C)]pub struct PositionOpened {Show 17 fields
pub trader_id: TraderId,
pub strategy_id: StrategyId,
pub instrument_id: InstrumentId,
pub position_id: PositionId,
pub account_id: AccountId,
pub opening_order_id: ClientOrderId,
pub entry: OrderSide,
pub side: PositionSide,
pub signed_qty: f64,
pub quantity: Quantity,
pub last_qty: Quantity,
pub last_px: Price,
pub currency: Currency,
pub avg_px_open: f64,
pub event_id: UUID4,
pub ts_event: UnixNanos,
pub ts_init: UnixNanos,
}
Expand description
Represents an event where a position has been opened.
Fields§
§trader_id: TraderId
The trader ID associated with the event.
strategy_id: StrategyId
The strategy ID associated with the event.
instrument_id: InstrumentId
The instrument ID associated with the event.
position_id: PositionId
The position ID associated with the event.
account_id: AccountId
The account ID associated with the position.
opening_order_id: ClientOrderId
The client order ID for the order which opened the position.
entry: OrderSide
The position entry order side.
side: PositionSide
The position side.
signed_qty: f64
The current signed quantity (positive for position side LONG
, negative for SHORT
).
quantity: Quantity
The current open quantity.
last_qty: Quantity
The last fill quantity for the position.
last_px: Price
The last fill price for the position.
currency: Currency
The position quote currency.
avg_px_open: f64
The average open price.
event_id: UUID4
The unique identifier for the event.
ts_event: UnixNanos
UNIX timestamp (nanoseconds) when the event occurred.
ts_init: UnixNanos
UNIX timestamp (nanoseconds) when the event was initialized.
Implementations§
Source§impl PositionOpened
impl PositionOpened
pub fn create( position: &Position, fill: &OrderFilled, event_id: UUID4, ts_init: UnixNanos, ) -> PositionOpened
Trait Implementations§
Source§impl Clone for PositionOpened
impl Clone for PositionOpened
Source§fn clone(&self) -> PositionOpened
fn clone(&self) -> PositionOpened
1.0.0 · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
source
. Read moreSource§impl Debug for PositionOpened
impl Debug for PositionOpened
Source§impl PartialEq for PositionOpened
impl PartialEq for PositionOpened
impl StructuralPartialEq for PositionOpened
Auto Trait Implementations§
impl Freeze for PositionOpened
impl RefUnwindSafe for PositionOpened
impl Send for PositionOpened
impl Sync for PositionOpened
impl Unpin for PositionOpened
impl UnwindSafe for PositionOpened
Blanket Implementations§
Source§impl<T> BorrowMut<T> for Twhere
T: ?Sized,
impl<T> BorrowMut<T> for Twhere
T: ?Sized,
Source§fn borrow_mut(&mut self) -> &mut T
fn borrow_mut(&mut self) -> &mut T
Source§impl<T> CloneToUninit for Twhere
T: Clone,
impl<T> CloneToUninit for Twhere
T: Clone,
Source§impl<T> IntoEither for T
impl<T> IntoEither for T
Source§fn into_either(self, into_left: bool) -> Either<Self, Self>
fn into_either(self, into_left: bool) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left
is true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read moreSource§fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
fn into_either_with<F>(self, into_left: F) -> Either<Self, Self>
self
into a Left
variant of Either<Self, Self>
if into_left(&self)
returns true
.
Converts self
into a Right
variant of Either<Self, Self>
otherwise. Read more