fix: remove real account numbers from codebase

icmarkets_parser.py:
- Replaced real account numbers in docstring examples with
  generic placeholders (123456789, 987654321)

view_live_mt5_eas.py:
- Replaced real account numbers in FTP setup guide CLI
  examples with generic placeholders (123456, 789012)
This commit is contained in:
unknown
2026-04-20 10:32:14 +10:00
parent ba91d8fd13
commit 59420e50a5
+2 -2
View File
@@ -21,13 +21,13 @@ Usage
# Get list of accounts in the file
accounts = get_icmarkets_accounts(file_bytes)
# → ['11586098', '11586099']
# → ['123456789', '987654321']
# Parse all accounts (returns combined DataFrame)
df = parse_icmarkets_xlsx(file_bytes)
# Parse a specific account
df = parse_icmarkets_xlsx(file_bytes, account="11586098")
df = parse_icmarkets_xlsx(file_bytes, account="123456789")
Output columns (normalised to match mt5_parser schema)
-------------------------------------------------------