# Noon Barbari Backtesting (remote · noonbarbari.xyz)

Crypto backtesting tools: real backtests with robustness verdicts, daily signals and market data.

- Trust score: 69/100 (medium)
- Change this week: +1
- Registry status: active
- Liveness: live
- Owner verified: no
- Last scored: 2026-08-03

## Components

- remote · `noonbarbari.xyz`: 69/100 (this document), [markdown](https://verifymcp.io/servers/xyz-noonbarbari-backtesting/noonbarbari.md), [page](https://verifymcp.io/servers/xyz-noonbarbari-backtesting/noonbarbari)

## Channel facts

- Endpoint: `https://noonbarbari.xyz/mcp`
- Transports: `streamable-http`
- Auth: `none`
- Version: `1.0.0`

## Trust breakdown

How this component scores in each security and reliability category. Every signal is checked automatically against the live server, and we only credit what we can confirm. Scores are 0–100 per category. Scoring method: https://verifymcp.io/docs/scoring (what has changed: https://verifymcp.io/docs/scoring/changelog)

Scored 2026-08-03.

- **Endpoint Security**: 63/100
  - The endpoint's TLS certificate is valid, in date, and uses a strong key.
  - Authorisation not fully verified: no authorisation is required to call this server, and 11 tool(s) never declared a destructiveHint. The MCP spec treats an absent hint as destructive by default, so we cannot call this surface safe.
  - HTTPS is enforced; there's no plaintext access path.
  - The HSTS (Strict-Transport-Security) header is present.
  - DNSSEC check failed: this domain isn't protected by DNSSEC.
- **Transport & Reachability**: 100/100
  - Verified streamable-http transport via a live MCP handshake.
- **Schema Quality & AI Usability**: 85/100
  - 100% of prompts and resources have a non-trivial description (not blank, and not just the item's name).
  - AI-judged instruction clarity (excellent).
  - Tool/resource definitions use about 1363 tokens (~97/item across 14 items; 11 tools + 3 resources), lean.
  - Usage-examples check failed: none of the tools include examples.
- **Stability & Change Management**: 27/100
  - Stability observed for 8 of 30 days with no destabilising changes; credit accrues until the full window elapses.
- **Tool Coverage**: 100/100
  - 100% of tools have a non-trivial description (not blank, and not just the tool's name).
  - 100% of tool parameters carry a description.
- **Capabilities**: 60/100
  - Spec-recency check failed: implements MCP spec 2025-06-18; the latest is 2026-07-28.

## Install

### Claude

```bash
claude mcp add --transport http xyz-noonbarbari-backtesting https://noonbarbari.xyz/mcp
```

### Codex

```toml
[mcp_servers.xyz-noonbarbari-backtesting]
url = "https://noonbarbari.xyz/mcp"
```

### opencode

```json
{
  "$schema": "https://opencode.ai/config.json",
  "mcp": {
    "xyz-noonbarbari-backtesting": {
      "type": "remote",
      "url": "https://noonbarbari.xyz/mcp",
      "enabled": true
    }
  }
}
```

### OpenClaw

```bash
openclaw mcp add xyz-noonbarbari-backtesting --url https://noonbarbari.xyz/mcp --transport streamable-http
```

### Hermes

```yaml
mcp_servers:
  xyz-noonbarbari-backtesting:
    url: "https://noonbarbari.xyz/mcp"
```

### Other

```json
{
  "mcpServers": {
    "xyz-noonbarbari-backtesting": {
      "type": "http",
      "url": "https://noonbarbari.xyz/mcp"
    }
  }
}
```

The mcpServers block is a cross-client convention. Remote transports vary, so check your client's docs.

## Changelog

Every change recorded for this component, newest first. Days that predate change tracking, or that we cannot explain, say so: "we were watching and nothing happened" and "we were not watching" are different claims.

### 2026-08-02 (score 69, +1)

No change was recorded against any check on this day. Stability & Change Management went from 20 to 23. That category is still filling its 30-day observation window: 6 days of observed history at the previous scan, 7 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-31 (score 68, 0)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-30 (score 68, −1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-29 (score 69, +1)

No change was recorded against any check on this day. Stability & Change Management went from 7 to 10. That category is still filling its 30-day observation window: 2 days of observed history at the previous scan, 3 at this one. The score rises as the window fills, whether or not the server changes.

### 2026-07-27 (score 68, +1)

- [functional] We updated how we score, so this day's move reflects our rubric, not a change to the server

### 2026-07-26 (score 67)

First indexed and scored.

## MCP tools (11)

### `list_strategies` (~44 tokens)

List the strategy templates available for backtesting and comparison (name, title, one-line description). Use the returned `name` value as the strategy identifier in other tools.

### `get_coin_signals` (~113 tokens)

Today's daily-bar indicator readings for crypto coins, computed by a real backtesting engine from Binance closes: price, RSI-14, MACD state, SMA 50/200 posture, SuperTrend, Bollinger position, ATR volatility, 52-week range. Pass a coin ticker (e.g. 'btc') for one coin, or omit for the whole 50-coin board.

Input parameters:

- `coin` (string): Lower-case ticker, e.g. btc, eth, sol. Omit for all coins.

### `get_buy_hold` (~75 tokens)

What a $1,000 buy of a coin on Jan 1 of each available year would be worth today — ROI, peak value and date, and the maximum drawdown endured along the way. Real Binance data, refreshed daily.

Input parameters:

- `coin` (string, required): Lower-case ticker, e.g. btc, eth, sol.

### `get_overfitting_index` (~66 tokens)

The Crypto Overfitting Index: the monthly share (%) of default-parameter strategy configurations (10 templates × 50 coins) whose out-of-sample Sharpe turned negative — how much of what backtests promise fails on unseen data. Returns the current reading and full history.

### `compare_strategies` (~109 tokens)

Head-to-head comparison of two strategy templates from real monthly engine runs across ~50 coins: per-coin win count, median out-of-sample Sharpe, survival counts, median return and drawdown. Use strategy names from list_strategies (e.g. 'super_trend', 'ema_crossover').

Input parameters:

- `strategy_a` (string, required): First strategy name, e.g. super_trend
- `strategy_b` (string, required): Second strategy name, e.g. ema_crossover

### `search_answers` (~72 tokens)

Search Noon Barbari's Q&A knowledge base of direct, data-grounded answers about backtesting, overfitting, validation, indicators, risk management and crypto markets. Returns the top matching questions with their full answers.

Input parameters:

- `query` (string, required): Free-text query, e.g. 'why do backtests fail'

### `run_backtest` (~150 tokens)

Run a real backtest of a strategy template on BTC/USDT from a start date (public what-if engine; may take up to a minute on a cache miss; rate-limited). Returns net return, max drawdown, trade count, a robustness score with an overfitting verdict, and a shareable result URL.

Input parameters:

- `start_date` (string, required): ISO date, e.g. 2022-01-01 (2020-01-01 or later)
- `starting_cash` (number): Starting balance in USD (default 10000, max 1000000)
- `strategy` (string, required): Strategy name from list_strategies, e.g. super_trend

### `get_dca` (~153 tokens)

Dollar-cost-averaging outcome for a coin: what buying a fixed dollar amount on a schedule (weekly or monthly) since a start date would be worth today — total invested, units, average cost, current value and ROI — plus the lump-sum comparison and the worst drawdown endured. Real Binance closes, refreshed daily.

Input parameters:

- `amount` (number): USD invested per purchase (default 100).
- `coin` (string, required): Lower-case ticker, e.g. btc, eth, sol.
- `frequency` (string): Purchase cadence (default weekly).
- `start_date` (string): ISO date to start buying from, e.g. 2021-01-01 (optional; default = full history).

### `check_overfitting` (~201 tokens)

Compute the Deflated Sharpe Ratio (Bailey & Lopez de Prado 2014) for YOUR OWN backtest: given its annualised Sharpe, length, and how many strategy variants you tried before selecting it, returns the probability the result is real skill rather than selection luck, the luck bar it must clear, and a plain verdict. Works on any backtest, not just ours.

Input parameters:

- `kurtosis` (number): Non-excess kurtosis of returns (Gaussian = 3, the default).
- `length_days` (number, required): Length of the backtest in calendar days.
- `n_trials` (number, required): How many strategy/parameter variants were tried before picking this one.
- `sharpe` (number, required): Annualised Sharpe ratio of the selected backtest.
- `skew` (number): Skewness of the return series (default 0).
- `timeframe` (string): Bar timeframe of the returns (default 1d).

### `query_dataset` (~139 tokens)

Query our open 11,440-run curve-fitting study (10 strategy templates x 20 coins, 70/30 in-sample/out-of-sample split). Returns the headline overfitting stats and the tuned picks matching an optional template and/or coin filter — each with in-sample vs out-of-sample Sharpe, the Sharpe haircut, and the in-sample-to-out-of-sample parameter rank correlation.

Input parameters:

- `coin` (string): Ticker, e.g. btc (optional). Omit for all coins.
- `template` (string): Strategy name, e.g. super_trend (optional). Omit for all templates.

### `search_glossary` (~100 tokens)

Search Noon Barbari's trading glossary for a plain-language definition of an indicator, metric or concept (RSI, MACD, Sharpe ratio, drawdown, walk-forward, overfitting, and 60+ more). Returns the top matching terms with a short definition, the full explanation, and a link.

Input parameters:

- `query` (string, required): A term or question, e.g. 'deflated sharpe' or 'what is RSI'.

## Diagnostics

Captured diagnostic sections: TLS, DNSSEC, Authorisation, Transports. The full working is on the page: https://verifymcp.io/servers/xyz-noonbarbari-backtesting/noonbarbari#diagnostics

## Score history

- 2026-08-03: 69
- 2026-08-02: 69
- 2026-08-01: 68
- 2026-07-31: 68
- 2026-07-30: 68
- 2026-07-29: 69
- 2026-07-28: 68
- 2026-07-27: 68
- 2026-07-26: 67

## Links

- Remote endpoint: https://noonbarbari.xyz/mcp
- Website: https://noonbarbari.xyz/en/mcp
- Changelog RSS feed: https://verifymcp.io/servers/xyz-noonbarbari-backtesting/noonbarbari/changelog.xml
- Changelog JSON feed: https://verifymcp.io/servers/xyz-noonbarbari-backtesting/noonbarbari/changelog.json
- HTML version of this page: https://verifymcp.io/servers/xyz-noonbarbari-backtesting/noonbarbari
