I’m having trouble with getting one-second historical bars. Here is my call to eSignal API:
Ticker.get_RequestHistory( "ES #F", "1S", barType.btBARS, 10, -1, -1)
I’m only interested in the latest 10 bars (10 seconds), but eSignal is returning thousands of bars: it appears to be returning all 1-second bars from midnight up to the present second. This is more than I want or need, and places a burden on my app. I tried altering the start and end time parameters in the function call, but it appears to have no effect. I’m running eSignal Version 7.5
Any help would be appreciated.
-Mikey
Ticker.get_RequestHistory( "ES #F", "1S", barType.btBARS, 10, -1, -1)
I’m only interested in the latest 10 bars (10 seconds), but eSignal is returning thousands of bars: it appears to be returning all 1-second bars from midnight up to the present second. This is more than I want or need, and places a burden on my app. I tried altering the start and end time parameters in the function call, but it appears to have no effect. I’m running eSignal Version 7.5
Any help would be appreciated.
-Mikey
Comment