Skip to main content

Crate chrono_ta

Crate chrono_ta 

Source
Expand description

Timestamp-aware, duration-windowed technical indicators.

Unlike observation-count libraries, chrono-ta accepts (chrono::DateTime<chrono::Utc>, value) inputs and expires observations by elapsed time. Start with indicators and the Next trait for streaming updates, or NextBatch for an equivalent batched state transition.

Modules§

errors
indicators
simd
SIMD-accelerated batch operations over &[f64] slices.

Structs§

DataItem

Traits§

Close
Supplies a closing price to an indicator.
High
Supplies a high price to an indicator.
Low
Supplies a low price to an indicator.
Next
Consumes a data item of type T and returns Output.
NextBatch
Batched form of Next: consumes a slice of inputs and returns a vector of outputs.
Open
Supplies an opening price to an indicator.
Reset
Resets an indicator to the initial state.
Volume
Supplies volume to an indicator.