AlphaVaultALPHAVAULT
ArenaPricingAboutHelp
Sign inSubscribe

ALPHAVAULT

Battle-tested BTC strategies for TradingView.

Navigate

ArenaPricingAboutHelp

Legal

ImpressumPrivacy Policysupport@alphavault.net

AlphaVault Arena is for educational and informational purposes only. This is not financial advice.

Strategies are continuously backtested and refined — we ship updates regularly so your edge stays sharp.

A NeuralKinetiq product — © 2026 AlphaVault. All rights reserved.

Help Center

How to Automate with a Bot

New to trading? Start here.

You don't need a bot to use AlphaVault strategies. The simplest way to get started is to trade manually:

  1. Add your strategy indicator to a BTC/USDT chart in TradingView.
  2. Watch for the BUY and SELL labels that appear on the chart.
  3. When a BUY signal appears, open a position on your exchange. When a SELL appears, close it.
  4. Start with a small amount you're comfortable losing while you get familiar with the signals.

The bot setup guide below is for traders who want to automate this process. It requires some technical knowledge. Manual trading is perfectly valid and many subscribers trade this way.

Step 1 — Set up a TradingView Alert

Once you have an AlphaVault indicator on your chart, create an alert that fires on BUY/SELL signals.

  1. Open TradingView and load your BTC/USDT chart with the AlphaVault indicator applied.
  2. Click the Alert button (clock icon) in the top toolbar.
  3. Under Condition, select your AlphaVault indicator from the dropdown.
  4. Choose "alert() function calls only" — this fires on every built-in BUY/SELL signal.
  5. Set expiration to Open-ended.

Step 2 — Enable Webhook in the Alert

TradingView sends an HTTP POST to any URL when your alert fires. This is how your exchange bot receives signals.

  1. In the alert dialog, go to the Notifications tab.
  2. Check Webhook URL and paste your bot's webhook endpoint.
  3. In the Message field, paste the JSON payload your bot expects:
{"action": "{{strategy.order.action}}", "ticker": "{{ticker}}", "price": "{{close}}"}

{{strategy.order.action}} is filled automatically by TradingView with "buy" or "sell".

Step 3 — Connect Your Exchange

AlphaVault strategies work on any exchange that supports API trading. Several major exchanges support TradingView webhooks natively.

Binance

Most popular

Account → API Management → Create API. Enable Futures trading for leverage. Binance also has a native Trading Bots tab with signal bot support.

KuCoin

Native webhook support

Account → API Keys → Create API. KuCoin's Signal Bot (under Trading Bots) accepts TradingView webhooks directly — no third-party tool needed. Create a Signal Bot, copy the webhook URL, paste into your alert.

Bybit

Low fees

Account → API Management → Create API. Bybit's Signal Bot (under Trading Bots) supports TradingView webhook alerts out of the box.

MEXC

Popular for futures

Account → API Management → Create New API Key. Grant trading permissions only. Use a self-hosted script or 3Commas to connect TradingView alerts to MEXC's API.

OKX

Advanced traders

Account → API Keys → Create API. OKX supports TradingView webhooks natively via Signal Trading — set up a strategy, get a webhook URL, paste directly into your alert.

Step 4 — Configure Your API Keys Safely

Your bot needs API keys to place orders. Set them up securely:

  1. Go to your exchange → API Management → Create new API key.
  2. Enable Trade permission only — never enable withdrawals.
  3. Restrict the key to your bot's IP address if the exchange allows it.
  4. Paste the API key and secret into your bot or exchange signal bot settings.
  5. Set your position size — typically 1–5% of portfolio per trade at moderate risk.

Never give withdrawal permissions to a bot API key. If the key is compromised, an attacker can only trade — not drain your funds.

Step 5 — Test Before Going Live

Always test with small amounts or paper trading first.

  1. Use your exchange's paper trading or testnet mode if available.
  2. Use the Test webhook button in TradingView (Notifications tab) to confirm your bot receives it.
  3. Check your bot's logs to confirm it parsed the JSON correctly.
  4. Run live with a minimal position size for the first week before scaling.
  5. Monitor the first few real trades to confirm entries and exits match chart signals.
Disclaimer: Automated trading carries significant risk. Past backtested performance does not guarantee future results. Only trade with capital you can afford to lose. AlphaVault provides the signals — execution, risk management, and position sizing are your responsibility.

Settings Guide

What Do the Inputs Do?

Each strategy has its own set of inputs, explained via tooltips directly in TradingView. Hover over any input name in the strategy settings panel to see what it controls and how it affects behaviour.

The defaults are already optimised to match the published backtest — you don't need to change anything to replicate the results.

If you do adjust inputs, change one thing at a time and re-run the backtest on the same date range before trading live. Loosening filters to generate more trades almost always increases commission drag and hurts net PnL.

The fighter page for each strategy lists its entry and exit logic — use that as your reference for understanding what each input group controls.

Frequently Asked Questions

Everything you need to know before entering the Arena.