tool-nasdaq-candles

Compare original and translation side by side

🇺🇸

Original

English
🇨🇳

Translation

Chinese

nasdaq_candles (Nasdaq OHLCV)

nasdaq_candles(纳斯达克OHLCV数据)

When to use

使用场景

  • Pull short-horizon OHLCV for quick trend context or charting.
  • 拉取短周期OHLCV数据,用于快速了解趋势背景或制图。

Parameters

参数

  • symbol
    (string, required): e.g.
    "AAPL"
    .
  • range
    (string, optional):
    1d | 5d | 1mo
    (default
    1d
    ).
  • interval
    (string, optional):
    1m | 5m | 30m
    (default
    1m
    ).
    • For
      5d
      /
      1mo
      , interval is effectively ignored (Nasdaq returns daily-ish points).
  • symbol
    (字符串,必填):例如
    "AAPL"
  • range
    (字符串,可选):
    1d | 5d | 1mo
    (默认值为
    1d
    )。
  • interval
    (字符串,可选):
    1m | 5m | 30m
    (默认值为
    1m
    )。
    • 当选择
      5d
      /
      1mo
      时,interval参数实际上会被忽略(纳斯达克会返回近似每日的数据点)。

Examples

示例

1-day minute-ish candles:
json
{ "name": "nasdaq_candles", "params": { "symbol": "AAPL", "range": "1d", "interval": "5m" } }
5-day:
json
{ "name": "nasdaq_candles", "params": { "symbol": "AAPL", "range": "5d" } }
1天分钟级蜡烛图:
json
{ "name": "nasdaq_candles", "params": { "symbol": "AAPL", "range": "1d", "interval": "5m" } }
5天数据:
json
{ "name": "nasdaq_candles", "params": { "symbol": "AAPL", "range": "5d" } }

Output

输出

  • Returns:
    { candles: { t,o,h,l,c,v,meta }, meta: { cached,durationMs,timeoutMs } }
  • Rendered:
    • Meta
      (cached/durationMs/points)
    • Last Candle
      (json: last bar only; full arrays are still in
      candles
      )
  • 返回格式:
    { candles: { t,o,h,l,c,v,meta }, meta: { cached,durationMs,timeoutMs } }
  • 渲染内容:
    • Meta
      (缓存状态/请求时长/数据点数)
    • Last Candle
      (仅最后一根K线的JSON数据;完整数据数组仍存储在
      candles
      中)

Notes

注意事项

  • This tool is optimized for “get me data quickly”; for heavy analytics, you probably want a dedicated market data provider later.
  • targetWindow
    :
    des
  • 该工具专为“快速获取数据”优化;若需进行深度分析,后续可能需要使用专业的市场数据提供商。
  • targetWindow
    :
    des