{
"type": "object",
"properties": {
"PCID": {
"type": "string",
"description": "Pink Connect ID for the authenticated connection"
},
"symbol": {
"type": "string",
"description": "Forex pair symbol (e.g. GBPUSD)"
},
"multiplier": {
"type": "integer",
"description": "Time multiplier (e.g. 1, 5, 15)"
},
"timespan": {
"type": "string",
"description": "Time unit: minute, hour, day, week, or month",
"enum": [
"minute",
"hour",
"day",
"week",
"month"
]
},
"from": {
"type": "string",
"description": "Start date in YYYY-MM-DD format"
},
"to": {
"type": "string",
"description": "End date in YYYY-MM-DD format"
},
"limit": {
"type": "integer",
"description": "Maximum number of results"
},
"sort": {
"type": "string",
"description": "Sort order by timestamp: asc or desc",
"enum": [
"asc",
"desc"
]
}
},
"required": [
"PCID",
"symbol",
"multiplier",
"timespan",
"from",
"to"
]
}