GMX · Schema

OhlcvCandle

DeFiPerpetual ExchangeDEXTradingLeverageLiquidity PoolsGLPGM TokensGLVArbitrumAvalancheWeb3

Properties

Name Type Description
close string
low string
high string
open string
timestamp number
View JSON Schema on GitHub

JSON Schema

OhlcvCandle.json Raw ↑
{
  "$schema": "http://json-schema.org/draft-07/schema#",
  "$id": "https://api-evangelist.github.io/gmx/json-schema/OhlcvCandle.json",
  "title": "OhlcvCandle",
  "properties": {
    "close": {
      "type": "string"
    },
    "low": {
      "type": "string"
    },
    "high": {
      "type": "string"
    },
    "open": {
      "type": "string"
    },
    "timestamp": {
      "type": "number",
      "format": "double"
    }
  },
  "required": [
    "close",
    "low",
    "high",
    "open",
    "timestamp"
  ],
  "type": "object"
}