tastytrade 0.5.0

Library for trading through tastytrade's API
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
/******************************************************************************
   Author: Joaquín Béjar García
   Email: jb@taunais.com
   Date: 5/3/25
******************************************************************************/

/// DXLink market-data streaming: subscriptions and per-symbol routing.
pub mod quote_streamer;

/// Bounded reconnection policy.
///
/// Used by [`account_streaming`] today. The quote streamer has no reconnect
/// path yet: its DXLink client is moved into its command task, so reaching it
/// again is a change to that ownership rather than a use of this module.
pub mod reconnect;

/// The account websocket: balances, orders and positions.
pub mod account_streaming;