I have to chart out StockPrice ticks (got every minute worstcase or 15 seconds bestcase) in Realtime using C# charting.
But for now I have a file containing the historical prices, and am using it to do analysis.
At every price tick, there is a analysis function which outputs special decision data.
I want to chart every tick and then this decision data also which occurs about every 100 ticks.
Problem i am facing is
My program is consuming ticks very fast and chart is having problem in charting hugedata.
I took sample of Realtime charting from MS, but it gets filled up pretty fast and only way i can get a useful visual experience is by removing older points (that is the exact thing done in Microsoft provided sample).
But Can i have a scrollable chart where i can select a window of price ticks to be displayed. Rest all is not displayed.