changedOutput schema / (root)
Previous value: -nullNew value: +{
+ "description": "Daily OHLC candlestick data",
+ "properties": {
+ "Aggregated": {
+ "description": "Whether data is aggregated",
+ "type": "boolean"
+ },
+ "Data": {
+ "description": "Array of OHLC candles",
+ "items": {
+ "properties": {
+ "close": {
+ "description": "Closing price",
+ "type": "number"
+ },
+ "high": {
+ "description": "Highest price",
+ "type": "number"
+ },
+ "low": {
+ "description": "Lowest price",
+ "type": "number"
+ },
+ "open": {
+ "description": "Opening price",
+ "type": "number"
+ },
+ "time": {
+ "description": "Unix timestamp",
+ "type": "number"
+ },
+ "volumefrom": {
+ "description": "Volume in base coin",
+ "type": "number"
+ },
+ "volumeto": {
+ "description": "Volume in target coin",
+ "type": "number"
+ }
+ },
+ "type": "object"
+ },
+ "type": "array"
+ },
+ "Response": {
+ "description": "Response status",
+ "type": "string"
+ },
+ "TimeFrom": {
+ "description": "Start timestamp of data",
+ "type": "number"
+ },
+ "TimeTo": {
+ "description": "End timestamp of data",
+ "type": "number"
+ },
+ "Type": {
+ "description": "Data type",
+ "type": "string"
+ }
+ },
+ "type": "object"
+}