declare function partialProfit(symbol: string, percentToClose: number): Promise<boolean>;
Executes partial close at profit level (moving toward TP).
Closes a percentage of the active pending position at profit. Price must be moving toward take profit (in profit direction).
Automatically detects backtest/live mode from execution context.
| Parameter | Description |
|---|---|
symbol |
Trading pair symbol |
percentToClose |
Percentage of position to close (0-100, absolute value) |