tastytrade 0.4.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
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
/******************************************************************************
   Author: Joaquín Béjar García
   Email: jb@taunais.com
   Date: 9/3/25
******************************************************************************/
use crate::api::base::{Items, Paginated};
use crate::api::query::{PageRequest, QueryBuilder};
use crate::api::url::encode_path_segment;
use crate::types::instrument::{
    CompactOptionChain, Cryptocurrency, EquityInstrument, EquityInstrumentInfo, EquityOption,
    FutureOption, FutureOptionProduct, FutureProduct, FuturesNestedOptionChain, NestedOptionChain,
    QuantityDecimalPrecision, Warrant,
};
use crate::types::instrument_filter::{ActiveEquityFilter, EquityFilter, FutureFilter};
use crate::types::search::{
    AiSearchToken, InstrumentSearchFilter, InstrumentSearchResult, SymbolSearchResult,
};
use crate::{AsSymbol, TastyResult, TastyTrade};

impl TastyTrade {
    /// Details for one equity, including its trading flags.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_equity_info(
        &self,
        symbol: impl AsSymbol,
    ) -> TastyResult<EquityInstrumentInfo> {
        self.get(format!(
            "/instruments/equities/{}",
            encode_path_segment(&symbol.as_symbol().0)
        ))
        .await
    }

    /// One page of equities, filtered.
    ///
    /// [`EquityFilter::for_symbols`] is the common case; the default filter
    /// walks the whole listing a page at a time.
    ///
    /// # Errors
    ///
    /// Fails when the endpoint answers without a pagination block, and when
    /// the listing arrives but nothing in it can be decoded — a defect in this
    /// crate's model rather than an empty result. A genuinely empty page is
    /// `Ok`.
    pub async fn list_equities(
        &self,
        filter: &EquityFilter,
    ) -> TastyResult<Paginated<EquityInstrument>> {
        let query = filter.to_query();
        self.get_with_query::<Items<EquityInstrument>, _, _>(
            "/instruments/equities",
            &query.pairs(),
        )
        .await
    }

    /// One page of currently active equities.
    ///
    /// # Errors
    ///
    /// Fails when the endpoint answers without a pagination block, and as the
    /// other listings otherwise.
    pub async fn list_active_equities(
        &self,
        filter: &ActiveEquityFilter,
    ) -> TastyResult<Paginated<EquityInstrument>> {
        let query = filter.to_query();
        self.get_with_query::<Items<EquityInstrument>, _, _>(
            "/instruments/equities/active",
            &query.pairs(),
        )
        .await
    }

    /// One equity by symbol.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_equity(&self, symbol: impl AsSymbol) -> TastyResult<EquityInstrument> {
        self.get(format!(
            "/instruments/equities/{}",
            encode_path_segment(&symbol.as_symbol().0)
        ))
        .await
    }

    /// The flat option chain for an underlying.
    ///
    /// # Errors
    ///
    /// Fails when the listing arrives but nothing in it can be decoded, which is a
    /// defect in this crate's model rather than an empty result. A genuinely
    /// empty listing is `Ok`.
    pub async fn list_option_chains(
        &self,
        underlying_symbol: impl AsSymbol,
    ) -> TastyResult<Vec<EquityOption>> {
        let resp: Items<EquityOption> = self
            .get(format!(
                "/option-chains/{}",
                encode_path_segment(&underlying_symbol.as_symbol().0)
            ))
            .await?;
        resp.into_items()
    }

    /// The compact option chain for an underlying.
    ///
    /// Compact chains carry symbols without the per-contract detail, which is
    /// what you want when building a subscription list.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_compact_option_chain(
        &self,
        underlying_symbol: impl AsSymbol,
    ) -> TastyResult<CompactOptionChain> {
        // Through the generic verb like every other endpoint: it is the only
        // path that checks the status. Decoding by hand here used to put the
        // entire response body into the error message, so any caller logging a
        // parse failure logged the whole document.
        let resp: Items<CompactOptionChain> = self
            .get(format!(
                "/option-chains/{}/compact",
                encode_path_segment(&underlying_symbol.as_symbol().0)
            ))
            .await?;

        resp.into_items()?.into_iter().next().ok_or_else(|| {
            crate::TastyTradeError::Unknown(
                "No compact option chain data found in response".to_string(),
            )
        })
    }

    /// Option chains grouped by expiration and strike.
    ///
    /// # Errors
    ///
    /// Fails when the listing arrives but nothing in it can be decoded, which is a
    /// defect in this crate's model rather than an empty result. A genuinely
    /// empty listing is `Ok`.
    pub async fn list_nested_option_chains(
        &self,
        underlying_symbol: impl AsSymbol,
    ) -> TastyResult<Vec<NestedOptionChain>> {
        let resp: Items<NestedOptionChain> = self
            .get(format!(
                "/option-chains/{}/nested",
                encode_path_segment(&underlying_symbol.as_symbol().0)
            ))
            .await?;
        resp.into_items()
    }

    /// Equity options by symbol.
    ///
    /// # Errors
    ///
    /// Fails when the listing arrives but nothing in it can be decoded, which is a
    /// defect in this crate's model rather than an empty result. A genuinely
    /// empty listing is `Ok`.
    pub async fn list_equity_options(
        &self,
        symbols: &[impl AsSymbol],
        active: Option<bool>,
    ) -> TastyResult<Vec<EquityOption>> {
        let mut query = Vec::new();

        let mut symbol_strings = Vec::new();

        for symbol in symbols {
            symbol_strings.push(symbol.as_symbol().0.clone());
        }

        for symbol_str in &symbol_strings {
            query.push(("symbol[]", symbol_str.as_str()));
        }

        if let Some(active_val) = active {
            query.push(("active", if active_val { "true" } else { "false" }));
        }

        let resp: Items<EquityOption> = self
            .get_with_query("/instruments/equity-options", &query)
            .await?;
        resp.into_items()
    }

    /// One equity option by symbol.
    ///
    /// `active` is the venue's documented filter for whether the option is
    /// currently available for trading with the broker. `None` omits it, which
    /// leaves the venue's own default in place.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_equity_option(
        &self,
        symbol: impl AsSymbol,
        active: Option<bool>,
    ) -> TastyResult<EquityOption> {
        // The hand-rolled envelope this replaced was `{ data: EquityOption }`,
        // which is what the generic verb decodes anyway — minus the status
        // check it never did and the body it put into the error message.
        let mut query = QueryBuilder::new();
        query.push_flag("active", active);
        self.get_with_query::<EquityOption, EquityOption, _>(
            format!(
                "/instruments/equity-options/{}",
                encode_path_segment(&symbol.as_symbol().0)
            ),
            &query.pairs(),
        )
        .await
    }

    /// One page of futures, filtered.
    ///
    /// # Errors
    ///
    /// As [`TastyTrade::list_equities`].
    pub async fn list_futures(
        &self,
        filter: &FutureFilter,
    ) -> TastyResult<Paginated<crate::types::instrument::Future>> {
        let query = filter.to_query();
        self.get_with_query::<Items<crate::types::instrument::Future>, _, _>(
            "/instruments/futures",
            &query.pairs(),
        )
        .await
    }

    /// One futures contract by symbol.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_future(
        &self,
        symbol: impl AsSymbol,
    ) -> TastyResult<crate::types::instrument::Future> {
        self.get(format!(
            "/instruments/futures/{}",
            encode_path_segment(&symbol.as_symbol().0)
        ))
        .await
    }

    /// One page of futures products.
    ///
    /// # Errors
    ///
    /// As [`TastyTrade::list_equities`].
    pub async fn list_future_products(
        &self,
        page: &PageRequest,
    ) -> TastyResult<Paginated<FutureProduct>> {
        let mut query = QueryBuilder::new();
        page.write_into(&mut query);
        self.get_with_query::<Items<FutureProduct>, _, _>(
            "/instruments/future-products",
            &query.pairs(),
        )
        .await
    }

    /// One futures product by exchange and code.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_future_product(
        &self,
        exchange: &str,
        code: &str,
    ) -> TastyResult<FutureProduct> {
        self.get(format!(
            "/instruments/future-products/{}/{}",
            encode_path_segment(exchange),
            encode_path_segment(code)
        ))
        .await
    }

    /// One page of futures-option products.
    ///
    /// # Errors
    ///
    /// As [`TastyTrade::list_equities`].
    pub async fn list_future_option_products(
        &self,
        page: &PageRequest,
    ) -> TastyResult<Paginated<FutureOptionProduct>> {
        let mut query = QueryBuilder::new();
        page.write_into(&mut query);
        self.get_with_query::<Items<FutureOptionProduct>, _, _>(
            "/instruments/future-option-products",
            &query.pairs(),
        )
        .await
    }

    /// One futures-option product, addressed by exchange and root symbol.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_future_option_product_by_exchange(
        &self,
        exchange: &str,
        root_symbol: &str,
    ) -> TastyResult<FutureOptionProduct> {
        self.get(format!(
            "/instruments/future-option-products/{}/{}",
            encode_path_segment(exchange),
            encode_path_segment(root_symbol)
        ))
        .await
    }

    /// One futures-option product by root symbol.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_future_option_product(
        &self,
        root_symbol: &str,
    ) -> TastyResult<FutureOptionProduct> {
        self.get(format!(
            "/instruments/future-option-products/{}",
            encode_path_segment(root_symbol)
        ))
        .await
    }

    /// The flat futures-option chain for a product.
    ///
    /// # Errors
    ///
    /// Fails when the listing arrives but nothing in it can be decoded, which is a
    /// defect in this crate's model rather than an empty result. A genuinely
    /// empty listing is `Ok`.
    pub async fn list_futures_option_chains(
        &self,
        product_code: &str,
    ) -> TastyResult<Vec<FutureOption>> {
        let resp: Items<FutureOption> = self
            .get(format!(
                "/futures-option-chains/{}",
                encode_path_segment(product_code)
            ))
            .await?;
        resp.into_items()
    }

    /// Futures-option chains grouped by expiration and strike.
    ///
    /// # Errors
    ///
    /// Fails when the listing arrives but nothing in it can be decoded, which is a
    /// defect in this crate's model rather than an empty result. A genuinely
    /// empty listing is `Ok`.
    pub async fn list_nested_futures_option_chains(
        &self,
        product_code: &str,
    ) -> TastyResult<Vec<FuturesNestedOptionChain>> {
        // This endpoint returns data in standard TastyApiResponse format with FuturesNestedOptionChain in data field
        let nested_chain: FuturesNestedOptionChain = self
            .get(format!(
                "/futures-option-chains/{}/nested",
                encode_path_segment(product_code)
            ))
            .await?;

        // Return as a vector with single item to match the expected return type
        Ok(vec![nested_chain])
    }

    /// Futures options by symbol.
    ///
    /// # Errors
    ///
    /// Fails when the listing arrives but nothing in it can be decoded, which is a
    /// defect in this crate's model rather than an empty result. A genuinely
    /// empty listing is `Ok`.
    pub async fn list_future_options(
        &self,
        symbols: &[impl AsSymbol],
    ) -> TastyResult<Vec<FutureOption>> {
        let mut query = Vec::new();
        let mut symbol_strings = Vec::new();

        for symbol in symbols {
            symbol_strings.push(symbol.as_symbol().0.clone());
        }

        for symbol_str in &symbol_strings {
            query.push(("symbol[]", symbol_str.as_str()));
        }

        let resp: Items<FutureOption> = self
            .get_with_query("/instruments/future-options", &query)
            .await?;
        resp.into_items()
    }

    /// One futures option by symbol.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_future_option(&self, symbol: impl AsSymbol) -> TastyResult<FutureOption> {
        let encoded_symbol = encode_path_segment(&symbol.as_symbol().0);
        self.get(format!("/instruments/future-options/{encoded_symbol}"))
            .await
    }

    /// Cryptocurrencies the venue lists.
    ///
    /// **Listed, not currently tradable through this API.** tastytrade
    /// disabled cryptocurrency order routing on
    /// [`crate::prelude::CRYPTOCURRENCY_TRADING_SUSPENDED_ON`] until further
    /// notice. Discovery and market data — this method, the quote streamer —
    /// are unaffected; placing an order is refused locally.
    ///
    /// These trade in fractions, which is why quantities across this crate are
    /// `Decimal` rather than integers.
    ///
    /// # Errors
    ///
    /// Fails when the listing arrives but nothing in it can be decoded, which is a
    /// defect in this crate's model rather than an empty result. A genuinely
    /// empty listing is `Ok`.
    pub async fn list_cryptocurrencies(
        &self,
        symbols: &[impl AsSymbol],
    ) -> TastyResult<Vec<Cryptocurrency>> {
        let mut query = Vec::new();
        let mut symbol_strings = Vec::new();

        for symbol in symbols {
            symbol_strings.push(symbol.as_symbol().0.clone());
        }

        for symbol_str in &symbol_strings {
            query.push(("symbol[]", symbol_str.as_str()));
        }

        let resp: Items<Cryptocurrency> = self
            .get_with_query("/instruments/cryptocurrencies", &query)
            .await?;
        resp.into_items()
    }

    /// One cryptocurrency by symbol.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_cryptocurrency(&self, symbol: impl AsSymbol) -> TastyResult<Cryptocurrency> {
        let encoded_symbol = encode_path_segment(&symbol.as_symbol().0);
        self.get(format!("/instruments/cryptocurrencies/{encoded_symbol}"))
            .await
    }

    /// Tradable warrants.
    ///
    /// # Errors
    ///
    /// Fails when the listing arrives but nothing in it can be decoded, which is a
    /// defect in this crate's model rather than an empty result. A genuinely
    /// empty listing is `Ok`.
    pub async fn list_warrants(
        &self,
        symbols: Option<&[impl AsSymbol]>,
    ) -> TastyResult<Vec<Warrant>> {
        let mut query = Vec::new();
        let mut symbol_strings = Vec::new();

        if let Some(symbols) = symbols {
            for symbol in symbols {
                symbol_strings.push(symbol.as_symbol().0.clone());
            }

            for symbol_str in &symbol_strings {
                query.push(("symbol[]", symbol_str.as_str()));
            }
        }

        let resp: Items<Warrant> = self.get_with_query("/instruments/warrants", &query).await?;
        resp.into_items()
    }

    /// One warrant by symbol.
    ///
    /// # Errors
    ///
    /// Fails when the venue does not recognise the symbol, and propagates its
    /// error otherwise.
    pub async fn get_warrant(&self, symbol: impl AsSymbol) -> TastyResult<Warrant> {
        self.get(format!(
            "/instruments/warrants/{}",
            encode_path_segment(&symbol.as_symbol().0)
        ))
        .await
    }

    /// Symbols matching a prefix, with enough to show a person.
    ///
    /// The query is a **path segment**, so it goes through the shared encoder:
    /// a crypto pair or a future option carries separators and spaces that
    /// would otherwise select a different route.
    ///
    /// # Errors
    ///
    /// Fails when the listing arrives but nothing in it can be decoded, which
    /// is a defect in this crate's model rather than an empty result. A search
    /// that genuinely matched nothing is `Ok` with an empty vector.
    pub async fn search_symbols(
        &self,
        query: impl AsRef<str>,
    ) -> TastyResult<Vec<SymbolSearchResult>> {
        let resp: Items<SymbolSearchResult> = self
            .get(format!(
                "/symbols/search/{}",
                encode_path_segment(query.as_ref())
            ))
            .await?;
        resp.into_items()
    }

    /// Instruments matching a query, across every instrument type.
    ///
    /// # Errors
    ///
    /// Fails **before sending anything** with
    /// [`crate::TastyTradeError::Precondition`] when the filter asks for more
    /// than [`crate::prelude::MAX_SEARCH_RESULTS`] results. Otherwise as
    /// [`TastyTrade::search_symbols`].
    pub async fn search_instruments(
        &self,
        filter: &InstrumentSearchFilter,
    ) -> TastyResult<Vec<InstrumentSearchResult>> {
        filter.validate()?;

        let query = filter.to_query();
        let resp: Items<InstrumentSearchResult> = self
            .get_with_query("/instruments/search", &query.pairs())
            .await?;
        resp.into_items()
    }

    /// Mints a short-lived third-party client token for AI search.
    ///
    /// The token is **a credential** and is handed back rather than used: the
    /// service it authenticates is not part of the tastytrade API this crate
    /// wraps. See [`AiSearchToken`] for why the whole response object is kept
    /// instead of a named field.
    ///
    /// # Errors
    ///
    /// Propagates the venue's error. Neither the token nor the response body
    /// reaches the error or the logs.
    pub async fn ai_search_token(&self) -> TastyResult<AiSearchToken> {
        // An empty JSON object rather than `()`, which serialises to `null`
        // and is a different body.
        self.post(
            "/instruments/ai-search-token",
            serde_json::Value::Object(serde_json::Map::new()),
        )
        .await
    }

    /// How many decimal places each instrument type accepts for a quantity.
    ///
    /// Worth consulting before sizing an order: submitting more precision than
    /// the venue accepts is a rejection.
    ///
    /// # Errors
    ///
    /// Fails when the listing arrives but nothing in it can be decoded, which is a
    /// defect in this crate's model rather than an empty result. A genuinely
    /// empty listing is `Ok`.
    pub async fn list_quantity_decimal_precisions(
        &self,
    ) -> TastyResult<Vec<QuantityDecimalPrecision>> {
        let resp: Items<QuantityDecimalPrecision> =
            self.get("/instruments/quantity-decimal-precisions").await?;
        resp.into_items()
    }
}