Skip to content

Bump tastytrade from 9.11 to 10.1.0 #510

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

Closed
wants to merge 1 commit into from

Conversation

dependabot[bot]
Copy link
Contributor

@dependabot dependabot bot commented on behalf of github Apr 30, 2025

Bumps tastytrade from 9.11 to 10.1.0.

Release notes

Sourced from tastytrade's releases.

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

  • overload to simplify classmethods by @​Graeme22 in tastyware/tastytrade#230 Previously, classmethods were overly verbose, leading to patterns like this:
    from tastytrade import Account
    account = Account.get_account(session, "5WX01234")
    accounts = Account.get_accounts(session)
    This release changes naming conventions across all Pydantic models to use a shortened name which combines the single and multiple fetches into a single, overloaded function:

... (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)

Bumps [tastytrade](https://github.com/tastyware/tastytrade) from 9.11 to 10.1.0.
- [Release notes](https://github.com/tastyware/tastytrade/releases)
- [Commits](tastyware/tastytrade@v9.11...v10.1.0)

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

Signed-off-by: dependabot[bot] <[email protected]>
@dependabot dependabot bot added dependencies Pull requests that update a dependency file python Pull requests that update Python code labels Apr 30, 2025
Copy link
Contributor Author

dependabot bot commented on behalf of github May 1, 2025

Superseded by #513.

@dependabot dependabot bot closed this May 1, 2025
@dependabot dependabot bot deleted the dependabot/pip/tastytrade-10.1.0 branch May 1, 2025 09:46
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.

0 participants