pub struct IndicatorResult { /* private fields */ }
Expand description

Every Indicator proceed an input of OHLCV and returns an IndicatorResult which consist of some returned raw values and some calculated signals.

Indicator may return up to 4 signals and 4 raw values at each step

Implementations

Size of pre-allocated result array For the most of cases it should not be used anywhere outside this crate

Returns a slice of signals of current indicator result

Returns a slice of raw indicator values of current indicator result

Returns count of signals

Returns count of raw values

Returns a tuple of count of raw values and count of signals

Returns a raw value at given index

Panics

If index is greater than last signal index, then panics

Returns a signal at given index

Panics

If index is greater than last signal index, then panics

Creates a new instance of IndicatorResult with provided values and signals

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

Deserialize this value from the given Serde deserializer. Read more

Serialize this value into the given Serde serializer. 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

Returns the argument unchanged.

Calls U::from(self).

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

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)

Uses borrowed data to replace owned data, usually by cloning. 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.