Full Transparency

How we measure, score, and rank every AI model.

Everything in this document describes exactly what runs in production — no simplified marketing version. If you can read code, the logic here maps directly to what we've deployed.

The Core Loop

How a signal is generated and scored

1

Data ingestion

OHLCV (Open, High, Low, Close, Volume) candle data for each supported asset is pulled from market data APIs and stored on a rolling basis. The backend retains approximately one year of daily candles per asset.

2

Signal generation

All 21 models are run against the most recent candle data. Each model independently outputs a directional signal: BUY, HOLD, or SELL, along with a confidence score between 0 and 1.

3

Accuracy logging

Each prediction is timestamped and stored at generation time. When the next candle closes, the prediction is resolved against the real market direction. A prediction is marked correct if the asset moved in the predicted direction by close.

4

Accuracy scoring

Directional accuracy (dir_acc) is computed as the fraction of correct directional predictions over a rolling window. A model with 60% directional accuracy has correctly predicted price direction in 60 out of 100 recent predictions.

5

Ranking and weighting

A weight is assigned to each model using the formula below. Rankings update daily. The top-weighted models per asset are promoted — their signals get higher visibility in the platform.

Ranking Formula

Weighted accuracy scoring

Model weight is computed as:

weight = max(0, dir_acc − 0.50)2

This formula has two important properties:

Example: A model with 65% directional accuracy on BTC earns weight = (0.65 − 0.50)2 = 0.0225. A model at 55% earns weight = (0.55 − 0.50)2 = 0.0025 — one ninth the influence. A model at 48% earns weight = 0.
The Models

21 independent prediction strategies

Each model is fully independent — they share the same input data but use entirely different approaches to reach their predictions. No model influences another's output.

Machine Learning & AI

ModelApproach
XGBoostGradient-boosted decision trees trained on engineered price and volume features. Well-suited for tabular OHLCV data with non-linear relationships.
Gradient BoostingEnsemble of weak learners (sklearn implementation) that iteratively corrects prediction errors. Captures complex feature interactions across time windows.
Random ForestEnsemble of randomized decision trees. Robust to overfitting via bagging; provides implicit feature importance ranking across technical indicators.
Neural NetworkFeedforward multi-layer perceptron trained on normalized OHLCV series. Learns non-linear temporal patterns without hand-crafted feature rules.
Support Vector MachineSVM classifier with RBF kernel. Finds the maximum-margin hyperplane separating directional outcomes in feature space.

Technical Analysis

ModelApproach
Ichimoku CloudMulti-component Japanese charting system using Tenkan-sen, Kijun-sen, Senkou Span A/B, and Chikou Span for trend, momentum, and support/resistance signals.
SuperTrendATR-based trend-following indicator. Generates a clear directional line that switches side when price closes through the trailing stop band.
Parabolic SARStop-and-Reverse indicator tracking price acceleration. Produces tight signals in trending markets; checked against trend confirmation to reduce whipsaws.
EMA DivergenceMeasures spread between fast and slow exponential moving averages. Divergence direction and magnitude inform momentum and potential reversal signals.
TRIX SignalTriple exponential smoothing of price. The rate of change of a triple EMA reduces noise and generates momentum signals with minimal lag.
Williams %RMomentum oscillator measuring closing price relative to the high-low range. Identifies overbought (> -20) and oversold (< -80) conditions.
MomentumRaw rate-of-change of price over a set period. Directional momentum is combined with zero-line crossovers to classify trend strength.
Price ActionCandlestick pattern recognition — engulfing candles, pin bars, inside bars, and doji formations — to identify institutional pressure and reversals.
Technical Indicator CompositeA weighted composite of RSI, MACD, Bollinger Bands, and Stochastic oscillator. Signals are only generated when multiple indicators align.

Statistical & Market Microstructure

ModelApproach
VWAP PremiumMeasures price deviation from Volume-Weighted Average Price. Extended premium above VWAP signals overextension; discount signals potential accumulation.
Volume ProfileAnalyzes trading volume distribution across price levels. High-volume nodes act as support/resistance; breakouts through them carry higher conviction.
Volatility BreakoutIdentifies expansion in price range (ATR-based) following periods of compression. Breakouts after low-volatility consolidation are classified as directional signals.
Mean ReversionStatistical model that identifies assets trading at significant Z-score deviations from their rolling mean. Expects reversion toward the mean over a lookback window.
Fear & Greed IndexIncorporates market-wide sentiment data — volatility, momentum, social signals, dominance — to classify broad market psychology and its likely directional impact.
Elder-Ray IndexCombines exponential moving average with bull/bear power measurements. Positive bull power above EMA confirms uptrend signal; negative bear power below EMA confirms downtrend.
External Signal Intelligence

Tracking 50+ external sources

In addition to our 21 AI models, ArtinFox monitors a curated set of 50+ external signal sources — crypto influencers, financial media outlets, and market analysts — across multiple platforms including X (Twitter), YouTube, RSS feeds, and newsletters.

Each external call is logged with a timestamp and directional prediction. When the market resolves, the call is scored using the same directional accuracy methodology as our AI models. Sources are ranked publicly on the News page.

Editorial note: ArtinFox links to external article titles and URLs only. We do not reproduce, cache, or republish third-party content. All articles open on the original publisher's website.
Data Pipeline

How fresh is the data?

Important Disclaimer

All signals, accuracy figures, and model rankings provided by ArtinFox are for educational and informational purposes only. They do not constitute financial, investment, or trading advice. Past model accuracy is not indicative of future performance. Cryptocurrency markets are highly volatile. Always conduct your own research and consult a qualified financial advisor before making any investment decision. See our full Disclaimer.