market_finance/
lib.rs

1//! # Market Finance
2//! 
3//! A collection of data structures, algorithms and functions for use with a variety of financial markets.
4//!
5//! Technical indicators are currently beta and not enabled by default.
6
7mod traits;
8pub use traits::{ Timestamped };
9
10#[cfg(feature = "indicators")]
11pub mod indicators;
12
13mod interval;
14pub use interval::Interval;
15
16mod bar;
17pub use bar::Bar;
18
19mod quote;
20pub use quote::{ Quote, TradingSession };