I want to make my own desktop stock simulator replay of historical stock price moves.
I have a sample dataset of time-series price data available in CSV format.
Essentially, I just need to render this data on canvas. The main point is to accumulate more trading experience in less time. A user can speed trade thru sessions for entire year in a week!
I made a gif of another program made in Delphi(not open-source) to demonstrate the program I want to build.
The high quality tick data shows change every milisecond, so it has more fields than just “open high low.close,volume”, so i guess will need some milisecond clock counter to reflect every change in price.
This is what I want it to look like:
It seems canvas.js only does static rendering, drawing, I want to pause the “price”, start again, and speed up how fast\slow it draws candlesticks.
The canvas should have these tech features :
1)automatic scaling to fit in entire price range when price moves out of bounds of the canvas – all bars should adjust their size accordingly,
zoom in\out
2)speed adjusting slider to slow down/increase the drawing speed
Can canvasjs help me implement all these features? I can pause stock price move, adjust the speed of movements, slow it down etc.
Go back or forward bar by bar.
-
This topic was modified 6 years, 8 months ago by erjcan.
-
This topic was modified 6 years, 8 months ago by erjcan.