---
title: "queryTremor(from:to:withHandler:)"
framework: coremotion
role: symbol
role_heading: Instance Method
path: "coremotion/cmmovementdisordermanager/querytremor(from:to:withhandler:)"
---

# queryTremor(from:to:withHandler:)

Query for tremor results from the provided time interval.

## Declaration

```swift
func queryTremor(from fromDate: Date, to toDate: Date, withHandler handler: @escaping CMTremorResultHandler)
```

## Parameters

- `fromDate`: The start date and time of the query. The start must be within the last seven days.
- `toDate`: The end date and time of the query. The end must be within the last seven days, and must be after the start date.
- `handler`: A block for handling the tremor results returned by the query.

## Discussion

Discussion Use this method to asynchronously query for tremor results recorded by the monitorKinesias(forDuration:) method. The movement disorder manager keeps tremor results for only seven days after the time of recording. After the manager retrieves the queried results, it calls your handler block from an anonymous background queue. Provide a completion handler to access and process these results.

## See Also

### Related Documentation

- [monitorKinesias(forDuration:)](coremotion/cmmovementdisordermanager/monitorkinesias(forduration:).md)

### Querying for Movement Disorders

- [CMTremorResultHandler](coremotion/cmtremorresulthandler.md)
- [queryDyskineticSymptom(from:to:withHandler:)](coremotion/cmmovementdisordermanager/querydyskineticsymptom(from:to:withhandler:).md)
- [CMDyskineticSymptomResultHandler](coremotion/cmdyskineticsymptomresulthandler.md)
- [lastProcessedDate()](coremotion/cmmovementdisordermanager/lastprocesseddate().md)
