XTQuantAI

MIT License
19
  • Apple

create_chart_panel

创建图表面板,显示指定股票的技术指标

Input Schema

NameRequiredDescriptionDefault
codesYes股票代码列表,用逗号分隔,例如 000001.SZ,600519.SH
indicatorsNo指标名称,例如 ma, macd, kdj 等ma
paramsNo指标参数,用逗号分隔,例如 5,10,205,10,20
periodNo周期,例如 1d, 1m, 5m 等1d

Input Schema (JSON Schema)

{ "properties": { "codes": { "description": "股票代码列表,用逗号分隔,例如 000001.SZ,600519.SH", "type": "string" }, "indicators": { "default": "ma", "description": "指标名称,例如 ma, macd, kdj 等", "type": "string" }, "params": { "default": "5,10,20", "description": "指标参数,用逗号分隔,例如 5,10,20", "type": "string" }, "period": { "default": "1d", "description": "周期,例如 1d, 1m, 5m 等", "type": "string" } }, "required": [ "codes" ], "type": "object" }