Interface IHeatmapStatistics

Portfolio heatmap statistics structure. Contains aggregated data for all symbols in the portfolio.

interface IHeatmapStatistics {
    portfolioSharpeRatio: number;
    portfolioTotalPnl: number;
    portfolioTotalTrades: number;
    symbols: IHeatmapRow[];
    totalSymbols: number;
}

Properties

portfolioSharpeRatio: number

Portfolio-wide Sharpe Ratio

portfolioTotalPnl: number

Portfolio-wide total PNL

portfolioTotalTrades: number

Portfolio-wide total trades

symbols: IHeatmapRow[]

Array of symbol statistics

totalSymbols: number

Total number of symbols tracked