chapaty 0.1.4

A software to backtest trading strategies.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum TradingIndicatorKind {
    Poc(PriceHistogramKind),
    ValueAreaLow(PriceHistogramKind),
    ValueAreaHigh(PriceHistogramKind),
}

#[derive(Copy, Clone, Debug, Hash, PartialEq, Eq)]
pub enum PriceHistogramKind {
    Tpo1m,
    Tpo1h,
    VolTick,
    VolAggTrades,
}