ccxt_private_write
Perform authenticated private CCXT writes: place or cancel orders, set leverage, transfer, and withdraw using a configured named account.
Instructions
Invoke an authenticated mutating CCXT method using a configured named account. This covers order placement, cancellation, leverage, transfers, withdrawals, and private implicit write endpoints.
Input Schema
| Name | Required | Description | Default |
|---|---|---|---|
| args | No | Positional arguments for the target CCXT method, in the same order that CCXT expects them | |
| method | Yes | CCXT method name to invoke, including unified methods like 'fetchTicker' or implicit methods like 'publicGetTicker' | |
| params | No | Optional CCXT params object passed as the final argument when the target method accepts exchange-specific overrides | |
| account | Yes | Configured CCXT account name from the JSON file referenced by CCXT_CONFIG_PATH | |
| loadMarkets | No | Whether to call loadMarkets before invocation when market metadata is needed (default: true) | |
| reloadMarkets | No | Whether to force a fresh market reload instead of reusing cached exchange metadata (default: false) |