pub struct FootprintRow {
pub down_price: f64,
pub up_price: f64,
pub buy_volume: f64,
pub sell_volume: f64,
}Expand description
A source of market data: given a symbol and a Pine timeframe, produce its
bars.
One price row of a volume footprint: the price range it spans and the volume
traded into the bid (sell) and ask (buy) at that level.
Fields§
§down_price: f64§up_price: f64§buy_volume: f64§sell_volume: f64Trait Implementations§
Source§impl Clone for FootprintRow
impl Clone for FootprintRow
Source§fn clone(&self) -> FootprintRow
fn clone(&self) -> FootprintRow
Returns a duplicate of the value. Read more
1.0.0 (const: unstable) · Source§fn clone_from(&mut self, source: &Self)
fn clone_from(&mut self, source: &Self)
Performs copy-assignment from
source. Read moreAuto Trait Implementations§
impl Freeze for FootprintRow
impl RefUnwindSafe for FootprintRow
impl Send for FootprintRow
impl Sync for FootprintRow
impl Unpin for FootprintRow
impl UnsafeUnpin for FootprintRow
impl UnwindSafe for FootprintRow
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
Mutably borrows from an owned value. Read more