Interface ISizingCalculateParamsFixedPercentage

Parameters for fixed percentage sizing calculation.

interface ISizingCalculateParamsFixedPercentage {
    accountBalance: number;
    method: "fixed-percentage";
    priceOpen: number;
    priceStopLoss: number;
    symbol: string;
}

Hierarchy

  • ISizingCalculateParamsBase
    • ISizingCalculateParamsFixedPercentage

Properties

accountBalance: number

Current account balance

method: "fixed-percentage"
priceOpen: number

Planned entry price

priceStopLoss: number

Stop-loss price

symbol: string

Trading pair symbol (e.g., "BTCUSDT")