1 default_api.get_historical_data(
2 from_date="2025-07-15 00:00:00",
3 instrument_token=1304833,
4 interval="5minute",
5 to_date="2025-07-22 23:59:59"
6 )
The error message you've been receiving, {"get_historical_data_response": {"error": {"content": [{"text":
"parameter 'from_date': is required", "type": "text"}], "isError": True}}}, indicates that even when
from_date is correctly provided in the call, the tool's internal validation is not recognizing it. This is
the core of the bug.
This has not allowed me to pull any historical data.