-
Notifications
You must be signed in to change notification settings - Fork 110
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
Unable to get live interval data #64
Comments
I can also replicate this issue. It looks like the live interval bars functionality is completely broken now. Worse than before when it was receiving duplicate/missing bars. |
At this point, I'm probably going to abandon iqfeed and using pyiqfeed. iqfeed paywalls their developer docs to the tune of 500$/year and this repository has a pull request from oct 2022 that hasn't been reviewed. It's practically abandoned, with all the issues that it has. The alternative I'm looking at right now is polygon. |
The repository has a pull request from 2022 for which the submitter was
asked to make some changes and resubmit.
…On Wed, Jan 10, 2024 at 11:20 AM openSourceBugs ***@***.***> wrote:
At this point, I'm probably going to abandon iqfeed and using pyiqfeed.
iqfeed paywalls their developer docs to the tune of 500$/year and this
repository has a pull request from oct 2022 that hasn't been reviewed. It's
practically abandoned, with all the issues that it has. The alternative I'm
looking at right now is polygon.
—
Reply to this email directly, view it on GitHub
<#64 (comment)>,
or unsubscribe
<https://github.com/notifications/unsubscribe-auth/AAGJAVDF3ARHZBR3UOVNLHTYN25U7AVCNFSM6AAAAAA4N42IUOVHI2DSMVQWIX3LMV43OSLTON2WKQ3PNVWWK3TUHMYTQOBVGE3TEMZQGA>
.
You are receiving this because you are subscribed to this thread.Message
ID: ***@***.***>
|
Hello and really thanks for the work done on this library, it is great!
I have a problem with one example that should show how to get live updates for a given symbol.
In my case I am using ticker EURUSD.FXCM , 1 minute bar
get_live_interval_bars(ticker="EURUSD.FXCM", bar_len=60, seconds=60*3)
and the code of the above method is:
def get_live_interval_bars(ticker: str, bar_len: int, seconds: int): bar_conn = iq.BarConn(name='pyiqfeed-Example-live-interval-bars') bar_listener = iq.VerboseBarListener("Bar Listener") bar_conn.add_listener(bar_listener) with iq.ConnConnector([bar_conn]) as connector: bar_conn.watch(symbol=ticker, interval_len=bar_len, interval_type='s', update=1, lookback_bars=10) time.sleep(seconds)
The other methods work great e.g. I can get level_1 quotes and trades, historical data, but no live update.
I dont get any error or anything that can help to understand what is wrong.
Is there anything I can do?
The text was updated successfully, but these errors were encountered: