pub struct RenkoBlock {
    pub open: ValueType,
    pub close: ValueType,
    pub volume: ValueType,
}
Expand description

Single unit for Renko charts

May be produced by RenkoOutput iterator.

Fields

open: ValueType

Current block’s open value

close: ValueType

Current block’s close value

volume: ValueType

Average block’s volume value

Implementations

Returns upper bound of the block

Returns lower bound of the block

Returns sign of the block

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

Should return an open value of the period

Should return an close value of the candle

Should return an highest value of the period

Should return an lowest value of the period

Should return volume value for the period

Calculates Typical price. It’s just a simple (High + Low + Close) / 3 Read more

Calculates arithmetic average of high and low values of the candle Read more

Calculates arithmetic average of high, low, open and close values of the candle Read more

CLV = [(close - low) - (high - close)] / (high - low) Read more

Calculates True Range over last two candles Read more

Calculates True Range over last two candles using close price from the previous candle.

Validates candle attributes Read more

Returns Source field value of the candle. Read more

Volumed price Read more

Checks if candle is “rising”: it’s close value greater than open value

Checks if candle is “falling”: it’s close value smaller than open value

This method tests for self and other values to be equal, and is used by ==. Read more

This method tests for !=.

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

Performs the conversion.

Performs the conversion.

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.