We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
2 parents 72ce949 + 380627d commit a0b42c4Copy full SHA for a0b42c4
frontend/pages/orchestration/portfolio/app.py
@@ -139,7 +139,7 @@ def account_history_to_df(history):
139
# Plot the evolution of the portfolio over time
140
if len(filtered_account_history) > 0:
141
account_history_df = account_history_to_df(filtered_account_history)
142
- account_history_df['timestamp'] = pd.to_datetime(account_history_df['timestamp'])
+ account_history_df['timestamp'] = pd.to_datetime(account_history_df['timestamp'], format='ISO8601')
143
144
# Aggregate the value of the portfolio over time
145
portfolio_evolution_df = account_history_df.groupby('timestamp')['value'].sum().reset_index()
0 commit comments