UNPKG

kalshi-typescript

Version:
31 lines (23 loc) 1.42 kB
# PriceDistributionHistorical ## Properties Name | Type | Description | Notes ------------ | ------------- | ------------- | ------------- **open** | **string** | Price of the first trade during the candlestick period (in dollars). Null if no trades occurred. | [default to undefined] **low** | **string** | Lowest trade price during the candlestick period (in dollars). Null if no trades occurred. | [default to undefined] **high** | **string** | Highest trade price during the candlestick period (in dollars). Null if no trades occurred. | [default to undefined] **close** | **string** | Price of the last trade during the candlestick period (in dollars). Null if no trades occurred. | [default to undefined] **mean** | **string** | Volume-weighted average price during the candlestick period (in dollars). Null if no trades occurred. | [default to undefined] **previous** | **string** | Close price from the previous candlestick period (in dollars). Null if this is the first candlestick or no prior trade exists. | [default to undefined] ## Example ```typescript import { PriceDistributionHistorical } from 'kalshi-typescript'; const instance: PriceDistributionHistorical = { open, low, high, close, mean, previous, }; ``` [[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)