Skip to main content

6 posts tagged with "pro"

View All Tags

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.

VolatiCloud Plans Explained: How the Subscription + Credits Model Works

· 9 min read
VolatiCloud Team
VolatiCloud

Before you deploy real capital, it's worth spending five minutes understanding how platform costs work. VolatiCloud uses a two-layer billing model — a monthly subscription that unlocks features, and a credit balance that fuels compute — and the two layers work independently. Understanding them prevents surprises and helps you pick the right plan from the start.

Crypto Strategy Code Analyzer: Lint, Risk, and Hyperopt Insights

· 8 min read
VolatiCloud Team
VolatiCloud

You're writing a Python trading strategy. You've defined a stoploss, computed RSI in the indicator pipeline, and written your entry conditions. But did you assign the indicator column the same name in populate_indicators and populate_entry_trend? Without inline feedback, the answer waits until your backtest produces zero trades and you spend twenty minutes debugging a typo a linter would have caught in milliseconds.

Trading Bot API: Programmatic Control with OAuth 2.0

· 7 min read
VolatiCloud Team
VolatiCloud

Manually clicking through a dashboard to start 12 bots before the New York open is not algorithmic trading — it's manual trading with extra steps. VolatiCloud's API client system gives you OAuth 2.0 client_credentials authentication for the entire GraphQL surface, so any script, CI pipeline, or external dashboard can manage bots, trigger backtests, and pull live performance data without a browser in the loop.

Freqtrade Hyperopt: Optimize Strategy Parameters Without Overfit

· 9 min read
VolatiCloud Team
VolatiCloud

Every algorithmic trading strategy has knobs. RSI period: 14? 21? 9? Entry threshold: 30, 25, 35? Stoploss: −5%, −7%, −10%? ROI target: 2%, 3%, 5%? Each combination produces a different equity curve, and the difference between defaults and optimized parameters can be the difference between a profitable strategy and a flat one. Manual trial and error doesn't scale: with five parameters and ten values each, you're looking at 100,000 combinations. Freqtrade's hyperopt — wrapped in VolatiCloud's UI — searches the parameter space intelligently with Bayesian optimization and converges on the high-performing region in hundreds of epochs, not hundreds of thousands.

Monte Carlo Trading Strategy Analysis: p5/p95 Confidence Bands

· 8 min read
VolatiCloud Team
VolatiCloud

A backtest gives you one number: 84% profit, 14% max drawdown, Sharpe of 1.62. One equity curve. One drawdown figure. But the order in which your trades happened to occur was just one of thousands of possible sequences — and most of those alternate sequences would have produced a different equity curve, sometimes dramatically different. Monte Carlo simulation runs the trades through thousands of randomized variations and shows you the full distribution of outcomes: the worst 5%, the median, the best 5%. The single backtest becomes a confidence band, and the question shifts from "how did it do?" to "how robust is it?"