action polygon_get_v1_historic_forex_from_to_date { label: "Historic Forex Ticks" description: "Get historic ticks for a currency pair. Example for **USD/JPY** the from would be **USD** and to would be **JPY**. The date formatted like **2017-6-22**\n" provider: polygon method: GET path: "/v1/historic/forex/{from}/{to}/{date}" encoding: json input: { type: "object" properties: { date: { type: "string" } from: { type: "string" } limit: { type: "string" } offset: { type: "string" } to: { type: "string" } } required: ["date", "from", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }