I can’t seem to find a good pointer of whether what I want to achieve with Plot.ly is possible. I have the following Pandas dataframe:
From this dataframe I want to create a stacked area chart, where I show the total_value (y axis) and the date (x_axis).
This should be grouped by the account and name. There are several accounts that have the same names (assets in a portfolio). Assets (name column) can be added later automatically and I don’t want to change the code for that.
In my opinion I have to be able to automatically create traces, based on the account and name column.
How would this be possible?
Thanks a lot!