action tradematic_get_marketdata_symbols_symbolid_histdata { label: "Get historical data for instrument" description: "Get historical data for instrument" provider: tradematic method: GET path: "/marketdata/symbols/{symbolid}/histdata" encoding: json input: { type: "object" properties: { from: { type: "string" } symbolid: { type: "string" } tf: { type: "string" } to: { type: "string" } } required: ["from", "symbolid", "tf", "to"] additionalProperties: false } output: { type: "object" additionalProperties: true } }