#aggregation #stream #stream-processing #no-std

no-std indicator_macros

流聚合的抽象,我们称之为 Indicator

5 个版本

0.4.4 2023年11月29日
0.4.3 2023年11月26日
0.4.2 2023年10月30日
0.4.1 2023年10月9日

#1156过程宏

Download history 71/week @ 2024-03-10 29/week @ 2024-03-17 23/week @ 2024-03-31 1/week @ 2024-04-07 2/week @ 2024-04-14

674 每月下载量
用于 indicator

MIT 许可证

36KB
762 代码行

Indicator

流聚合的抽象,我们称之为 Indicator

Crates.io MIT licensed Build Status

API文档

示例

indicator 添加为项目的依赖项。

[dependencies]
indicator = "0.4"
rust_decimal = "1.17.0"
rust_decimal_macros = "1.17.0"
time = { version = "0.3", default-features = false, features = ["macros"] }

然后,你可以尝试以下代码。

use arrayvec::ArrayVec;
use indicator::*;
use rust_decimal::Decimal;
use rust_decimal_macros::dec;
use time::macros::{datetime, offset};

/// Return an indicator that calculate `hl2` and `ohlc4` simultaneously.
fn hl2_ohlc4(period: Period) -> impl Operator<TickValue<Decimal>, Output = (Decimal, Decimal)> {
    tumbling(
        period,
        |_w: &ArrayVec<[Decimal; 4], 0>, y: &mut Option<[Decimal; 4]>, x| match y {
            Some(ohlc) => {
                ohlc[1] = ohlc[1].max(x);
                ohlc[2] = ohlc[2].min(x);
                ohlc[3] = x;
                *ohlc
            }
            None => {
                let ohlc = [x; 4];
                *y = Some(ohlc);
                ohlc
            }
        },
    )
    .then(facet_t(
        map_t(|ohlc: [Decimal; 4]| (ohlc[1] + ohlc[2]) / dec!(2)),
        map_t(|ohlc: [Decimal; 4]| (ohlc[0] + ohlc[1] + ohlc[2] + ohlc[3]) / dec!(4)),
    ))
    .map(|v| v.value)
}

依赖项

~3.5MB
~66K SLoC