1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
#![deny(
    missing_docs,
    rustdoc::missing_crate_level_docs,
    missing_debug_implementations
)]
#![warn(clippy::all)]
#![doc = include_str!("../README.md")]

//! This crate is used for aggregating raw trade data into candles using various methods

#[cfg(test)]
mod plot;

mod aggregation_rules;
mod aggregator;
pub mod candle_components;
mod constants;
mod errors;
mod modular_candle_trait;
mod types;
mod utils;
mod welford_online;

pub use aggregation_rules::*;
pub use aggregator::*;
pub use candle_components::{CandleComponent, CandleComponentUpdate};
pub use constants::*;
pub use errors::*;
pub use modular_candle_trait::ModularCandle;
pub use trade_aggregation_derive::Candle;
pub use types::*;
pub use utils::*;