Hi,
I want to know if the following is possible with Dash:
I want to present a simple table where the rows are instrument names such as currency pairs e.g. EURUSD, USDJPY, GBPUSD, USDCHF and the columns are values like BID,ASK, CHANGE, TIME, CONTRIBUTOR
I have looked at your web-trader example which reads the values from a CSV and updates the prices at timed intervals.
However, I want to update the prices in real time - as I receive tick updates from my realtime feed asynchronously - not at a time interval.
Is the above possible easily e.g. by just updating the relevant cell in a dataframe and thereby updating the Dash table entry for that particular value?
The feed I plan to get the data from is bandwidth optimises so only a few updates a second are received - so not too worried about performance.
Or am I going to have to update the dataframe as and when ticks arrive - but continue to update the data table at time intervals - so there may be a delay between a tick and the tick being reflected in the data table?
Thank you!