/// Enumeration types shared across market data and trader APIs.
/// Market data response types for quotes, option chains, candles, and instruments.
/// Trader response types for accounts, orders, transactions, and user preferences.
pub use *;
pub use *;
pub use *;
/// Numeric type for financial values.
///
/// Defaults to [`f64`]. Enable the `decimal` crate feature to switch to
/// `rust_decimal::Decimal`, which avoids floating-point rounding in
/// financial calculations.
pub type Number = f64;
/// Numeric type for financial values backed by [`rust_decimal::Decimal`].
///
/// Activated by the `decimal` crate feature.
pub type Number = Decimal;
/// Compatibility alias: use `market_data::QuoteResponse` for new code.
pub type Quotes = QuoteResponse;
/// Compatibility alias: use `market_data::QuoteResponseObject` for new code.
pub type Quote = QuoteResponseObject;