kalshi-typescript
Version:
OpenAPI client for kalshi-typescript
44 lines (39 loc) • 1.35 kB
text/typescript
/* tslint:disable */
/* eslint-disable */
/**
* Kalshi Trade API Manual Endpoints
* Manually defined OpenAPI spec for endpoints being migrated to spec-first approach
*
* The version of the OpenAPI document: 3.11.0
*
*
* NOTE: This class is auto generated by OpenAPI Generator (https://openapi-generator.tech).
* https://openapi-generator.tech
* Do not edit the class manually.
*/
export interface PriceDistributionHistorical {
/**
* Price of the first trade during the candlestick period (in dollars). Null if no trades occurred.
*/
'open': string | null;
/**
* Lowest trade price during the candlestick period (in dollars). Null if no trades occurred.
*/
'low': string | null;
/**
* Highest trade price during the candlestick period (in dollars). Null if no trades occurred.
*/
'high': string | null;
/**
* Price of the last trade during the candlestick period (in dollars). Null if no trades occurred.
*/
'close': string | null;
/**
* Volume-weighted average price during the candlestick period (in dollars). Null if no trades occurred.
*/
'mean': string | null;
/**
* Close price from the previous candlestick period (in dollars). Null if this is the first candlestick or no prior trade exists.
*/
'previous': string | null;
}