Skip to content

Bump tastytrade from 9.11 to 10.1.1 #513

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 3 commits into
base: main
Choose a base branch
from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github May 1, 2025

Bumps tastytrade from 9.11 to 10.1.1.

Release notes

Sourced from tastytrade's releases.

tastyware/tastytrade:v10.1.1

What's Changed

  • Fixes #239
  • Renames tastytrade.order.TradeableTastytradeJsonDataclass to TradeableTastytradeData

Full Changelog: tastyware/tastytrade@v10.1.0...v10.1.1

tastyware/tastytrade:v10.1.0

What's Changed

  • add market data endpoints by @​Graeme22 in tastyware/tastytrade#237 Tastytrade recently added very useful new endpoints for fetching market data without using the streamer. This is great for many scenarios where you just want to grab prices once, rather than listen to them continually. This PR adds them to the SDK:
    from tastytrade.market_data import get_market_data
    from tastytrade.order import InstrumentType
    data = get_market_data(session, "SPY", InstrumentType.EQUITY)
    This data contains tons of useful information, like quotes, last trade price, and OHLC prices for the day! It can also be fetched for multiple symbols at once:
    from tastytrade.market_data import get_market_data_by_type
    data = get_market_data_by_type(
         session,
         indices=["SPX", "VIX"],
         cryptocurrencies=["ETH/USD", "BTC/USD"],
         equities=["SPLG", "SPY"],
         futures=["/MCLG6", "/MCLF6"],
         future_options=["./MCLM5MW2K5 250509C62.5", "./MCLM5MW2K5 250509P65.75"],
         options=["SPLG  250516C00048000", "SPLG  250516P00054000"],
    )
  • adds new backtesting-related endpoints from API docs:
    • cancel: cancels a running backtest
    • delete: deletes an active backtesting session
    • get: fetches a past backtest by ID
    • available_parameters: gets a list of valid symbols and dates for backtests
  • adds get_futures_holidays to tastytrade.market_sessions for futures exchange calendars
  • Renames heavily used internal class TastytradeJsonDataclass to TastytradeData
  • __str__ and __repr__ for all Pydantic models now don't print fields that are None by default, making for cleaner debugging

Full Changelog: tastyware/tastytrade@v10.0.1...v10.1.0

tastyware/tastytrade:v10.0.1

What's Changed

  • Documentation switched to material theme from mkdocs
  • Adds PyPI trove classifiers

Full Changelog: tastyware/tastytrade@v10.0.0...v10.0.1

tastyware/tastytrade:v10.0.0

What's Changed

... (truncated)

Commits

Dependabot compatibility score

Dependabot will resolve any conflicts with this PR as long as you don't alter it yourself. You can also trigger a rebase manually by commenting @dependabot rebase.


Dependabot commands and options

You can trigger Dependabot actions by commenting on this PR:

  • @dependabot rebase will rebase this PR
  • @dependabot recreate will recreate this PR, overwriting any edits that have been made to it
  • @dependabot merge will merge this PR after your CI passes on it
  • @dependabot squash and merge will squash and merge this PR after your CI passes on it
  • @dependabot cancel merge will cancel a previously requested merge and block automerging
  • @dependabot reopen will reopen this PR if it is closed
  • @dependabot close will close this PR and stop Dependabot recreating it. You can achieve the same result by closing it manually
  • @dependabot show <dependency name> ignore conditions will show all of the ignore conditions of the specified dependency
  • @dependabot ignore this major version will close this PR and stop Dependabot creating any more for this major version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this minor version will close this PR and stop Dependabot creating any more for this minor version (unless you reopen the PR or upgrade to it yourself)
  • @dependabot ignore this dependency will close this PR and stop Dependabot creating any more for this dependency (unless you reopen the PR or upgrade to it yourself)

@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels May 1, 2025
@dependabot dependabot bot force-pushed the dependabot/pip/tastytrade-10.1.1 branch 2 times, most recently from 4ae8725 to 2eea5e6 Compare May 3, 2025 18:55
Bumps [tastytrade](https://github.com/tastyware/tastytrade) from 9.11 to 10.1.1.
- [Release notes](https://github.com/tastyware/tastytrade/releases)
- [Commits](tastyware/tastytrade@v9.11...v10.1.1)

---
updated-dependencies:
- dependency-name: tastytrade
  dependency-version: 10.1.1
  dependency-type: direct:production
  update-type: version-update:semver-major
...

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot force-pushed the dependabot/pip/tastytrade-10.1.1 branch from 2eea5e6 to 18f7a2c Compare May 3, 2025 18:56
Copy link
Contributor Author

dependabot bot commented on behalf of github May 7, 2025

A newer version of tastytrade exists, but since this PR has been edited by someone other than Dependabot I haven't updated it. You'll get a PR for the updated version as normal once this PR is merged.

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
dependencies Pull requests that update a dependency file python Pull requests that update Python code
Projects
None yet
Development

Successfully merging this pull request may close these issues.

1 participant