paradex_account_fills
Analyze executed trades to evaluate performance, execution quality, and realized PnL. Calculate VWAP, review slippage, track commissions, and reconcile order execution details for informed trading decisions.
Instructions
Analyze your executed trades to evaluate performance and execution quality.
Use this tool when you need to:
- Review your trading history across specific markets
- Calculate your average entry price for multi-fill positions
- Analyze execution quality compared to intended prices
- Track realized PnL from completed trades
- Verify order execution details for reconciliation
Detailed fill information is essential for performance analysis and
understanding how your orders were actually executed.
Example use cases:
- Calculating volume-weighted average price (VWAP) of your entries
- Analyzing execution slippage from your intended prices
- Reviewing trade history for tax or accounting purposes
- Tracking commission costs across different markets
- Identifying which of your strategies produced the best execution
Input Schema
Name | Required | Description | Default |
---|---|---|---|
end_unix_ms | Yes | End time in unix milliseconds. | |
market_id | Yes | Filter by market ID. | |
start_unix_ms | Yes | Start time in unix milliseconds. |
Input Schema (JSON Schema)
{
"properties": {
"end_unix_ms": {
"description": "End time in unix milliseconds.",
"title": "End Unix Ms",
"type": "integer"
},
"market_id": {
"description": "Filter by market ID.",
"title": "Market Id",
"type": "string"
},
"start_unix_ms": {
"description": "Start time in unix milliseconds.",
"title": "Start Unix Ms",
"type": "integer"
}
},
"required": [
"market_id",
"start_unix_ms",
"end_unix_ms"
],
"title": "get_account_fillsArguments",
"type": "object"
}