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
//! Squashing of historical market data creates candle data with orderbook snapshot.
//! It can be easily rebinned to create lower resolution DUFUS tests for algorithms.
#![feature(test)]

extern crate serde;
#[cfg(test)]
extern crate test;
#[macro_use]
extern crate serde_derive;

extern crate cxmr_candles;
extern crate cxmr_exchanges;
extern crate cxmr_feeds;
extern crate cxmr_orderbook;
#[cfg(feature = "analysis")]
extern crate cxmr_ta;
extern crate cxmr_tectonic;

pub use cxmr_candles::UpdateKind;
pub use cxmr_tectonic::Error;

mod collector;
mod snapshot;
mod state;

pub use self::collector::*;
pub use self::snapshot::*;
pub use self::state::*;

// publish test v0.0.7