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

# TradingPeriod

> Enum for top-traders period: DAY, WEEK, MONTH, YEAR.

### TypeScript shape

```ts theme={null}
type TradingPeriod =
  | 'DAY'
  | 'WEEK'
  | 'MONTH'
  | 'YEAR';
```

<ResponseField name="DAY" type="enum">Last 24 hours.</ResponseField>
<ResponseField name="WEEK" type="enum">Last 7 days.</ResponseField>
<ResponseField name="MONTH" type="enum">Last 30 days.</ResponseField>
<ResponseField name="YEAR" type="enum">Last 365 days.</ResponseField>
