diff --git a/frontend/pages/orchestration/portfolio/app.py b/frontend/pages/orchestration/portfolio/app.py index eefc60f6..6759e6eb 100644 --- a/frontend/pages/orchestration/portfolio/app.py +++ b/frontend/pages/orchestration/portfolio/app.py @@ -139,7 +139,7 @@ def account_history_to_df(history): # Plot the evolution of the portfolio over time if len(filtered_account_history) > 0: account_history_df = account_history_to_df(filtered_account_history) - account_history_df['timestamp'] = pd.to_datetime(account_history_df['timestamp']) + account_history_df['timestamp'] = pd.to_datetime(account_history_df['timestamp'], format='ISO8601') # Aggregate the value of the portfolio over time portfolio_evolution_df = account_history_df.groupby('timestamp')['value'].sum().reset_index()