-
Notifications
You must be signed in to change notification settings - Fork 0
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Dynamic chart #8
Comments
This source is useful for automatically updating the chart with data from Bitshares instance: |
Currently working on making it dynamic with user input data: Next step is the second comment (look above): |
VALUES ALSO GET SUBMITTED ON PAGE REFRESH: plotly/dash#162
|
Current script does not update the chart because data gets appended to the list while you want to add/deduct the order size at a specific price. So, for example, an order gets filled of your initial setup and you add a new order at price X. The bar that represents price X needs to increase with Y amount (where Y amount is order size). "The bar" in the above sentence represents 'current'!! DONE! |
Both initial and current bar height increase while you only want current bar height to increase. This could be solved by this small script:
|
Create a dynamic function that inserts data into the existing bar chart (adds data to stacked part). In an ideal scenario, it would be realtime: Dash Core Components
The text was updated successfully, but these errors were encountered: