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

# useDaily

> Hook to retrieve daily trading volume for the current account over a date range.

Get daily user volume

* [Tech docs](/sdks/tech-doc/modules/orderly_network_hooks#usedaily)

### Example

```ts theme={null}
const { data } = useDaily({
  startDate: new Date(Date.now() - 86400000 * 40), // 40 days ago
  endDate: new Date() // today
});
```
