Alpha Vantage · JSON Structure

Alpha Vantage Time_Series_Data Structure

Stock OHLCV time series data point

Type: object Properties: 5
FintechMarket DataStocksFXCryptoCommoditiesEconomic IndicatorsTechnical IndicatorsFundamentalsNewsSentimentFree

Alpha Vantage Time_Series_Data Structure is a JSON Structure definition published by Alpha Vantage, describing 5 properties. It conforms to the https://json-structure.org/meta/core/v0/# meta-schema.

Properties

open high low close volume

Meta-schema: https://json-structure.org/meta/core/v0/#

JSON Structure

Raw ↑
{
  "$schema": "https://json-structure.org/meta/core/v0/#",
  "$id": "https://www.alphavantage.co/structures/alpha-vantage-time_series_data-structure.json",
  "title": "TimeSeriesData",
  "type": "object",
  "description": "Stock OHLCV time series data point",
  "properties": {
    "open": {
      "type": "xs:string",
      "description": "Opening price for the period"
    },
    "high": {
      "type": "xs:string",
      "description": "Highest price for the period"
    },
    "low": {
      "type": "xs:string",
      "description": "Lowest price for the period"
    },
    "close": {
      "type": "xs:string",
      "description": "Closing price for the period"
    },
    "volume": {
      "type": "xs:string",
      "description": "Trading volume for the period"
    }
  }
}