TradeClaw

Open-source AI market intelligence for traders who prefer evidence over noise.

Self-hosted by default

Product

  • Dashboard
  • Screener
  • Backtest
  • Track record
  • Live demo

Transparency

  • What we tested and killed
  • Methodology
  • Why long-term
  • Open data
  • Calibration

Resources

  • Blog
  • Docs
  • API reference
  • How it works
  • FAQ
  • Glossary

Community

  • Discord
  • Weekly digest
  • Contribute
  • Contributors
  • Sponsors

Open source

  • GitHub repo
  • Star history
  • Self-host guide
  • Security
  • Data freshness
  • Roadmap

ยฉ 2026 TradeClaw. MIT licensed.

Terms|Privacy|Trading involves risk. Signals are informational only and are not financial advice.
DashboardScreenerCopilotTrack Record
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.
Open Signal DashboardView Signal ExplanationStar on GitHub