Join GitHub today
GitHub is home to over 50 million developers working together to host and review code, manage projects, and build software together.
Sign upgetTicker Function and older data #225
Comments
|
It's documented somewhere or I think someone answered on r-sig-finance recently. You get something like 60 or 80 days worth of history. |
|
I don't think they will let you pull that far back in time. try current dates. not a bug in the api. |
|
There is a limit of 140 days of intraday data through the API, regardless
of the interface used.
…On May 8, 2017 4:29 PM, "Whit Armstrong" ***@***.***> wrote:
I don't think they will let you pull that far back in time. try current
dates. not a bug in the api.
—
You are receiving this because you are subscribed to this thread.
Reply to this email directly, view it on GitHub
<#225 (comment)>, or mute
the thread
<https://github.com/notifications/unsubscribe-auth/AA08ViJp6kxM3RPNTq4_2UFhE_honWgHks5r3zTpgaJpZM4NUG-K>
.
|
|
I am adding this to the documentation now,. |
|
A couple of other things I have noticed which may be helpful:
|
Hello,
Firstly I would like to thank you for this amazing API! I imagine the time you'd put to accomplish it and for that I'm really grateful.
Now, I would just like to ask you a question. I am getting a void response (just the headers, but not data) for this getTicks function call down below. StartTime and EndTime should be an arbitrary date by Dec 2005 (by today's calendar May 8th 2017). Is getTicks function capable to retrieve older tick data like this or I am getting something strong in the middle of the way?
Thank you
----------CODE-------------
getTicks(as.character("USDEUR Curncy",
eventType = "ASK",
startTime = Sys.time() - 60 * 6000000,
endTime = Sys.time() - 60 * 5994000,
verbose = FALSE,
returnAs = getOption("blpType","data.frame"),
tz = Sys.getenv("TZ", unset = "America/Sao_Paulo"),
con = defaultConnection())