Polygon · JSON Structure

Polygon Aggregate Bar Structure

Structural definition of an OHLC aggregate bar used across Polygon REST and WebSocket aggregate endpoints.

Type: object Properties: 9
FinanceFintechMarket DataStocksOptionsForexCryptoIndicesFuturesWebSocketsReal-timeHistoricalPublic APIs

Polygon Aggregate Bar Structure is a JSON Structure definition published by Polygon, describing 9 properties. It conforms to the https://json-structure.github.io/draft-00/schema meta-schema.

Properties

T v vw o c h l t n

Meta-schema: https://json-structure.github.io/draft-00/schema

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.github.io/draft-00/schema",
  "$id": "https://raw.githubusercontent.com/api-evangelist/polygon/main/json-structure/polygon-aggregate-bar-structure.json",
  "title": "Polygon Aggregate Bar (Structure)",
  "description": "Structural definition of an OHLC aggregate bar used across Polygon REST and WebSocket aggregate endpoints.",
  "type": "object",
  "properties": {
    "T": { "type": "string", "description": "Ticker symbol (only on grouped daily)." },
    "v": { "type": "number", "description": "Volume." },
    "vw": { "type": "number", "description": "Volume-weighted average price." },
    "o": { "type": "number", "description": "Open price." },
    "c": { "type": "number", "description": "Close price." },
    "h": { "type": "number", "description": "High price." },
    "l": { "type": "number", "description": "Low price." },
    "t": { "type": "integer", "description": "Window start (Unix ms)." },
    "n": { "type": "integer", "description": "Trade count." }
  }
}