schwab-sdk 0.3.0

Async Rust client for the Charles Schwab Trader API and real-time market-data streaming.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
//! Chart (candle) streamer services.
//!
//! Each service publishes minute-resolution OHLCV candles. Delivery type is
//! "All Sequence": every tick is sent (not conflated by the streamer) and
//! carries a sequence number identifying its candle.
//!
//! `equity` and `futures` use different field orderings on the wire, so they
//! ship as separate modules with independent `Field` enums and `Content`
//! structs.

pub mod equity;
pub mod futures;