...
- Efficiency and speed. The platform uses HTML5 based on canvas to ensure smooth chart loading and data processing.
- Snapshots. The snapshot feature is a handy tool that allows users to take and share chart snapshots anywhere.
- Customisation. The platform offers users the ability to personalise their workspace allowing traders to customise their own theme or choose between the predefined dark or white ones.
Serves up Pandas dataframes via the Django REST Framework
Django REST Pandas (DRP) provides a simple way to generate and serve pandas DataFrames via the Django REST Framework. The resulting API can serve up CSV (and a number of other formats for consumption by a client-side visualization tool like d3.js. The design philosophy of DRP enforces a strict separation between data and presentation. This keeps the implementation simple, but also has the nice side effect of making it trivial to provide the source data for your visualizations. This capability can often be leveraged by sending users to the same URL that your visualization code uses internally to load the data. ...