[][src]Struct plotters::prelude::CandleStick

pub struct CandleStick<X, Y: PartialOrd> { /* fields omitted */ }

The candlestick data point element

Methods

impl<X: Clone, Y: PartialOrd> CandleStick<X, Y>[src]

pub fn new<GS: Into<ShapeStyle>, LS: Into<ShapeStyle>>(
    x: X,
    open: Y,
    high: Y,
    low: Y,
    close: Y,
    gain_style: GS,
    loss_style: LS,
    width: u32
) -> Self
[src]

Create a new candlestick element, which requires the Y coordinate can be compared

  • x: The x coordinate
  • open: The open value
  • high: The high value
  • low: The low value
  • close: The close value
  • gain_style: The style for gain
  • loss_style: The style for loss
  • width: The width
  • returns The newly created candlestick element
use chrono::prelude::*;
use plotters::prelude::*;

let candlestick = CandleStick::new(Local::now(), 130.0600, 131.3700, 128.8300, 129.1500, &GREEN, &RED, 15);

Trait Implementations

impl<'a, X: 'a, Y: PartialOrd + 'a> PointCollection<'a, (X, Y)> for &'a CandleStick<X, Y>[src]

type Borrow = &'a (X, Y)

The item in point iterator

type IntoIter = &'a [(X, Y)]

The point iterator

impl<X, Y: PartialOrd, DB: DrawingBackend> Drawable<DB> for CandleStick<X, Y>[src]

Auto Trait Implementations

impl<X, Y> Send for CandleStick<X, Y> where
    X: Send,
    Y: Send

impl<X, Y> Unpin for CandleStick<X, Y> where
    X: Unpin,
    Y: Unpin

impl<X, Y> Sync for CandleStick<X, Y> where
    X: Sync,
    Y: Sync

impl<X, Y> UnwindSafe for CandleStick<X, Y> where
    X: UnwindSafe,
    Y: UnwindSafe

impl<X, Y> RefUnwindSafe for CandleStick<X, Y> where
    X: RefUnwindSafe,
    Y: RefUnwindSafe

Blanket Implementations

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

impl<T> From<T> for T[src]

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

The type returned in the event of a conversion error.

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

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

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

impl<T> SetParameter for T

impl<S, D, Swp, Dwp, T> AdaptInto<D, Swp, Dwp, T> for S where
    D: AdaptFrom<S, Swp, Dwp, T>,
    Dwp: WhitePoint,
    Swp: WhitePoint,
    T: Component + Float
[src]

impl<T, U> ConvertInto<U> for T where
    U: ConvertFrom<T>, 
[src]