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
#![deny(missing_docs, rustdoc::missing_crate_level_docs)]

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

#[macro_use]
extern crate serde;

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;
pub use constants::*;
pub use modular_candle_trait::ModularCandle;
pub use trade_aggregation_derive::Candle;
pub use types::*;
pub use utils::*;