tradestation-api 0.1.0

Complete TradeStation REST API v3 wrapper for Rust
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
//! HTTP chunked-transfer streaming for TradeStation v3.
//!
//! TradeStation uses HTTP streaming (NOT WebSocket):
//! - Content-Type: `application/vnd.tradestation.streams.v3+json`
//! - Newline-delimited JSON objects
//! - `StreamStatus` messages signal snapshot boundaries (`EndSnapshot`) and
//!   reconnect requests (`GoAway`)
//!
//! All stream methods return a [`BoxStream`] of typed updates that can be
//! consumed with `futures::StreamExt`.
//!
//! # Example
//!
//! ```no_run
//! # use tradestation_api::{Client, Credentials};
//! # async fn example(client: &mut Client) -> Result<(), Box<dyn std::error::Error>> {
//! use futures::StreamExt;
//!
//! let mut stream = client.stream_quotes(&["AAPL"]).await?;
//! while let Some(result) = stream.next().await {
//!     let quote = result?;
//!     if !quote.is_status() {
//!         println!("{}: {}", quote.symbol.as_deref().unwrap_or("?"), quote.last.as_deref().unwrap_or("?"));
//!     }
//! }
//! # Ok(())
//! # }
//! ```

use futures::stream::Stream;
use serde::Deserialize;
use std::pin::Pin;

use crate::Client;
use crate::Error;

/// Stream status messages from TradeStation.
///
/// These appear inline in the stream data to signal events like end-of-snapshot
/// or a server-initiated disconnect.
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct StreamStatus {
    /// Status code: "EndSnapshot", "GoAway", etc.
    pub status: String,
    /// Optional message with additional details.
    #[serde(default)]
    pub message: Option<String>,
}

/// A streaming quote update.
///
/// Contains real-time quote data or a stream status message. Use [`StreamQuote::is_status`]
/// to distinguish between the two.
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct StreamQuote {
    /// Ticker symbol.
    pub symbol: Option<String>,
    /// Last traded price.
    pub last: Option<String>,
    /// Best ask price.
    pub ask: Option<String>,
    /// Best bid price.
    pub bid: Option<String>,
    /// Cumulative volume.
    pub volume: Option<String>,
    /// Time of the last trade.
    #[serde(default)]
    pub trade_time: Option<String>,
    /// Stream status (present only for status messages).
    #[serde(default)]
    pub status: Option<String>,
}

impl StreamQuote {
    /// Whether this is a status message rather than a quote update.
    pub fn is_status(&self) -> bool {
        self.status.is_some()
    }

    /// Whether this is a GoAway message indicating reconnection is needed.
    pub fn is_go_away(&self) -> bool {
        self.status.as_deref() == Some("GoAway")
    }
}

/// A streaming bar (OHLCV) update.
///
/// Delivered via [`Client::stream_bars`]. Contains partial or completed bar data.
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct StreamBar {
    /// Highest price during the bar period.
    pub high: Option<String>,
    /// Lowest price during the bar period.
    pub low: Option<String>,
    /// Opening price.
    pub open: Option<String>,
    /// Closing price (updates in real time for the current bar).
    pub close: Option<String>,
    /// Bar timestamp.
    pub time_stamp: Option<String>,
    /// Total volume during the bar period.
    pub total_volume: Option<String>,
    /// Stream status (present only for status messages).
    #[serde(default)]
    pub status: Option<String>,
}

impl StreamBar {
    /// Whether this is a status message rather than bar data.
    pub fn is_status(&self) -> bool {
        self.status.is_some()
    }
}

/// A streaming market depth (Level 2) quote.
///
/// Delivered via [`Client::stream_market_depth_quotes`].
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct StreamMarketDepthQuote {
    /// Ticker symbol.
    pub symbol: Option<String>,
    /// Ask price at this depth level.
    pub ask: Option<String>,
    /// Ask size at this depth level.
    pub ask_size: Option<String>,
    /// Bid price at this depth level.
    pub bid: Option<String>,
    /// Bid size at this depth level.
    pub bid_size: Option<String>,
    /// Side of the book ("Ask" or "Bid").
    #[serde(default)]
    pub side: Option<String>,
    /// Stream status (present only for status messages).
    #[serde(default)]
    pub status: Option<String>,
}

impl StreamMarketDepthQuote {
    /// Whether this is a status message rather than depth data.
    pub fn is_status(&self) -> bool {
        self.status.is_some()
    }
}

/// A streaming market depth aggregate summary.
///
/// Delivered via [`Client::stream_market_depth_aggregates`].
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct StreamMarketDepthAggregate {
    /// Ticker symbol.
    pub symbol: Option<String>,
    /// Total ask size across all levels.
    pub total_ask_size: Option<String>,
    /// Total bid size across all levels.
    pub total_bid_size: Option<String>,
    /// Number of price levels.
    #[serde(default)]
    pub levels: Option<u32>,
    /// Stream status (present only for status messages).
    #[serde(default)]
    pub status: Option<String>,
}

impl StreamMarketDepthAggregate {
    /// Whether this is a status message rather than aggregate data.
    pub fn is_status(&self) -> bool {
        self.status.is_some()
    }
}

/// A streaming option chain update.
///
/// Delivered via [`Client::stream_option_chains`].
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct StreamOptionChain {
    /// Option symbol.
    pub symbol: Option<String>,
    /// Underlying ticker symbol.
    pub underlying: Option<String>,
    /// Option type ("Call" or "Put").
    #[serde(default, rename = "Type")]
    pub option_type: Option<String>,
    /// Strike price.
    pub strike_price: Option<String>,
    /// Expiration date.
    pub expiration_date: Option<String>,
    /// Best bid price.
    pub bid: Option<String>,
    /// Best ask price.
    pub ask: Option<String>,
    /// Last traded price.
    pub last: Option<String>,
    /// Stream status (present only for status messages).
    #[serde(default)]
    pub status: Option<String>,
}

impl StreamOptionChain {
    /// Whether this is a status message rather than chain data.
    pub fn is_status(&self) -> bool {
        self.status.is_some()
    }
}

/// A streaming option quote update.
///
/// Delivered via [`Client::stream_option_quotes`].
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct StreamOptionQuote {
    /// Option symbol.
    pub symbol: Option<String>,
    /// Best bid price.
    pub bid: Option<String>,
    /// Best ask price.
    pub ask: Option<String>,
    /// Last traded price.
    pub last: Option<String>,
    /// Cumulative volume.
    pub volume: Option<String>,
    /// Open interest.
    #[serde(default)]
    pub open_interest: Option<String>,
    /// Stream status (present only for status messages).
    #[serde(default)]
    pub status: Option<String>,
}

impl StreamOptionQuote {
    /// Whether this is a status message rather than quote data.
    pub fn is_status(&self) -> bool {
        self.status.is_some()
    }
}

/// A streaming order status update.
///
/// Delivered via [`Client::stream_orders`] and [`Client::stream_orders_by_id`].
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct StreamOrder {
    /// Order identifier.
    pub order_id: Option<String>,
    /// Account this order belongs to.
    pub account_id: Option<String>,
    /// Ticker symbol.
    pub symbol: Option<String>,
    /// Ordered quantity.
    pub quantity: Option<String>,
    /// Order type.
    pub order_type: Option<String>,
    /// Current order status.
    #[serde(default)]
    pub order_status: Option<String>,
    /// Filled quantity.
    #[serde(default)]
    pub filled_quantity: Option<String>,
    /// Stream status (present only for status messages).
    #[serde(default)]
    pub status: Option<String>,
}

impl StreamOrder {
    /// Whether this is a status message rather than an order update.
    pub fn is_status(&self) -> bool {
        self.status.is_some()
    }
}

/// A streaming position update.
///
/// Delivered via [`Client::stream_positions`].
#[derive(Debug, Clone, Deserialize)]
#[serde(rename_all = "PascalCase")]
pub struct StreamPosition {
    /// Account holding this position.
    pub account_id: Option<String>,
    /// Ticker symbol.
    pub symbol: Option<String>,
    /// Current position quantity.
    pub quantity: Option<String>,
    /// Average entry price.
    pub average_price: Option<String>,
    /// Last traded price.
    pub last: Option<String>,
    /// Unrealized P&L.
    #[serde(default)]
    pub unrealized_profit_loss: Option<String>,
    /// Stream status (present only for status messages).
    #[serde(default)]
    pub status: Option<String>,
}

impl StreamPosition {
    /// Whether this is a status message rather than a position update.
    pub fn is_status(&self) -> bool {
        self.status.is_some()
    }
}

/// Type alias for a boxed async stream of results.
///
/// All streaming methods return this type. Consume it with
/// `futures::StreamExt::next()`.
pub type BoxStream<T> = Pin<Box<dyn Stream<Item = Result<T, Error>> + Send>>;

impl Client {
    /// Stream live quote updates for one or more symbols.
    ///
    /// Returns an async stream of [`StreamQuote`] values including
    /// `StreamStatus` messages (EndSnapshot, GoAway).
    pub async fn stream_quotes(
        &mut self,
        symbols: &[&str],
    ) -> Result<BoxStream<StreamQuote>, Error> {
        let symbols_str = symbols.join(",");
        let path = format!("/v3/marketdata/stream/quotes/{}", symbols_str);
        let headers = self.auth_headers().await?;
        let url = format!("{}{}", self.base_url(), &path);

        let resp = self.http.get(&url).headers(headers).send().await?;

        if !resp.status().is_success() {
            let status = resp.status().as_u16();
            let body = resp.text().await.unwrap_or_default();
            return Err(Error::Api {
                status,
                message: body,
            });
        }

        let stream = async_stream::try_stream! {
            let mut bytes_stream = resp.bytes_stream();
            let mut buffer = String::new();

            use futures::StreamExt;
            while let Some(chunk) = bytes_stream.next().await {
                let chunk = chunk.map_err(Error::Http)?;
                buffer.push_str(&String::from_utf8_lossy(&chunk));

                // Process complete JSON lines
                while let Some(newline_pos) = buffer.find('\n') {
                    let line = buffer[..newline_pos].trim().to_string();
                    buffer = buffer[newline_pos + 1..].to_string();

                    if line.is_empty() {
                        continue;
                    }

                    match serde_json::from_str::<StreamQuote>(&line) {
                        Ok(quote) => yield quote,
                        Err(e) => {
                            tracing::warn!("Failed to parse stream quote: {e}, line: {line}");
                        }
                    }
                }
            }
        };

        Ok(Box::pin(stream))
    }

    /// Stream live bar updates for a symbol.
    ///
    /// # Parameters
    ///
    /// - `symbol`: Ticker symbol (e.g., "AAPL")
    /// - `interval`: Bar interval (e.g., "1", "5")
    /// - `unit`: Bar unit (e.g., "Minute", "Daily")
    pub async fn stream_bars(
        &mut self,
        symbol: &str,
        interval: &str,
        unit: &str,
    ) -> Result<BoxStream<StreamBar>, Error> {
        let path = format!(
            "/v3/marketdata/stream/barcharts/{}?interval={}&unit={}",
            symbol, interval, unit
        );
        let headers = self.auth_headers().await?;
        let url = format!("{}{}", self.base_url(), &path);

        let resp = self.http.get(&url).headers(headers).send().await?;

        if !resp.status().is_success() {
            let status = resp.status().as_u16();
            let body = resp.text().await.unwrap_or_default();
            return Err(Error::Api {
                status,
                message: body,
            });
        }

        let stream = async_stream::try_stream! {
            let mut bytes_stream = resp.bytes_stream();
            let mut buffer = String::new();

            use futures::StreamExt;
            while let Some(chunk) = bytes_stream.next().await {
                let chunk = chunk.map_err(Error::Http)?;
                buffer.push_str(&String::from_utf8_lossy(&chunk));

                while let Some(newline_pos) = buffer.find('\n') {
                    let line = buffer[..newline_pos].trim().to_string();
                    buffer = buffer[newline_pos + 1..].to_string();

                    if line.is_empty() {
                        continue;
                    }

                    match serde_json::from_str::<StreamBar>(&line) {
                        Ok(bar) => yield bar,
                        Err(e) => {
                            tracing::warn!("Failed to parse stream bar: {e}, line: {line}");
                        }
                    }
                }
            }
        };

        Ok(Box::pin(stream))
    }

    /// Stream Level 2 market depth quotes for a symbol.
    pub async fn stream_market_depth_quotes(
        &mut self,
        symbol: &str,
    ) -> Result<BoxStream<StreamMarketDepthQuote>, Error> {
        let path = format!("/v3/marketdata/stream/marketdepth/quotes/{}", symbol);
        let headers = self.auth_headers().await?;
        let url = format!("{}{}", self.base_url(), &path);

        let resp = self.http.get(&url).headers(headers).send().await?;

        if !resp.status().is_success() {
            let status = resp.status().as_u16();
            let body = resp.text().await.unwrap_or_default();
            return Err(Error::Api {
                status,
                message: body,
            });
        }

        let stream = async_stream::try_stream! {
            let mut bytes_stream = resp.bytes_stream();
            let mut buffer = String::new();

            use futures::StreamExt;
            while let Some(chunk) = bytes_stream.next().await {
                let chunk = chunk.map_err(Error::Http)?;
                buffer.push_str(&String::from_utf8_lossy(&chunk));

                while let Some(newline_pos) = buffer.find('\n') {
                    let line = buffer[..newline_pos].trim().to_string();
                    buffer = buffer[newline_pos + 1..].to_string();

                    if line.is_empty() {
                        continue;
                    }

                    match serde_json::from_str::<StreamMarketDepthQuote>(&line) {
                        Ok(item) => yield item,
                        Err(e) => {
                            tracing::warn!("Failed to parse stream market depth quote: {e}, line: {line}");
                        }
                    }
                }
            }
        };

        Ok(Box::pin(stream))
    }

    /// Stream market depth aggregates for a symbol.
    pub async fn stream_market_depth_aggregates(
        &mut self,
        symbol: &str,
    ) -> Result<BoxStream<StreamMarketDepthAggregate>, Error> {
        let path = format!("/v3/marketdata/stream/marketdepth/aggregates/{}", symbol);
        let headers = self.auth_headers().await?;
        let url = format!("{}{}", self.base_url(), &path);

        let resp = self.http.get(&url).headers(headers).send().await?;

        if !resp.status().is_success() {
            let status = resp.status().as_u16();
            let body = resp.text().await.unwrap_or_default();
            return Err(Error::Api {
                status,
                message: body,
            });
        }

        let stream = async_stream::try_stream! {
            let mut bytes_stream = resp.bytes_stream();
            let mut buffer = String::new();

            use futures::StreamExt;
            while let Some(chunk) = bytes_stream.next().await {
                let chunk = chunk.map_err(Error::Http)?;
                buffer.push_str(&String::from_utf8_lossy(&chunk));

                while let Some(newline_pos) = buffer.find('\n') {
                    let line = buffer[..newline_pos].trim().to_string();
                    buffer = buffer[newline_pos + 1..].to_string();

                    if line.is_empty() {
                        continue;
                    }

                    match serde_json::from_str::<StreamMarketDepthAggregate>(&line) {
                        Ok(item) => yield item,
                        Err(e) => {
                            tracing::warn!("Failed to parse stream market depth aggregate: {e}, line: {line}");
                        }
                    }
                }
            }
        };

        Ok(Box::pin(stream))
    }

    /// Stream option chain updates for an underlying symbol.
    pub async fn stream_option_chains(
        &mut self,
        underlying: &str,
    ) -> Result<BoxStream<StreamOptionChain>, Error> {
        let path = format!("/v3/marketdata/stream/options/chains/{}", underlying);
        let headers = self.auth_headers().await?;
        let url = format!("{}{}", self.base_url(), &path);

        let resp = self.http.get(&url).headers(headers).send().await?;

        if !resp.status().is_success() {
            let status = resp.status().as_u16();
            let body = resp.text().await.unwrap_or_default();
            return Err(Error::Api {
                status,
                message: body,
            });
        }

        let stream = async_stream::try_stream! {
            let mut bytes_stream = resp.bytes_stream();
            let mut buffer = String::new();

            use futures::StreamExt;
            while let Some(chunk) = bytes_stream.next().await {
                let chunk = chunk.map_err(Error::Http)?;
                buffer.push_str(&String::from_utf8_lossy(&chunk));

                while let Some(newline_pos) = buffer.find('\n') {
                    let line = buffer[..newline_pos].trim().to_string();
                    buffer = buffer[newline_pos + 1..].to_string();

                    if line.is_empty() {
                        continue;
                    }

                    match serde_json::from_str::<StreamOptionChain>(&line) {
                        Ok(item) => yield item,
                        Err(e) => {
                            tracing::warn!("Failed to parse stream option chain: {e}, line: {line}");
                        }
                    }
                }
            }
        };

        Ok(Box::pin(stream))
    }

    /// Stream option quote updates for specific option legs.
    pub async fn stream_option_quotes(
        &mut self,
        legs: &[&str],
    ) -> Result<BoxStream<StreamOptionQuote>, Error> {
        let legs_str = legs.join(",");
        let path = format!("/v3/marketdata/stream/options/quotes/{}", legs_str);
        let headers = self.auth_headers().await?;
        let url = format!("{}{}", self.base_url(), &path);

        let resp = self.http.get(&url).headers(headers).send().await?;

        if !resp.status().is_success() {
            let status = resp.status().as_u16();
            let body = resp.text().await.unwrap_or_default();
            return Err(Error::Api {
                status,
                message: body,
            });
        }

        let stream = async_stream::try_stream! {
            let mut bytes_stream = resp.bytes_stream();
            let mut buffer = String::new();

            use futures::StreamExt;
            while let Some(chunk) = bytes_stream.next().await {
                let chunk = chunk.map_err(Error::Http)?;
                buffer.push_str(&String::from_utf8_lossy(&chunk));

                while let Some(newline_pos) = buffer.find('\n') {
                    let line = buffer[..newline_pos].trim().to_string();
                    buffer = buffer[newline_pos + 1..].to_string();

                    if line.is_empty() {
                        continue;
                    }

                    match serde_json::from_str::<StreamOptionQuote>(&line) {
                        Ok(item) => yield item,
                        Err(e) => {
                            tracing::warn!("Failed to parse stream option quote: {e}, line: {line}");
                        }
                    }
                }
            }
        };

        Ok(Box::pin(stream))
    }

    /// Stream order status updates for the specified accounts.
    pub async fn stream_orders(
        &mut self,
        account_ids: &[&str],
    ) -> Result<BoxStream<StreamOrder>, Error> {
        let ids = account_ids.join(",");
        let path = format!("/v3/brokerage/stream/accounts/{}/orders", ids);
        let headers = self.auth_headers().await?;
        let url = format!("{}{}", self.base_url(), &path);

        let resp = self.http.get(&url).headers(headers).send().await?;

        if !resp.status().is_success() {
            let status = resp.status().as_u16();
            let body = resp.text().await.unwrap_or_default();
            return Err(Error::Api {
                status,
                message: body,
            });
        }

        let stream = async_stream::try_stream! {
            let mut bytes_stream = resp.bytes_stream();
            let mut buffer = String::new();

            use futures::StreamExt;
            while let Some(chunk) = bytes_stream.next().await {
                let chunk = chunk.map_err(Error::Http)?;
                buffer.push_str(&String::from_utf8_lossy(&chunk));

                while let Some(newline_pos) = buffer.find('\n') {
                    let line = buffer[..newline_pos].trim().to_string();
                    buffer = buffer[newline_pos + 1..].to_string();

                    if line.is_empty() {
                        continue;
                    }

                    match serde_json::from_str::<StreamOrder>(&line) {
                        Ok(item) => yield item,
                        Err(e) => {
                            tracing::warn!("Failed to parse stream order: {e}, line: {line}");
                        }
                    }
                }
            }
        };

        Ok(Box::pin(stream))
    }

    /// Stream order updates for specific order IDs.
    pub async fn stream_orders_by_id(
        &mut self,
        account_ids: &[&str],
        order_ids: &[&str],
    ) -> Result<BoxStream<StreamOrder>, Error> {
        let ids = account_ids.join(",");
        let oids = order_ids.join(",");
        let path = format!("/v3/brokerage/stream/accounts/{}/orders/{}", ids, oids);
        let headers = self.auth_headers().await?;
        let url = format!("{}{}", self.base_url(), &path);

        let resp = self.http.get(&url).headers(headers).send().await?;

        if !resp.status().is_success() {
            let status = resp.status().as_u16();
            let body = resp.text().await.unwrap_or_default();
            return Err(Error::Api {
                status,
                message: body,
            });
        }

        let stream = async_stream::try_stream! {
            let mut bytes_stream = resp.bytes_stream();
            let mut buffer = String::new();

            use futures::StreamExt;
            while let Some(chunk) = bytes_stream.next().await {
                let chunk = chunk.map_err(Error::Http)?;
                buffer.push_str(&String::from_utf8_lossy(&chunk));

                while let Some(newline_pos) = buffer.find('\n') {
                    let line = buffer[..newline_pos].trim().to_string();
                    buffer = buffer[newline_pos + 1..].to_string();

                    if line.is_empty() {
                        continue;
                    }

                    match serde_json::from_str::<StreamOrder>(&line) {
                        Ok(item) => yield item,
                        Err(e) => {
                            tracing::warn!("Failed to parse stream order: {e}, line: {line}");
                        }
                    }
                }
            }
        };

        Ok(Box::pin(stream))
    }

    /// Stream position updates for the specified accounts.
    pub async fn stream_positions(
        &mut self,
        account_ids: &[&str],
    ) -> Result<BoxStream<StreamPosition>, Error> {
        let ids = account_ids.join(",");
        let path = format!("/v3/brokerage/stream/accounts/{}/positions", ids);
        let headers = self.auth_headers().await?;
        let url = format!("{}{}", self.base_url(), &path);

        let resp = self.http.get(&url).headers(headers).send().await?;

        if !resp.status().is_success() {
            let status = resp.status().as_u16();
            let body = resp.text().await.unwrap_or_default();
            return Err(Error::Api {
                status,
                message: body,
            });
        }

        let stream = async_stream::try_stream! {
            let mut bytes_stream = resp.bytes_stream();
            let mut buffer = String::new();

            use futures::StreamExt;
            while let Some(chunk) = bytes_stream.next().await {
                let chunk = chunk.map_err(Error::Http)?;
                buffer.push_str(&String::from_utf8_lossy(&chunk));

                while let Some(newline_pos) = buffer.find('\n') {
                    let line = buffer[..newline_pos].trim().to_string();
                    buffer = buffer[newline_pos + 1..].to_string();

                    if line.is_empty() {
                        continue;
                    }

                    match serde_json::from_str::<StreamPosition>(&line) {
                        Ok(item) => yield item,
                        Err(e) => {
                            tracing::warn!("Failed to parse stream position: {e}, line: {line}");
                        }
                    }
                }
            }
        };

        Ok(Box::pin(stream))
    }
}