We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
OptionsData.get_chain_day
Relevant Tradier documentation: https://documentation.tradier.com/brokerage-api/markets/get-options-chains Relevant Documentation Info/Example:
symbol | Query | String | Required | VXX | | Underlying symbol of the chain expiration | Query | String | Required | 2019-05-17 | | Expiration for the chain greeks | Query | String | Optional | true | false | Add greeks and volatility information
# Version 3.6.1 import requests response = requests.get('https://api.tradier.com/v1/markets/options/chains', params={'symbol': 'VXX', 'expiration': '2019-05-17', 'greeks': 'true'}, headers={'Authorization': 'Bearer <TOKEN>', 'Accept': 'application/json'} ) json_response = response.json() print(response.status_code) print(json_response)
Greeks weren't much of a concern when I first started developing this, but a recent interest in spread trades has changed my perspective
The text was updated successfully, but these errors were encountered:
Toggling the Greek flag would be incredibly useful. This is a huge problem for me as I need the tradier-supplied Greeks.
Sorry, something went wrong.
No branches or pull requests
Relevant Tradier documentation: https://documentation.tradier.com/brokerage-api/markets/get-options-chains
Relevant Documentation Info/Example:
Parameter | Type | Param Type | Required | Values/Example | Default | Description
symbol | Query | String | Required | VXX | | Underlying symbol of the chain
expiration | Query | String | Required | 2019-05-17 | | Expiration for the chain
greeks | Query | String | Optional | true | false | Add greeks and volatility information
Greeks weren't much of a concern when I first started developing this, but a recent interest in spread trades has changed my perspective
The text was updated successfully, but these errors were encountered: