# ExchangeStatus


## Properties

Name | Type | Description | Notes
------------ | ------------- | ------------- | -------------
**exchange_active** | **boolean** | False if the core Kalshi exchange is no longer taking any state changes at all. This includes but is not limited to trading, new users, and transfers. True unless we are under maintenance. | [default to undefined]
**trading_active** | **boolean** | True if we are currently permitting trading on the exchange. This is true during trading hours and false outside exchange hours. Kalshi reserves the right to pause at any time in case issues are detected. | [default to undefined]
**exchange_estimated_resume_time** | **string** | Estimated downtime for the current exchange maintenance window. However, this is not guaranteed and can be extended. | [optional] [default to undefined]

## Example

```typescript
import { ExchangeStatus } from 'kalshi-typescript';

const instance: ExchangeStatus = {
    exchange_active,
    trading_active,
    exchange_estimated_resume_time,
};
```

[[Back to Model list]](../README.md#documentation-for-models) [[Back to API list]](../README.md#documentation-for-api-endpoints) [[Back to README]](../README.md)
