A python wrapper around the tastytrade open API
Project description
Getting Started
Before using this SDK, ensure that you:
- have a Tastytrade account
- have opted into the Tastytrade Open API program
Install
pip install tastytrade-sdk
Use It
from tastytrade_sdk import Tastytrade
tasty = Tastytrade()
tasty.login(
login='trader@email.com',
password='password'
)
tasty.api.post('/sessions/validate')
tasty.logout()
Examples
Streaming Market Data
from tastytrade_sdk import Tastytrade
from tastytrade_sdk.market_data.models import Quote, Candle, Greeks
tasty = Tastytrade().login(login='trader@email.com', password='password')
# Define some event handlers
def on_quote(quote: Quote):
print(quote)
def on_candle(candle: Candle):
print(candle)
def on_greeks(greeks: Greeks):
print(greeks)
# Subscribing to symbols across different instrument types
symbols = [
'BTC/USD',
'SPY',
'/ESU3',
'SPY 230630C00255000',
'./ESU3 EW2N3 230714C4310'
]
subscription = tasty.market_data.subscribe(
symbols=symbols,
on_quote=on_quote,
on_candle=on_candle,
on_greeks=on_greeks
)
# start streaming
subscription.open()
Project details
Release history Release notifications | RSS feed
Download files
Download the file for your platform. If you're not sure which to choose, learn more about installing packages.
Source Distribution
tastytrade_sdk-0.1.2.tar.gz
(7.9 kB
view details)
Built Distribution
File details
Details for the file tastytrade_sdk-0.1.2.tar.gz
.
File metadata
- Download URL: tastytrade_sdk-0.1.2.tar.gz
- Upload date:
- Size: 7.9 kB
- Tags: Source
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | 5c67db24827f44630a832fdfe866c9a127e88f49d6e8b1a87f5df64531561c55 |
|
MD5 | 0a120d6639bc1b0abc6048fc1bf140be |
|
BLAKE2b-256 | 81c9cd3c19540dccfe9f5f3740ca3d6e2846aa923af623932a329907d7c6a7fa |
File details
Details for the file tastytrade_sdk-0.1.2-py3-none-any.whl
.
File metadata
- Download URL: tastytrade_sdk-0.1.2-py3-none-any.whl
- Upload date:
- Size: 10.3 kB
- Tags: Python 3
- Uploaded using Trusted Publishing? No
- Uploaded via: poetry/1.5.1 CPython/3.11.4 Linux/5.15.0-1041-azure
File hashes
Algorithm | Hash digest | |
---|---|---|
SHA256 | fd37dc637d9964d869399421adb62bbc2df1667423cf5b1a493f5f5d146d9672 |
|
MD5 | 00bd6e622d9825723758362262ab91e6 |
|
BLAKE2b-256 | 1f949ca084ce0b051f1845e2c9492b07eca667587ff43017fbb007977da13d28 |