We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent f77d848 commit d1cec12Copy full SHA for d1cec12
ftui/screens/dashboard_screen.py
@@ -286,7 +286,7 @@ def update_dashboard_all_open_trades(self):
286
all_open_df = pd.DataFrame()
287
for n, cl in client_dict.items():
288
# if any bots are in futures mode, add leverage column
289
- tm = cl.get_client_config().get("trading_mode")
+ tm = cl.get_client_config().get("trading_mode", "spot")
290
if tm != "spot":
291
trading_mode = tm
292
if cl.name in client_dfs and "op_data" in client_dfs[cl.name]:
0 commit comments