Comment on default account load order

windows_testing_volume
Tyler Goodlet 2021-10-12 10:34:54 -04:00
parent 3efe3b38b8
commit 96c8908e9c
1 changed files with 4 additions and 1 deletions

View File

@ -571,7 +571,10 @@ async def open_order_mode(
# first account listed is the one we select at startup # first account listed is the one we select at startup
# (aka order based selection). # (aka order based selection).
pp_account = next(iter(accounts.keys())) if accounts else 'paper' pp_account = next(
# choose first account based on line order from `brokers.toml`.
iter(accounts.keys())
) if accounts else 'paper'
# NOTE: requires the backend exactly specifies # NOTE: requires the backend exactly specifies
# the expected symbol key in its positions msg. # the expected symbol key in its positions msg.