tdbe 0.13.0

ThetaData Binary Encoding -- market data types, FIT/FIE codecs, Black-Scholes Greeks
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub mod enums;
pub mod price;
pub mod tick;

// Generator-emitted modules live in `generated/`. The submodule
// itself is empty (a doc hub) — the actual files are reached via
// `include!("generated/<name>.rs")` from the hand-written
// `enums.rs` / `tick.rs` siblings, so the feature gates and
// hand-written `impl` blocks keep their place above each include site.
mod generated;

pub use enums::*;
pub use price::Price;
pub use tick::*;