candlestick-rs 0.2.4

Candlestick pattern recognition library for technical analysis
Documentation
1
2
3
4
5
/// Helper function to calculate mid point
#[doc(hidden)]
pub fn midpoint(lhs: f64, rhs: f64) -> f64 {
    (lhs + rhs) / 2.0
}