claude-tradingview-mcp-autotrading

Automates cryptocurrency trading by evaluating TradingView indicator strategies and executing trades on BitGet.

7|2|Updated May 16, 2026
One-click install
npx skills add https://github.com/reason-machines/mcp-skills --skill claude-tradingview-mcp-autotrading-reason-machines
Or copy as Structured Prompt for Agent▼
Please help me install this Agent Skill.
Skill: claude-tradingview-mcp-autotrading
Source: https://github.com/reason-machines/mcp-skills/tree/main/skills/claude-tradingview-mcp-autotrading
Command: npx skills add https://github.com/reason-machines/mcp-skills --skill claude-tradingview-mcp-autotrading-reason-machines

SYSTEM DOCUMENTATION & REQUIREMENTS

💡 This Skill requires ccxt.

What problem does it solve? Manually monitoring crypto charts and executing trades around the clock is impractical, and emotional decisions often break strategy discipline. This Skill connects Claude Code to TradingView market data and exchange APIs so trades execute only when every rule in a defined strategy passes. ## Core Features & Use Cases - Rule-Based Trade Execution: Evaluates MACD, RSI, and moving average conditions from a rules.json strategy file and executes trades on BitGet, Binance, Bybit, and other exchanges only when all entry rules pass. - Built-in Risk Guardrails: Enforces daily trade caps, maximum trade sizes, and percentage-based position sizing, with a paper trading mode for safe testing. - Tax-Ready Logging: Appends every trade to a CSV with date, price, fees, and net amounts, plus a safety-check decision log for auditing. - Use Case: Extract a trader's methodology from YouTube transcripts, generate a rules.json strategy, backtest it in paper trading mode, then deploy the bot to a VPS with cron scheduling for 24/7 automated execution. ## Quick Start Set up an automated crypto trading bot that connects TradingView signals to my BitGet account with paper trading enabled and a maximum of three trades per day.

Frequently Asked Questions about claude-tradingview-mcp-autotrading

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I set up an automated crypto trading bot with TradingView?▼

Clone the repository, run npm install, and configure your .env file with exchange API keys, portfolio value, and risk limits. Then connect TradingView MCP and run node bot.js, or paste the one-shot prompt into Claude Code to automate the full setup.

How to create a trading strategy from YouTube transcripts?▼

Use the Apify YouTube Transcript Scraper to extract a trader's methodology, then paste the output into the strategy extraction prompt. Claude parses the methodology and generates a rules.json file with indicators, entry conditions, and risk management rules.

Which exchanges does this trading bot support?▼

The bot supports BitGet as the recommended exchange, plus Binance, Bybit, OKX, Coinbase Advanced, Kraken, KuCoin, Gate.io, MEXC, and Bitfinex. Each exchange has a dedicated setup guide in the docs/exchanges directory.

Can I test the trading bot without risking real money?▼

Yes, set PAPER_TRADING=true in the .env file to simulate trades without executing real orders. Paper trades are still logged to trades.csv so you can validate strategy performance before going live.

Why is my TradingView MCP connection failing?▼

Run tv_health_check to verify the connection status. If cdp_connected returns false, relaunch with tv_launch; Windows users should consult the platform-specific setup guide in docs/setup-windows.md.

What risk management limits does the bot enforce?▼

The bot enforces a maximum risk percentage per trade from rules.json, hard caps on trade size and daily trade count from the .env file, and requires every entry rule to pass before executing. All decisions are recorded in safety-check-log.json.