Quote from polee2000:
is it feasible to collect ER2/ES/EMD/NQ ticks using ACCESS/VB.net/IB ?
I am running the program on my lowly 1.5M notebook
thanks
Quote from ChuckAxe:
Hi,
I have a question related with this issue. I would like to obtain ticks and intraday data. What's the easiest and the cheapest way to do this?
Thanks in advance!
Regards, Chuck
Quote from schan:
Hi Chuck,
For me a cheap way to get tick data is to subscribe to something like DTN iqfeed or Esignal. Personally I use DTN which costs less than $50/month if you sign up for a year. The program allows you to save tick data manually.
Tick data usually goes back only 8-10 days.
I wrote a simple program that runs nightly to download the tick data for the stocks/futures that I follow into text files. There are probably many third-party apps that connect to such datafeeds to do the same thing.
Getting something accurate and reliable is a small price to pay.
You can also collect data for 1,5,30..etc min timeframes.
Hope this helps,
Stephen
Quote from Aaron:
When you are saving your futures data, how do you handle contract rollovers? After you save your data, do you then append it to a long historical datafile? Do you make any adjustments for rollovers? Do you save the #f (eSignal notation) continuous contract data?
Now that I'm trading more contracts, it is getting more expensive to buy data from Tickdata and I'm considering creating my own historical datafiles by saving eSignal data.
Aaron Schindler
Schindler Trading
Quote from wincorp:
Hi Stephen,
Do you need to sign up for their API in order to get the tick data?
Thanks,
Tom
Quote from schan:
Hi Chuck,
You don't need the API to get tick data, if you have a third party program that can already connect to their software.
The API is just for developers. For esignal I think the api is free, while DTN costs $300, but their monthly fee is cheaper.
The DTN API for is fairly straightforward. You can use C/Java/VB/Python to open a a tcpip socket connection. You send a text request specifying the symbol, timescale, bars. And you let'er rip... gobs of tick data comes back and you write it to the hard drive.
If you are interested, I can send you my program.
Stephen