getForexHistoricalLightChart
Retrieve historical forex price data for specific currency pairs and date ranges to analyze long-term trends and enhance trading strategies.
Instructions
Access historical end-of-day forex prices with the Historical Forex Light Chart API. Track long-term price trends across different currency pairs to enhance your trading and analysis strategies.
Input Schema
Name | Required | Description | Default |
---|---|---|---|
from | No | Start date (YYYY-MM-DD) | |
symbol | Yes | Forex pair symbol (e.g., EURUSD) | |
to | No | End date (YYYY-MM-DD) |
Input Schema (JSON Schema)
{
"$schema": "http://json-schema.org/draft-07/schema#",
"additionalProperties": false,
"properties": {
"from": {
"description": "Start date (YYYY-MM-DD)",
"type": "string"
},
"symbol": {
"description": "Forex pair symbol (e.g., EURUSD)",
"type": "string"
},
"to": {
"description": "End date (YYYY-MM-DD)",
"type": "string"
}
},
"required": [
"symbol"
],
"type": "object"
}