Bitstamp · Schema

OhlcEntry

JSON Schema for Bitstamp OhlcEntry

CryptocurrencyExchangeTradingBitcoinEthereumSpot TradingWebSocketMarket DataOrder ManagementFinance

Properties

Name Type Description
timestamp string Unix timestamp
open string Opening price
high string Highest price
low string Lowest price
close string Closing price
volume string Volume traded
View JSON Schema on GitHub

JSON Schema

ohlcentry.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "title": "OhlcEntry",
  "description": "JSON Schema for Bitstamp OhlcEntry",
  "type": "object",
  "properties": {
    "timestamp": {
      "type": "string",
      "description": "Unix timestamp"
    },
    "open": {
      "type": "string",
      "description": "Opening price"
    },
    "high": {
      "type": "string",
      "description": "Highest price"
    },
    "low": {
      "type": "string",
      "description": "Lowest price"
    },
    "close": {
      "type": "string",
      "description": "Closing price"
    },
    "volume": {
      "type": "string",
      "description": "Volume traded"
    }
  }
}