get_day_trades
Retrieve day trade activity for a specific portfolio using portfolio ID, with options to paginate results for efficient data access through the Paper MCP Server.
Instructions
Get day trade activity for a portfolio
Input Schema
Name | Required | Description | Default |
---|---|---|---|
limit | No | Results per page (default: 50) | |
page | No | Page number (default: 1) | |
portfolioId | Yes | Portfolio ID |
Input Schema (JSON Schema)
{
"properties": {
"limit": {
"description": "Results per page (default: 50)",
"type": "number"
},
"page": {
"description": "Page number (default: 1)",
"type": "number"
},
"portfolioId": {
"description": "Portfolio ID",
"type": "string"
}
},
"required": [
"portfolioId"
],
"type": "object"
}