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.
1 parent fb8e60e commit de0e0cdCopy full SHA for de0e0cd
1 file changed
test.py
@@ -47,11 +47,11 @@
47
print(f"Company Name: {quote.company_name}")
48
49
# Get positions and print them out for an account.
50
-positions = ft_accounts.get_positions(account=ft_accounts.account_numbers[1])
+positions = ft_accounts.get_positions(account=ft_accounts.account_numbers[0])
51
print(positions)
52
for item in positions["items"]:
53
print(
54
- f"Quantity {item['quantity']} of security {item['symbol']} held in account {ft_accounts.account_numbers[1]}"
+ f"Quantity {item['quantity']} of security {item['symbol']} held in account {ft_accounts.account_numbers[0]}"
55
)
56
57
# Get account history (past 200)
0 commit comments