list_data_files
Show available historical data files on your OctoBot instance with exchange, symbols, time frames, and dates to help select datasets for backtests or cleanup.
Instructions
List every historical data file already present on the OctoBot instance.
Tier-B (ADR-0008): scrapes the bare GET /data_collector page -- see
this module's docstring/_parse_data_collector_html for the verified
DOM shape and fail-loud assumptions. Idempotent, read-only, not
confirm-gated.
Output: {"files": [{"file": str, "exchange": str, "symbols": [str], "time_frames": [str], "is_full": bool, "start_date": str|null, "end_date": str|null, "date": str|null, "candles_length": int|null}]}.
file is the authoritative identifier to pass to delete_data_file.
An empty files list is a legitimate result (no data files exist yet)
-- distinct from DataFileScrapeContractBrokenError, which means the
scrape itself is broken, never silently returned as an empty/partial
list (NFR-13).
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
No arguments | |||