Struct trade_aggregation::Candle[][src]

pub struct Candle {
Show 14 fields pub timestamp: i64, pub open: f64, pub high: f64, pub low: f64, pub close: f64, pub volume: f64, pub directional_trade_ratio: f64, pub directional_volume_ratio: f64, pub num_trades: i32, pub arithmetic_mean_price: f64, pub weighted_price: f64, pub std_dev_prices: f64, pub std_dev_sizes: f64, pub time_velocity: f64,
}
Expand description

Defines a Candle

Fields

timestamp: i64

latest timestamp of last received trade

open: f64

open price of candle

high: f64

high price of candle

low: f64

low price of candle

close: f64

close price of candle

volume: f64

summed taker volume of all trades in candle

directional_trade_ratio: f64

#buys / #trades

directional_volume_ratio: f64

buy_volume / volume

num_trades: i32

number of taker trades observed in candle

arithmetic_mean_price: f64

arithmetic mean of price

weighted_price: f64

volume weighted price

std_dev_prices: f64

standard deviation of trade prices

std_dev_sizes: f64

standard deviation of trade sizes

time_velocity: f64

measure of candle creation time: 1.0 / time_in_seconds

Trait Implementations

Returns a copy of the value. Read more

Performs copy-assignment from source. Read more

Formats the value using the given formatter. Read more

Formats the value using the given formatter. Read more

Auto Trait Implementations

Blanket Implementations

Gets the TypeId of self. Read more

Immutably borrows from an owned value. Read more

Mutably borrows from an owned value. Read more

Performs the conversion.

Performs the conversion.

The resulting type after obtaining ownership.

Creates owned data from borrowed data, usually by cloning. Read more

🔬 This is a nightly-only experimental API. (toowned_clone_into)

recently added

Uses borrowed data to replace owned data, usually by cloning. Read more

Converts the given value to a String. Read more

The type returned in the event of a conversion error.

Performs the conversion.

The type returned in the event of a conversion error.

Performs the conversion.