-
Notifications
You must be signed in to change notification settings - Fork 16
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
ToolBox Addition: IVolatility equity and options converter #19
Comments
Welcome @feribg ! How to handle the stock adjustments, should I be importing the splits and dividend data somewhere or use another data source for that?
Since the data is bid/ask I assume we need to dump to QuoteBar, however that needs OHLC, but we only have 1 value, should I just replicate that 4 times, or there's another approach to take here?
Any way to save the IV and greeks, similarly to how open interest dedicated file is generated per day, so those are not regenerated every time?
|
You can have a look at the equities importer. Im not sure how to preserve bid ask information as that's quite important, but hopefully you can provide some insight. Let me know if you want some sample data to try it out. |
Also planning to add |
Thank you Feras,
The exchange in this case would be "usa"; its a market field which is used
to distinguish fungible assets.
…On Feb 3, 2018 17:46, "Feras Salim" ***@***.***> wrote:
Also planning to add FactorFileGenerator implementation as part of the
importer for Ivol since they provide those in a nice csv format that's
already synced with the rest of the data, so it's easier to use theirs than
Yahoo's. I will update the ticket and the PR when that's done.
—
You are receiving this because you commented.
Reply to this email directly, view it on GitHub
<#19>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/ACI6mYtAxV0hSSzuheSIfwCLzeRmGHWuks5tROGygaJpZM4RjqNr>
.
|
Thanks. Factor support is pretty much done, but there's one main issue. |
@jaredbroad Just wondering if you had any thoughts on that one ? |
@feribg -- I believe all we really need is the previous day's closing price. We could abstract this away from the generator via an If we end up providing this abstraction, please submit this as a separate, isolated pull request. |
@mchandschuh Got it, thanks! I finalized the current PR, I will make this and the Factor generator as a separate PR to come. |
Just want to get the conversation going on IVolatility data source converter. I already started some preliminary work but there are a few questions that come up. I only have minute equity and options data so that's the timeframe I will be implementing and testing at.
Their data comes in gzipped CSV, with underlying type (index, stock, etf), price bid, price ask, price last, date_bid, date_ask, date_last, size_bid, size_ask, size_last, exchange_bid, exchange_ask, exch_last, volume, row per minute. Not split and dividend adjusted (but dividend, corp actions, interest rate, etc) data is provided for each trading day.
Options are pretty much identical but also come with greeks and IV, type, expiration, etc.
I had a look at the Algo Seek implementations but a couple of questions come up:
The text was updated successfully, but these errors were encountered: