Skip to main content

43 posts tagged with "features"

View All Tags

Org Passphrase: User-Controlled Encryption for Exchange API Keys

· 10 min read
VolatiCloud Team
VolatiCloud

Server-managed encryption protects your exchange API keys from database dumps — but it still means the platform holds both the ciphertext and the decryption key. If the key management system is ever compromised alongside the database, that protection collapses. VolatiCloud's organization passphrase feature adds a second, independent layer: a key derived entirely from something only you know, using an algorithm designed to make brute-force infeasible. Your API keys are encrypted before the platform ever sees the raw values.

VolatiCloud Strategy Builder: Step-by-Step Walkthrough

· 10 min read
VolatiCloud Team
VolatiCloud

Most traders can articulate their strategy in plain English: "buy when the trend is up, momentum is building, but the market isn't yet overbought." Converting that into a running bot is where most people get stuck — not because the idea is wrong, but because turning mental rules into executable code requires a skill set that has nothing to do with trading.

This walkthrough builds a complete three-indicator confluence strategy using VolatiCloud's visual editor — from blank canvas to deployable bot — without writing a single line of code.

Exchange API Key Security: Why Your Trading Bot Can't Drain Funds

· 9 min read
VolatiCloud Team
VolatiCloud

Giving a third party access to your exchange account sounds risky. In the worst-case scenario you can imagine, the platform gets hacked, your API keys are stolen, and your funds disappear. That scenario is real — but it is also completely preventable with one setting that costs you nothing to enable: withdrawal-disabled API keys. This post explains what that restriction actually does, the additional layers VolatiCloud enforces on top of it, and how to generate keys that even a full database breach cannot turn into stolen funds.

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.

Multi-Timeframe Crypto Strategies: Higher-TF Context for Bots

· 10 min read
VolatiCloud Team
VolatiCloud

A bot running on the 5-minute chart has no idea what the 1-hour trend is doing. It will buy breakouts that fight the prevailing trend, hold through reversals that a higher-timeframe RSI would have flagged, and miss entries that only make sense once you zoom out. Multi-timeframe analysis is one of the most effective ways to add context to a strategy — and VolatiCloud now supports it natively, both in code and in the visual builder.

Multi-Bot Crypto Portfolio: Orchestrate Uncorrelated Strategies

· 10 min read
VolatiCloud Team
VolatiCloud

A single bot is always exposed to the one market condition it was not built to handle. A trending market crushes mean-reversion bots; a range-bound market bleeds trend-followers dry. The way serious algorithmic traders smooth equity curves and avoid catastrophic drawdowns isn't to find one perfect strategy — it's to run several uncorrelated ones in parallel, so that when one is in drawdown another is in profit.

Historical Data Availability: A 60-Second Backtest Pre-Flight

· 9 min read
VolatiCloud Engineering
Engineering Team

You configure a backtest with six pairs across 18 months, hit run, and walk away. The equity curve comes back flat, the trade count is suspiciously low, and the performance period in the results doesn't match what you asked for. The strategy isn't broken — half your pairs were missing data you assumed was there. VolatiCloud's data availability system surfaces exactly what historical OHLCV your runner has, so you know what you're working with before you start anything.

Crypto Market Data Lake: Faster Backtests, No More Re-Downloads

· 9 min read
VolatiCloud Team
VolatiCloud

You configure a backtest, click run, and then watch a progress bar crawl while the engine re-downloads the same BTC/USDT 1h candles you've fetched a dozen times before. Multiply that wait by 200 hyperopt epochs and the I/O alone burns half your afternoon. VolatiCloud's centralized market data lake removes that step entirely — historical OHLCV is fetched once, stored centrally, and made available instantly to every backtest, hyperopt run, and bot warm-up in your organization.

Long/Short Crypto Bots with Mirror Mode: Trade Both Directions

· 11 min read
VolatiCloud Team
VolatiCloud

A long-only crypto bot that returns 35% in a bull year typically returns nothing during a 12-month downtrend — and may bleed slow losses on every false breakout it tries to enter. The traditional fix is to disable bots manually when sentiment turns bearish, but that puts the discretionary market-timing decision back on you, defeating half the point of automation. Mirror mode in VolatiCloud's Strategy Builder solves this differently: define your long entry conditions once, flip a toggle, and let the platform auto-generate the inverted short conditions so the same bot trades both directions without duplicated logic.

AI Chat Assistant for Crypto Trading Bots — VolatiCloud

· 9 min read
VolatiCloud Team
VolatiCloud

Comparing four backtest results across three strategies usually means six tabs, a spreadsheet, and a fresh cup of coffee. Asking the VolatiCloud AI Chat Assistant "rank my last 10 backtests by Sharpe and tell me which strategy has the best risk-adjusted return" returns the answer in under a minute — drawn from your real account data, not generic trading advice. The assistant lives in a slide-out panel on every dashboard page, authenticates with your existing session, and can both answer questions and take actions.