The Idea is to show different information related to the stock market, it could be the S&P 500 value or Oil price, Gold, etc. and % variation or different Company share, etc. or the Portfolio of an investor or even some news.
I think It should be some info that is stored in a DataFrame-
For simple components, where you don’t need to map events, it’s actually a pretty straight forward process I just made a thin wrapper around the aforementioned component,
import dash
import dash_html_components as html
from dash_extensions import Ticker
app = dash.Dash(__name__)
app.layout = html.Div(Ticker([html.Div("Some text")], direction="toRight"))
if __name__ == '__main__':
app.run_server()