tulip_rs 0.1.4

High-performance technical analysis library — 100+ indicators and 60+ candlestick patterns with SIMD acceleration
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
#![allow(clippy::all)]
#![feature(portable_simd)]

pub mod candle_indicators;
//pub mod candle_types;
//pub mod cdlcommon;
//pub mod cldcommontypes;
pub mod common;
pub mod indicator_types;
pub mod indicators;
pub mod macros;
pub mod math;
pub mod common_simd;
pub mod ring_buffer;
pub mod types;

#[cfg(any(feature = "simd_options", feature = "simd_assets"))]
pub mod math_simd;