-
Notifications
You must be signed in to change notification settings - Fork 107
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
Stream processing classes #65
base: master
Are you sure you want to change the base?
Conversation
hootnot
commented
Feb 8, 2017
- factory class to generate candle records from a V20 pricing stream
- remove granularity_to_time and made it available in contrib/util - recordtype property - secs2time private
Is the candle stream working properly? I have tested but get different results from historical data, is the "last" part of the candle the equivalent to "close" in the historical version? |
@carlitoselmago Hi, as you probably noticed it did not get integrated in the oanda-api-v20. I decided not to integrate it. It is a long time ago that I did something with this code. The 'last' is indeed the equivalent of 'close'. It is likely that you will see differences between the records generated from this code and the records you retrieve as candle history. Even OANDA does not guarantee the historical data between live and test as equal due to the way they handle tickdata. If you want this kind of functionality, I think the most simple thing is to install the oanda-trading-environment. It contains a daemon-program that provides this functionality. It contains some examples how to deal with data ( SQL / pubsub). |
Ok, thanks for the info, I was a bit confused about this branch and it's
present-future.
…On Mon, Sep 17, 2018 at 3:50 PM Feite Brekeveld ***@***.***> wrote:
@carlitoselmago <https://github.com/carlitoselmago> Hi, as you probably
noticed it did not get integrated in the oanda-api-v20. I decided not to
integrate it. It is a long time ago that I did something with this code.
The 'last' is indeed the equivalent of 'close'.
It is likely that you will see differences between the records generated
from this code and the records you retrieve as candle history. Even OANDA
does not guarantee the historical data between live and test as equal due
to the way they handle tickdata.
If you want this kind of functionality, I think the most simple thing is
to install the *oanda-trading-environment*. It contains a *daemon-program*
that provides this functionality. It contains some examples how to deal
with data ( SQL / pubsub).
—
You are receiving this because you were mentioned.
Reply to this email directly, view it on GitHub
<#65 (comment)>,
or mute the thread
<https://github.com/notifications/unsubscribe-auth/AEOZSCyVl_ulLWQc7MKVarrgGTg-3CyBks5ub6iQgaJpZM4L7M6G>
.
|