Pendle · Schema
OHLCVDataPoint
Web3DeFiYield TokenizationCryptoPrincipal TokensYield TokensAMMLiquidity Pools
Properties
| Name | Type | Description |
|---|---|---|
| time | string | Timestamp of the OHLCV data point |
| open | number | Opening price at the start of the time period |
| high | number | Highest price during the time period |
| low | number | Lowest price during the time period |
| close | number | Closing price at the end of the time period |
| volume | number | Trading volume during the time period |
JSON Schema
{
"$schema": "http://json-schema.org/draft-07/schema#",
"title": "OHLCVDataPoint",
"type": "object",
"properties": {
"time": {
"format": "date-time",
"type": "string",
"description": "Timestamp of the OHLCV data point"
},
"open": {
"type": "number",
"description": "Opening price at the start of the time period"
},
"high": {
"type": "number",
"description": "Highest price during the time period"
},
"low": {
"type": "number",
"description": "Lowest price during the time period"
},
"close": {
"type": "number",
"description": "Closing price at the end of the time period"
},
"volume": {
"type": "number",
"description": "Trading volume during the time period"
}
},
"required": [
"time",
"open",
"high",
"low",
"close",
"volume"
]
}