Interactive Calculator
Confidence ScoreCalculator
Explore a simplified weighted-score model. Individual strategies use their own source code and thresholds, so this page is educational rather than a runtime source of truth.
Interactive demo โ not a live signalConfidence Score67
ModerateIllustrative band
This score does not trigger publication, alert delivery, or broker execution.
Load a Preset
Illustrative examples to explore the formula โ not historical signals.
RSI Scoreweight: 20%
75โ +15pts
15/20 max pts
MACD Scoreweight: 20%
70โ +14pts
14/20 max pts
EMA Scoreweight: 20%
65โ +13pts
13/20 max pts
Bollinger Scoreweight: 15%
60โ +9pts
9/15 max pts
Stochastic Scoreweight: 15%
72โ +11pts
11/15 max pts
Volume Scoreweight: 10%
55โ +6pts
6/10 max pts
Score Breakdown
(75 ร 0.20 + 70 ร 0.20 + 65 ร 0.20 + 60 ร 0.15 + 72 ร 0.15 + 55 ร 0.10) = 67illustrative only
RSI+15
MACD+14
EMA+13
Bollinger+9
Stochastic+11
Volume+6
Total67 / 100
Illustrative Score Bands
90%+ExceptionalIllustrative band
80%+Very StrongIllustrative band
73%+StrongIllustrative band
65%+ModerateIllustrative band
58%+LowIllustrative band
55%+WeakIllustrative band
0%+Very WeakIllustrative band
Strategy engines can calculate confidence differently. Confidence alone never clears the reproducible cost-adjusted evidence gate required for entry-like delivery or execution.
educational confidence formula
// Standalone educational formula used by this page.
// It is not the canonical formula for every TradeClaw strategy.
// 6 user-supplied indicator scores, weighted to a 0-100 result.
const WEIGHTS = {
RSI: 0.20, MACD: 0.20, EMA: 0.20,
BB: 0.15, STOCH: 0.15, VOLUME: 0.10, // total = 1.00
};
// Confidence = weighted sum of the per-indicator 0โ100 scores.
function confidence(scores: Record<string, number>): number {
const raw =
scores.rsi * 0.20 + scores.macd * 0.20 + scores.ema * 0.20 +
scores.bb * 0.15 + scores.stoch * 0.15 + scores.volume * 0.10;
return Math.round(raw); // 0-100
}
// Runtime publication, alerting, and execution use separate strategy and
// cost-adjusted evidence gates. This value alone authorizes none of them.