Skip to main content

Correlation Analysis for Crypto Trading Bot Portfolios

· 8 min read
VolatiCloud Team
VolatiCloud

Most crypto portfolios are diversified in name only. A trader runs five bots across BTC, ETH, SOL, and a handful of large-cap alts and calls it "spread risk" — but if all five pairs fall 20% in the same afternoon, there was never any real diversification to begin with. The number that would have told you this in advance is correlation, and almost nobody checks it before allocating capital.

Pairs Trading Crypto Bots: A Relative-Value Strategy Guide

· 12 min read
VolatiCloud Team
VolatiCloud

Every strategy covered so far on this blog — RSI mean reversion, EMA crossovers, breakouts — shares one assumption: the asset you're trading will move in a predictable direction. Pairs trading drops that assumption entirely. Instead of betting BTC goes up or ETH goes down, you bet on the relationship between the two — and that relationship can be far more stable than either asset's price on its own.

Stablecoin Depegs: How They Hit Crypto Bots and How to Prepare

· 9 min read
VolatiCloud Team
VolatiCloud

On March 11, 2023, USDC traded as low as $0.87 on some venues after Circle disclosed that $3.3 billion of its reserves sat at the failed Silicon Valley Bank. It recovered within 48 hours once federal regulators guaranteed deposits — but for two days, every bot quoting trades in USDC was pricing its own P&L against a moving target. If your bot held a "flat" position in USDC during that window, you weren't flat. You were long a stablecoin that had just lost 13% of its dollar value.

The Overfit-Risk Score: Proving a Backtest Holds Up Out-of-Sample

· 7 min read
VolatiCloud Team
VolatiCloud

A backtest that only shows in-sample performance is a strategy that hasn't been tested yet — it's been fitted. The gap between "looks great on the data I optimized against" and "still works on data it never saw" is where most algorithmic strategies quietly die. VolatiCloud's backtest detail page now scores that gap directly: a 0-100 overfit-risk score, a Low/Moderate/High band, and the specific factors that produced it, computed automatically whenever you run an out-of-sample split or a 3-window walk-forward validation.

Chart-Native Strategy Studio: See Your Trading Rules Fire Before You Backtest

· 8 min read
VolatiCloud Team
VolatiCloud

Building a rule in a no-code strategy builder has always meant working blind: you set RSI(14) < 30, save, and hope. The only way to know whether that rule does anything sensible was to run a full backtest and dig through a trade list afterward. VolatiCloud's Strategy Studio just closed that gap — every condition you build now renders live on the candlestick chart while you're still editing it.

How to Read a Backtest: Metrics That Matter (and Ones That Lie)

· 9 min read
VolatiCloud Team
VolatiCloud

Every backtest report leads with total profit, and total profit is the number least worth trusting. Two strategies can post the same +60% over two years — one on a steady climb, the other spending fourteen months underwater before a single lucky quarter. Reading a backtest well means knowing which metrics carry real information, which ones routinely mislead, and in what order to check them.

Reinforcement Learning for Crypto Bots: Build an RL Strategy Without Python

· 9 min read
VolatiCloud Team
VolatiCloud

Most algorithmic trading strategies are rules written by humans: "buy when RSI crosses below 30, sell when it crosses above 70." The rules work until market conditions shift, and then you rewrite them. Reinforcement learning takes a different approach — instead of encoding your rules, you define what "good" looks like and let an agent discover the rules on its own through thousands of simulated trades.