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:
+2
-2
@@ -21,13 +21,13 @@ Usage
|
|||||||
|
|
||||||
# Get list of accounts in the file
|
# Get list of accounts in the file
|
||||||
accounts = get_icmarkets_accounts(file_bytes)
|
accounts = get_icmarkets_accounts(file_bytes)
|
||||||
# → ['11586098', '11586099']
|
# → ['123456789', '987654321']
|
||||||
|
|
||||||
# Parse all accounts (returns combined DataFrame)
|
# Parse all accounts (returns combined DataFrame)
|
||||||
df = parse_icmarkets_xlsx(file_bytes)
|
df = parse_icmarkets_xlsx(file_bytes)
|
||||||
|
|
||||||
# Parse a specific account
|
# 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)
|
Output columns (normalised to match mt5_parser schema)
|
||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
|
|||||||
Reference in New Issue
Block a user