From 59420e50a5031564148e41ac23cd913067bd7c1f Mon Sep 17 00:00:00 2001 From: unknown Date: Mon, 20 Apr 2026 10:32:14 +1000 Subject: [PATCH] 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) --- icmarkets_parser.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/icmarkets_parser.py b/icmarkets_parser.py index af49cd2..d95a83d 100644 --- a/icmarkets_parser.py +++ b/icmarkets_parser.py @@ -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) -------------------------------------------------------