optionchain_simulator 0.1.0

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
15
pub(crate) mod controller;
mod error;
mod favicon;
pub(crate) mod handlers;
pub(crate) mod limits;
mod middleware;
pub(crate) mod models;
pub(crate) mod patch;
pub(crate) mod requests;
pub(crate) mod responses;
mod routes;
pub mod swagger;
pub(crate) mod validation;

pub(crate) use favicon::get_favicon;