[][src]Struct fxoanda_definitions::Candlestick

pub struct Candlestick {
    pub complete: Option<bool>,
    pub bid: Option<CandlestickData>,
    pub mid: Option<CandlestickData>,
    pub volume: Option<i32>,
    pub time: Option<DateTime<Utc>>,
    pub ask: Option<CandlestickData>,
}

Fields

complete: Option<bool>

A flag indicating if the candlestick is complete. A complete candlestick is one whose ending time is not in the future.

bid: Option<CandlestickData>

The price data (open, high, low, close) for the Candlestick representation.

mid: Option<CandlestickData>

The price data (open, high, low, close) for the Candlestick representation.

volume: Option<i32>

The number of prices created during the time-range represented by the candlestick.

time: Option<DateTime<Utc>>

The start time of the candlestick format: The RFC 3339 representation is a string conforming to https://tools.ietf.org/rfc/rfc3339.txt. The Unix representation is a string representing the number of seconds since the Unix Epoch (January 1st, 1970 at UTC). The value is a fractional number, where the fractional part represents a fraction of a second (up to nine decimal places).

ask: Option<CandlestickData>

The price data (open, high, low, close) for the Candlestick representation.

Methods

impl Candlestick[src]

pub fn new() -> Candlestick[src]

pub fn with_complete(self, x: bool) -> Self[src]

A flag indicating if the candlestick is complete. A complete candlestick is one whose ending time is not in the future.

  • param bool
  • return Candlestick

pub fn with_bid(self, x: CandlestickData) -> Self[src]

The price data (open, high, low, close) for the Candlestick representation.

  • param CandlestickData
  • return Candlestick

pub fn with_mid(self, x: CandlestickData) -> Self[src]

The price data (open, high, low, close) for the Candlestick representation.

  • param CandlestickData
  • return Candlestick

pub fn with_volume(self, x: i32) -> Self[src]

The number of prices created during the time-range represented by the candlestick.

  • param i32
  • return Candlestick

pub fn with_time(self, x: DateTime<Utc>) -> Self[src]

The start time of the candlestick format: The RFC 3339 representation is a string conforming to https://tools.ietf.org/rfc/rfc3339.txt. The Unix representation is a string representing the number of seconds since the Unix Epoch (January 1st, 1970 at UTC). The value is a fractional number, where the fractional part represents a fraction of a second (up to nine decimal places).

  • param DateTime
  • return Candlestick

pub fn with_ask(self, x: CandlestickData) -> Self[src]

The price data (open, high, low, close) for the Candlestick representation.

  • param CandlestickData
  • return Candlestick

Trait Implementations

impl Debug for Candlestick[src]

impl Serialize for Candlestick[src]

impl<'de> Deserialize<'de> for Candlestick[src]

Auto Trait Implementations

impl Send for Candlestick

impl Sync for Candlestick

Blanket Implementations

impl<T> From for T[src]

impl<T, U> Into for T where
    U: From<T>, 
[src]

impl<T, U> TryFrom for T where
    U: Into<T>, 
[src]

type Error = !

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

The type returned in the event of a conversion error.

impl<T> Borrow for T where
    T: ?Sized
[src]

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> BorrowMut for T where
    T: ?Sized
[src]

impl<T, U> TryInto for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

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

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]