paradex_vault_positions
Monitor and manage open trading positions for a vault by tracking unrealized P&L, liquidation prices, margin requirements, and position details to support informed risk management and trade decisions.
Instructions
Monitor active trading positions to track performance and manage risk.
Use this tool when you need to:
- Get a complete view of all open positions for a vault
- Monitor unrealized P&L across all positions
- Check liquidation prices and margin requirements
- Assess position sizing and leverage across markets
- Track entry prices and position duration
Position monitoring is fundamental to risk management and provides
the necessary information for trade management decisions.
Example use cases:
- Checking the current status of all open trades
- Monitoring unrealized profit/loss across positions
- Assessing liquidation risk during market volatility
- Comparing performance across different markets
- Planning adjustments to position sizes or leverage
Input Schema
Name | Required | Description | Default |
---|---|---|---|
vault_address | Yes | The address of the vault to get positions for. |
Input Schema (JSON Schema)
{
"properties": {
"vault_address": {
"description": "The address of the vault to get positions for.",
"title": "Vault Address",
"type": "string"
}
},
"required": [
"vault_address"
],
"title": "get_vault_positionsArguments",
"type": "object"
}