ToolAssay

Multi-factor z-score confluence backtest for one asset (2-4 conditions)

Multi-factor z-score confluence backtest for one asset (2-4 conditions). Intersects triggered days, returns per-metric series, composite triggers, and per-horizon forward-return/drawdown stats. Validate confluence stacks before live deployment. Coverage: pass any asset in the CRYPTYX 200+ tracked universe (BTC, ETH, SOL, top-cap + long-tail).

Answeringour last check, 2026-09-24
1 of 1checks answered this week
268 msmedian answer time
$0.05listed price per call
$0.05price it asked us

Paid test badge: not yet. The checks above are free: we call the tool without paying and read the payment request it sends back. The Verified badge needs paid calls whose answers match the promised output, and nobody can buy a badge.

Endpoint

POST https://cryptyx.ai/api/metrics/slicer/composite

CategoryEverything else
Provider hostcryptyx.ai
Networkseip155:8453
Payment schemesexact
Self-reported calls, 30 days1 from 1 payers (the provider's figure, not ours)

Our checks, last 30 days

DayResultHTTPAskedTime
2026-09-24 valid payment request 402$0.05 268 ms

Example input (from the provider)

{
  "body": {
    "asset": "BTC",
    "conditions": [
      {
        "metric_id": "TR_ROC_7D",
        "operator": "abs_gt",
        "threshold": 1.5
      },
      {
        "metric_id": "VOL_RV_7D",
        "operator": "lt",
        "threshold": 1
      }
    ],
    "cooldown_days": 0
  },
  "bodyType": "json",
  "method": "POST",
  "type": "http"
}

Promised output schema (from the provider)

{
  "$schema": "https://json-schema.org/draft/2020-12/schema",
  "properties": {
    "input": {
      "additionalProperties": false,
      "properties": {
        "body": {
          "properties": {
            "asset": {
              "description": "Asset symbol, uppercased server-side (e.g. BTC, ETH, SOL)",
              "example": "BTC",
              "type": "string"
            },
            "conditions": {
              "description": "2-4 conditions, each { metric_id, operator (gt|lt|gte|lte|abs_gt), threshold (z-score number) }",
              "example": [
                {
                  "metric_id": "TR_ROC_7D",
                  "operator": "abs_gt",
                  "threshold": 1.5
                },
                {
                  "metric_id": "VOL_RV_7D",
                  "operator": "lt",
                  "threshold": 1
                }
              ],
              "items": {
                "properties": {
                  "metric_id": {
                    "example": "TR_ROC_7D",
                    "type": "string"
                  },
                  "operator": {
                    "enum": [
                      "gt",
                      "lt",
                      "gte",
                      "lte",
                      "abs_gt"
                    ],
                    "type": "string"
                  },
                  "threshold": {
                    "example": 1.5,
                    "type": "number"
                  }
                },
                "required": [
                  "metric_id",
                  "operator",
                  "threshold"
                ],
                "type": "object"
              },
              "maxItems": 4,
              "minItems": 2,
              "type": "array"
            },
            "cooldown_days": {
              "default": 7,
              "description": "Min days between accepted composite triggers (0-365, default 7)",
              "maximum": 365,
              "minimum": 0,
              "type": "integer"
            }
          },
          "required": [
            "asset",
            "conditions"
          ]
        },
        "bodyType": {
          "enum": [
            "json",
            "form-data",
            "text"
          ],
          "type": "string"
        },
        "method": {
          "enum": [
            "POST"
          ],
          "type": "string"
        },
        "type": {
          "const": "http",
          "type": "string"
        }
      },
      "required": [
        "type",
        "method",
        "bodyType",
        "body"
      ],
      "type": "object"
    },
    "output": {
      "properties": {
        "example": {
          "type": "object"
        },
        "type": {
          "type": "string"
        }
      },
      "required": [
        "type"
      ],
      "type": "object"
    }
  },
  "required": [
    "input"
  ],
  "type": "object"
}

This page as JSON