optionchain_simulator 0.2.14

OptionChain-Simulator is a lightweight REST API service that simulates an evolving option chain with every request. It is designed for developers building or testing trading systems, backtesters, and visual tools that depend on option data streams but want to avoid relying on live data feeds.
1
2
3
4
5
6
7
8
9
10
11
12
13
14
pub(crate) mod expiry;
pub(crate) mod factors;
pub(crate) mod ladder;
pub(crate) mod series;
pub(crate) mod simulator;
pub(crate) mod spread;
mod walker;

#[cfg(test)]
mod golden_tape;

pub(crate) use ladder::resolve_pinned_ceiling;
pub use simulator::Simulator;
pub(crate) use walker::Walker;