optionchain_simulator 0.2.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.
pub(crate) mod controller;
mod error;
pub(crate) mod export;
mod favicon;
pub(crate) mod handlers;
pub(crate) mod handlers_v2;
pub(crate) mod limits;
mod middleware;
pub(crate) mod models;
pub(crate) mod patch;
pub(crate) mod requests;
pub(crate) mod requests_v2;
pub(crate) mod responses;
pub(crate) mod responses_v2;
mod routes;
pub mod swagger;
pub(crate) mod validation;

pub(crate) use favicon::get_favicon;