Skip to content

Commit a0b42c4

Browse files
authored
Merge pull request #216 from hummingbot/fix/timestamp-handling
fix/timestamp-handling
2 parents 72ce949 + 380627d commit a0b42c4

File tree

1 file changed

+1
-1
lines changed
  • frontend/pages/orchestration/portfolio

1 file changed

+1
-1
lines changed

frontend/pages/orchestration/portfolio/app.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -139,7 +139,7 @@ def account_history_to_df(history):
139139
# Plot the evolution of the portfolio over time
140140
if len(filtered_account_history) > 0:
141141
account_history_df = account_history_to_df(filtered_account_history)
142-
account_history_df['timestamp'] = pd.to_datetime(account_history_df['timestamp'])
142+
account_history_df['timestamp'] = pd.to_datetime(account_history_df['timestamp'], format='ISO8601')
143143

144144
# Aggregate the value of the portfolio over time
145145
portfolio_evolution_df = account_history_df.groupby('timestamp')['value'].sum().reset_index()

0 commit comments

Comments
 (0)