analytics
Analyzes trading performance with insights on attribution, time analysis, and strategy optimization for better decision-making.
Install this skill
Security score
The analytics skill was audited on Feb 19, 2026 and we found 37 security issues across 1 threat category. Review the findings below before installing.
Categories Tested
Security Issues
Template literal with variable interpolation in command context
| 76 | console.log(`Total P&L: $${summary.totalPnl}`); |
Template literal with variable interpolation in command context
| 77 | console.log(`Win Rate: ${summary.winRate}%`); |
Template literal with variable interpolation in command context
| 78 | console.log(`Profit Factor: ${summary.profitFactor}`); |
Template literal with variable interpolation in command context
| 79 | console.log(`Sharpe Ratio: ${summary.sharpeRatio}`); |
Template literal with variable interpolation in command context
| 80 | console.log(`Total Trades: ${summary.totalTrades}`); |
Template literal with variable interpolation in command context
| 81 | console.log(`Avg Trade: $${summary.avgTrade}`); |
Template literal with variable interpolation in command context
| 82 | console.log(`Best Trade: $${summary.bestTrade}`); |
Template literal with variable interpolation in command context
| 83 | console.log(`Worst Trade: $${summary.worstTrade}`); |
Template literal with variable interpolation in command context
| 92 | console.log(`${source.name}:`); |
Template literal with variable interpolation in command context
| 93 | console.log(` P&L: $${source.pnl}`); |
Template literal with variable interpolation in command context
| 94 | console.log(` Trades: ${source.trades}`); |
Template literal with variable interpolation in command context
| 95 | console.log(` Win Rate: ${source.winRate}%`); |
Template literal with variable interpolation in command context
| 96 | console.log(` Contribution: ${source.contribution}%`); |
Template literal with variable interpolation in command context
| 114 | console.log(` ${hour.hour}:00 - Win: ${hour.winRate}%, Avg: $${hour.avgPnl}`); |
Template literal with variable interpolation in command context
| 119 | console.log(` ${hour.hour}:00 - Win: ${hour.winRate}%, Avg: $${hour.avgPnl}`); |
Template literal with variable interpolation in command context
| 129 | console.log(`${day.name}: $${day.pnl} (${day.trades} trades, ${day.winRate}% win)`); |
Template literal with variable interpolation in command context
| 140 | console.log(` ${bucket.holdTime}: ${bucket.avgReturn}% return`); |
Template literal with variable interpolation in command context
| 151 | console.log(`Edge ${bucket.min}-${bucket.max}%:`); |
Template literal with variable interpolation in command context
| 152 | console.log(` Trades: ${bucket.trades}`); |
Template literal with variable interpolation in command context
| 153 | console.log(` Win Rate: ${bucket.winRate}%`); |
Template literal with variable interpolation in command context
| 154 | console.log(` Avg P&L: $${bucket.avgPnl}`); |
Template literal with variable interpolation in command context
| 155 | console.log(` Realized Edge: ${bucket.realizedEdge}%`); |
Template literal with variable interpolation in command context
| 165 | console.log(`${bucket.name} liquidity:`); |
Template literal with variable interpolation in command context
| 166 | console.log(` Trades: ${bucket.trades}`); |
Template literal with variable interpolation in command context
| 167 | console.log(` Avg Slippage: ${bucket.avgSlippage}%`); |
Template literal with variable interpolation in command context
| 168 | console.log(` Fill Rate: ${bucket.fillRate}%`); |
Template literal with variable interpolation in command context
| 169 | console.log(` Avg P&L: $${bucket.avgPnl}`); |
Template literal with variable interpolation in command context
| 179 | console.log(`Avg Slippage: ${execution.avgSlippage}%`); |
Template literal with variable interpolation in command context
| 180 | console.log(`Fill Rate: ${execution.fillRate}%`); |
Template literal with variable interpolation in command context
| 181 | console.log(`Avg Fill Time: ${execution.avgFillTimeMs}ms`); |
Template literal with variable interpolation in command context
| 182 | console.log(`Partial Fills: ${execution.partialFillRate}%`); |
Template literal with variable interpolation in command context
| 183 | console.log(`Rejected Orders: ${execution.rejectionRate}%`); |
Template literal with variable interpolation in command context
| 192 | console.log(`${platform.name}:`); |
Template literal with variable interpolation in command context
| 193 | console.log(` P&L: $${platform.pnl}`); |
Template literal with variable interpolation in command context
| 194 | console.log(` Win Rate: ${platform.winRate}%`); |
Template literal with variable interpolation in command context
| 195 | console.log(` Avg Slippage: ${platform.avgSlippage}%`); |
Template literal with variable interpolation in command context
| 196 | console.log(` Best For: ${platform.strengths.join(', ')}`); |