Enum Indicator

Source
pub enum Indicator {
Show 20 variants AverageTrueRange, EfficiencyRatio, ExponentialMovingAverage, FastStochastic, Maximum, Minimum, MoneyFlowIndex, OnBalanceVolume, RateOfChange, RelativeStrengthIndex, SimpleMovingAverage, SlowStochastic, TrueRange, Spread, MovingAverageConvergenceDivergence, ClosePrice, AskRate, BidRate, EntryRate, ExitRate,
}
Expand description

Operation is technical analysis or orderbook method.

Variants§

§

AverageTrueRange

Average true range (ATR).

§

EfficiencyRatio

Kaufman’s Efficiency Ratio (ER).

§

ExponentialMovingAverage

An exponential moving average (EMA), also known as an exponentially weighted moving average (EWMA).

§

FastStochastic

Fast stochastic oscillator.

§

Maximum

Returns the highest value in a given time frame.

§

Minimum

Returns the lowest value in a given time frame.

§

MoneyFlowIndex

Money Flow Index (MFI).

§

OnBalanceVolume

On Balance Volume (OBV).

§

RateOfChange

Rate of Change (ROC)

§

RelativeStrengthIndex

The relative strength index (RSI).

§

SimpleMovingAverage

Simple moving average (SMA).

§

SlowStochastic

Slow stochastic oscillator.

§

TrueRange

The range of a day’s trading is simply high - low. The true range extends it to yesterday’s closing price if it was outside of today’s range.

§

Spread

Spread in the orderbook.

§

MovingAverageConvergenceDivergence

Moving average converge divergence (MACD).

§

ClosePrice

Closing price.

§

AskRate

Ask rate in the orderbook.

§

BidRate

Bid rate in the orderbook.

§

EntryRate

Market entry rate.

§

ExitRate

Market exit rate.

Implementations§

Source§

impl Indicator

Source

pub fn parameters(&self) -> usize

Returns amount of expected parameters.

Source

pub fn descriptors(&self) -> Option<&'static [ParamDescriptor]>

Returns descriptors of expected parameters. It can be None if doesn’t expect any arguments

Source

pub fn construct<S: State>( &self, params: Option<&Params>, ) -> Result<BoxIndicator<S>, Error>

Constructs technical analysis operator using parameters. Returns error only if amount of parameters is wrong.

Source

pub fn into_op(self) -> Result<Operation, Error>

Constructs indicator operation with params.

Source

pub fn with_params(self, params: Params) -> Result<Operation, Error>

Constructs indicator operation with params.

Trait Implementations§

Source§

impl Clone for Indicator

Source§

fn clone(&self) -> Indicator

Returns a copy of the value. Read more
1.0.0 · Source§

fn clone_from(&mut self, source: &Self)

Performs copy-assignment from source. Read more
Source§

impl Debug for Indicator

Source§

fn fmt(&self, f: &mut Formatter<'_>) -> Result

Formats the value using the given formatter. Read more
Source§

impl<'de> Deserialize<'de> for Indicator

Source§

fn deserialize<__D>(__deserializer: __D) -> Result<Self, __D::Error>
where __D: Deserializer<'de>,

Deserialize this value from the given Serde deserializer. Read more
Source§

impl From<&Indicator> for Marker

Source§

fn from(indicator: &Indicator) -> Marker

Converts to this type from the input type.
Source§

impl FromStr for Indicator

Source§

type Err = ()

The associated error which can be returned from parsing.
Source§

fn from_str(s: &str) -> Result<Self, Self::Err>

Parses a string s to return a value of this type. Read more
Source§

impl Hash for Indicator

Source§

fn hash<__H: Hasher>(&self, state: &mut __H)

Feeds this value into the given Hasher. Read more
1.3.0 · Source§

fn hash_slice<H>(data: &[Self], state: &mut H)
where H: Hasher, Self: Sized,

Feeds a slice of this type into the given Hasher. Read more
Source§

impl Ord for Indicator

Source§

fn cmp(&self, other: &Indicator) -> Ordering

This method returns an Ordering between self and other. Read more
1.21.0 · Source§

fn max(self, other: Self) -> Self
where Self: Sized,

Compares and returns the maximum of two values. Read more
1.21.0 · Source§

fn min(self, other: Self) -> Self
where Self: Sized,

Compares and returns the minimum of two values. Read more
1.50.0 · Source§

fn clamp(self, min: Self, max: Self) -> Self
where Self: Sized,

Restrict a value to a certain interval. Read more
Source§

impl PartialEq for Indicator

Source§

fn eq(&self, other: &Indicator) -> bool

Tests for self and other values to be equal, and is used by ==.
1.0.0 · Source§

fn ne(&self, other: &Rhs) -> bool

Tests for !=. The default implementation is almost always sufficient, and should not be overridden without very good reason.
Source§

impl PartialOrd for Indicator

Source§

fn partial_cmp(&self, other: &Indicator) -> Option<Ordering>

This method returns an ordering between self and other values if one exists. Read more
1.0.0 · Source§

fn lt(&self, other: &Rhs) -> bool

Tests less than (for self and other) and is used by the < operator. Read more
1.0.0 · Source§

fn le(&self, other: &Rhs) -> bool

Tests less than or equal to (for self and other) and is used by the <= operator. Read more
1.0.0 · Source§

fn gt(&self, other: &Rhs) -> bool

Tests greater than (for self and other) and is used by the > operator. Read more
1.0.0 · Source§

fn ge(&self, other: &Rhs) -> bool

Tests greater than or equal to (for self and other) and is used by the >= operator. Read more
Source§

impl Serialize for Indicator

Source§

fn serialize<__S>(&self, __serializer: __S) -> Result<__S::Ok, __S::Error>
where __S: Serializer,

Serialize this value into the given Serde serializer. Read more
Source§

impl Copy for Indicator

Source§

impl Eq for Indicator

Source§

impl StructuralPartialEq for Indicator

Auto Trait Implementations§

Blanket Implementations§

Source§

impl<T> Any for T
where T: 'static + ?Sized,

Source§

fn type_id(&self) -> TypeId

Gets the TypeId of self. Read more
Source§

impl<T> Borrow<T> for T
where T: ?Sized,

Source§

fn borrow(&self) -> &T

Immutably borrows from an owned value. Read more
Source§

impl<T> BorrowMut<T> for T
where T: ?Sized,

Source§

fn borrow_mut(&mut self) -> &mut T

Mutably borrows from an owned value. Read more
Source§

impl<T> CloneToUninit for T
where T: Clone,

Source§

unsafe fn clone_to_uninit(&self, dest: *mut u8)

🔬This is a nightly-only experimental API. (clone_to_uninit)
Performs copy-assignment from self to dest. Read more
Source§

impl<T> From<T> for T

Source§

fn from(t: T) -> T

Returns the argument unchanged.

Source§

impl<T, U> Into<U> for T
where U: From<T>,

Source§

fn into(self) -> U

Calls U::from(self).

That is, this conversion is whatever the implementation of From<T> for U chooses to do.

Source§

impl<T> ToOwned for T
where T: Clone,

Source§

type Owned = T

The resulting type after obtaining ownership.
Source§

fn to_owned(&self) -> T

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

fn clone_into(&self, target: &mut T)

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

impl<T, U> TryFrom<U> for T
where U: Into<T>,

Source§

type Error = Infallible

The type returned in the event of a conversion error.
Source§

fn try_from(value: U) -> Result<T, <T as TryFrom<U>>::Error>

Performs the conversion.
Source§

impl<T, U> TryInto<U> for T
where U: TryFrom<T>,

Source§

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

The type returned in the event of a conversion error.
Source§

fn try_into(self) -> Result<U, <U as TryFrom<T>>::Error>

Performs the conversion.
Source§

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