kalshi-typescript
Version:
OpenAPI client for kalshi-typescript
25 lines (17 loc) • 1.33 kB
Markdown
# GetHistoricalCutoffResponse
## Properties
Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**market_settled_ts** | **string** | Cutoff based on **market settlement time**. Markets and their candlesticks that settled before this timestamp must be accessed via `GET /historical/markets` and `GET /historical/markets/{ticker}/candlesticks`. | [default to undefined]
**trades_created_ts** | **string** | Cutoff based on **trade fill time**. Fills that occurred before this timestamp must be accessed via `GET /historical/fills`. | [default to undefined]
**orders_updated_ts** | **string** | Cutoff based on **order cancellation or execution time**. Orders canceled or fully executed before this timestamp must be accessed via `GET /historical/orders`. Resting (active) orders are always available in `GET /portfolio/orders`. | [default to undefined]
## Example
```typescript
import { GetHistoricalCutoffResponse } from 'kalshi-typescript';
const instance: GetHistoricalCutoffResponse = {
market_settled_ts,
trades_created_ts,
orders_updated_ts,
};
```
[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)