-
Notifications
You must be signed in to change notification settings - Fork 27
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
Add support for additional market data bar types #61
Conversation
CLA Assistant Lite bot All contributors have signed the CLA ✍️ ✅ |
examples/example_beta_calc.py
Outdated
# API_PORT = 4001 | ||
# API_PORT = 7496 | ||
|
||
# API_PORT = 4002 | ||
API_PORT = 7497 |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
clean this up. Do we need all of these commented out?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Updated the comment to clarify these — can still remove them if you'd prefer
HISTORICAL_VOLATILITY = 6 | ||
ADJUSTED_LAST = 6 | ||
"""Bid/Ask prices.""" | ||
HISTORICAL_VOLATILITY = 7 | ||
"""Historical volatility.""" | ||
OPTION_IMPLIED_VOLATILITY = 7 | ||
OPTION_IMPLIED_VOLATILITY = 8 | ||
"""Option implied volatility.""" | ||
FEE_RATE = 8 | ||
"""Fee rate.""" | ||
REBATE_RATE = 9 | ||
"""Rebate rate.""" | ||
FEE_RATE = 10 | ||
"""Fee rate.""" | ||
YIELD_BID = 11 | ||
"""Bid yield.""" | ||
YIELD_ASK = 12 | ||
"""Ask yield.""" | ||
YIELD_BID_ASK = 13 | ||
"""Bid/Ask yield.""" | ||
YIELD_LAST = 14 | ||
"""Last yield.""" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Do any of these need to go in the exclusion list in request_bars_realtime
?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Don't believe so — think that only the existing ones (TRADES/MIDPOINT/BID/ASK) are supported
I have read the CLA Document and I hereby sign the CLA |
No description provided.