Real-time stock market application
Posted
by
Sam
on Programmers
See other posts from Programmers
or by Sam
Published on 2011-06-11T06:40:43Z
Indexed on
2012/03/31
11:40 UTC
Read the original article
Hit count: 302
database-development
I'm an amateur programmer. I'd like to develop a software application (like Tradestation), to analyse real-time market data. Please teach me if the following approach is correct, ie the procedures, knowledge or software needed etc:
Use a DB to read the real-time feed from data provider: what should be the right DB to use? I know it should be a time serious one. Can I use SQL, Mysql, or others? What database can receive real-time data feed? Do I need to configure the DB to do this?
If the real-time data is in ASCII form, how can it be converted to those that can be read by the DB and my application? Should I have to write codes or just use some add-ins? What kind of add-in are needed?
How should I code the program to retrieve the changing data from the DB so that the analysis software screen data can also change asynchronously? (like the RTD in excel)
Which aspects of programming do I need to learn to develop the above?
Are there web resources/ books I can refer to for more information?
© Programmers or respective owner