> ## Documentation Index
> Fetch the complete documentation index at: https://docs.dune.com/llms.txt
> Use this file to discover all available pages before exploring further.

# kalshi.trade_report

> Kalshi trade data — individual trades on event contracts with price, size, and execution details.

export const TableSample = ({tableName, tableSchema}) => <>
    <div className="hidden dark:block">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}&darkMode=true`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
    <div className="dark:hidden">
      <iframe src={`https://dune.com/embeds/3419983/5785629?table_schema_t6f0df=${tableSchema}&table_name_t6f0df=${tableName}`} style={{
  width: '100%',
  height: '500px',
  border: 'none',
  marginTop: '10px'
}} />
    </div>
  </>;

The `kalshi.trade_report` table contains daily aggregated trade data for Kalshi event contracts. Note that a single date and ticker can have multiple rows at different price points — this is not individual fill data.

## Table Schema

| Column             | Type        | Description                                      |
| ------------------ | ----------- | ------------------------------------------------ |
| `contracts_traded` | `DOUBLE`    | Number of contracts traded in the transaction    |
| `date`             | `VARCHAR`   | Date of the trade report                         |
| `price`            | `DOUBLE`    | Price at which the contracts were traded         |
| `report_ticker`    | `VARCHAR`   | Unique ticker identifier for the trade report    |
| `ticker_name`      | `VARCHAR`   | Name or description of the event contract ticker |
| `_updated_at`      | `TIMESTAMP` | Last update timestamp                            |
| `_ingested_at`     | `TIMESTAMP` | Ingestion timestamp                              |

## Table sample

<TableSample tableSchema="kalshi" tableName="trade_report" />
