Skip to main content

Quick Start Guide

This guide walks you from zero to a paper-trading bot running against real market data in about 20 minutes. By the end, you'll have a strategy, a backtest, an exchange connection, a runner, and a bot in Dry Run mode — no real capital at risk.

VolatiCloud dashboard after sign-in, with the sidebar navigation on the left and the workspace overview — the starting point for this quick start

Prerequisites

Before you begin, you'll need:

  1. A VolatiCloud account — sign up at console.volaticloud.com (every new org gets a 7-day Pro trial with $60 of credits, no credit card required)
  2. Exchange API keys — start with a testnet account on Binance or Bybit, or use an existing exchange account with a small dedicated balance

Step 1: Create an Organization

When you first sign in, you'll be prompted to create an organization. This is your workspace — strategies, bots, and runners all live inside it.

  1. Enter an Organization Name (e.g., "My Trading Team")
  2. An alias is auto-generated (e.g., my-trading-team) — this is used in URLs
  3. Click Create Organization

Step 2: Create a Strategy

Navigate to StrategiesNew Strategy.

Strategies list page showing an empty state with a prominent Create Strategy button in the top right of the toolbar

Clicking Create Strategy opens a drawer where you name the strategy and pick an authoring mode.

Create Strategy drawer slid in from the right with the Name field filled in as "RSI Mean Reversion", a short description, and a Create button ready to submit

  1. Click UI Builder mode
  2. Select a timeframe (e.g., 1h)
  3. Under Entry Conditions, add a condition:
    • Indicator: RSI
    • Operator: < (less than)
    • Value: 30
  4. Under Exit Conditions, add a condition:
    • Indicator: RSI
    • Operator: > (greater than)
    • Value: 70
  5. Click Save Strategy

This builds a classic RSI mean-reversion entry — the kind of starting point covered in the RSI mean reversion blog post.

Option B: Use Code Mode

from freqtrade.strategy import IStrategy
from pandas import DataFrame
import talib.abstract as ta

class MyFirstStrategy(IStrategy):
timeframe = '1h'
stoploss = -0.10

def populate_indicators(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
dataframe['rsi'] = ta.RSI(dataframe, timeperiod=14)
return dataframe

def populate_entry_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
dataframe.loc[dataframe['rsi'] < 30, 'enter_long'] = 1
return dataframe

def populate_exit_trend(self, dataframe: DataFrame, metadata: dict) -> DataFrame:
dataframe.loc[dataframe['rsi'] > 70, 'exit_long'] = 1
return dataframe

Step 3: Run a Backtest

Always backtest before going live, even in dry-run.

  1. From your strategy page, click Run Backtest
  2. Configure:
    • Exchange — source of historical data
    • Pair — e.g., BTC/USDT
    • Date range — e.g., last 12 months
    • Stake amount — e.g., 100 USDT
  3. Click Run Backtest
  4. Review the results — pay attention to profit %, win rate, profit factor, max drawdown
tip

A reasonable retail strategy typically shows:

  • Win rate > 50%
  • Profit factor > 1.5
  • Max drawdown < 20%

If your numbers fall outside these ranges, the strategy may need parameter tuning or different conditions before live deployment. The backtesting deep dive explains each metric in depth.

Step 4: Connect an Exchange

Navigate to ExchangesAdd Exchange.

  1. Select your exchange (e.g., Bybit)
  2. Enter your API Key and API Secret
  3. Click Test Connection to verify before saving
  4. Click Save
warning

For your first run, use your exchange's testnet or stick to dry run mode (paper trading) to avoid real financial risk. The exchange API key security post covers how to lock down API keys at the exchange level — IP whitelisting, sub-accounts, no withdraw permissions.

Step 5: Configure a Runner

A Runner is the server where your bot's Freqtrade process executes. Navigate to RunnersAdd Runner.

info

On managed VolatiCloud plans, a shared cloud runner may already be provisioned. Skip this step if so. Contact support if you need one provisioned.

Docker Runner (Self-Hosted)

  1. Select Docker runner type
  2. Enter the Docker host URL (e.g., tcp://your-server:2376)
  3. Upload TLS certificates if required
  4. Click Test Connection to verify

For Kubernetes-backed runners, see Kubernetes runner.

Step 6: Create Your Bot

Navigate to BotsCreate Bot.

  1. Select Strategy — the one you created in Step 2
  2. Select Exchange — the one you connected in Step 4
  3. Select Runner — the one from Step 5 (or a managed cloud runner)
  4. Configure:
    • Mode: Dry Run — paper trading, recommended for first run
    • Stake amount: 50 USDT
    • Max open trades: 3
  5. Click Create Bot

Step 7: Start Your Bot

From the Bots page:

  1. Find your new bot in the list
  2. Click the Start button
  3. Watch the status transition from stoppedcreatingrunning

The bot is now fetching market data, applying your entry conditions, and would place orders on the exchange — except in Dry Run mode, those orders are simulated.

Step 8: Monitor Your Bot

Click on the bot from the Bots page to open the detail view:

  • Analytics — P&L, win rate, trade count
  • Open positions — currently active simulated trades
  • Price chart — live candlestick chart for your pair
  • Logs — Freqtrade's stdout/stderr stream
  • Alerts — configure email notifications for trade events and errors

For real-time monitoring patterns and the full dashboard tour, see the real-time bot monitoring post.

Congratulations

You now have an automated trading bot running on VolatiCloud, executing your strategy against real market data without risking real capital. Here's what to explore next:

When you're ready to go live, the paper trading to live promotion guide covers the full checklist for moving from Dry Run to real capital.