Documentation

Neural API Reference

Comprehensive documentation for the rlx-search engine telemetry and the MCP orchestration server.

Engine StatusOperational

Engine Overview

The rlx-search service exposes high-performance JSON endpoints designed for historical pattern matching, walk-forward backtesting, and reinforcement learning telemetry.

Production Layer
Secure
https://aipricepatterns.com

Interactive Playground

Test pattern search and backtest logic directly in our high-fidelity sandbox. No setup required.

Launch Playground

MCP Agent Protocol

Deploy autonomous agents that reason over pattern distributions using our Model Context Protocol server.

View MCP Docs

Core Telemetry Schema

ParameterLogic TypeFallbackDescription
symbolstringBTCUSDTTarget trading pair for neural scanning.
intervalstring1hData granularity (resolution).
qinteger40Query window length (Lookback window).
finteger30Forecast horizon projection.
startintegerlatestAnchor point in history (0 = inception).
limitinteger32Max match density per telemetry request.
sortstringsimilarityMetric prioritization (corr, rmse, similarity).
forceboolfalseBypass telemetry cache for real-time recalculation.

State Invalidation Notice

Dataset mutations (expand, pruning) automatically evict the in-memory pattern caches and ANN indices. Subsequent telemetry requests will rebuild state transparently, which may impact latencies for large (~1M+ bar) datasets.

Zero-to-One

1. Set Global Context

Shell Configuration
export BASE_URL="https://aipricepatterns.com"

2. Target Analogs (Neural Search)

curl -s -X POST "$BASE_URL/api/v1/patterns/search" \
  -H "Content-Type: application/json" \
  -d '{"symbol":"BTCUSDT","interval":"1h","q":40,"f":30,"limit":10}' | jq