git404hub

what is seven-ai-trading-bots fr?

regardo911/seven-ai-trading-bots — explained in plain English

Analysis updated 2026-05-18

0PythonAudience · developerComplexity · 4/5LicenseSetup · easy

tl;dr

Companion code for a book teaching how to build seven AI-assisted trading bots, where Claude classifies data and deterministic Python executes trades.

vibe map

mindmap
  root((7 AI Trading Bots))
    What it does
      Seven trading strategies
      Claude classifies news and transcripts
      Python executes deterministic rules
      Paper trading by default
    Tech stack
      Python
      Claude API
      Backtesting framework
    Use cases
      Learn algorithmic trading with AI
      Backtest strategies on synthetic data
      Study safe live-trading rollout
    Audience
      Developers learning trading
      Book readers
    Safety
      Live mode needs code change
      Staged rollout process
      Not financial advice

Code map

Detail Auto

An interactive map of this repo's files and how they connect — its source is parsed live in your browser. Click Visualize to build it.

filefunction / class

what do people make with this?

VIBE 1

Study seven example trading strategies that combine AI classification with deterministic execution rules.

VIBE 2

Backtest trading strategies offline against synthetic market data with zero API keys.

VIBE 3

Learn a staged, safety-checked process for moving a trading bot from paper trading to live capital.

what's the stack?

PythonClaude APIAnthropic

how it stacks up fr

regardo911/seven-ai-trading-bots0xallam/my-recipe0xhassaan/nn-from-scratch
Stars00
LanguagePythonPythonPython
Last pushed2022-11-22
MaintenanceDormant
Setup difficultyeasymoderatemoderate
Complexity4/52/54/5
Audiencedevelopergeneraldeveloper

Figures from each repo's GitHub metadata at analysis time.

how do i run it?

Difficulty · easy time til it works · 5min

Runs fully offline on synthetic data with no API keys required to try the demo.

Use freely for any purpose, including commercial use, as long as you keep the copyright notice.

in plain english

This repository is the companion code for a book called Use Claude to Build 7 AI Trading Bots. It contains seven example trading strategies built on a shared framework, where the AI model Claude helps interpret information like news or earnings call transcripts, while plain, predictable Python code makes the actual buy or wait decisions. The idea is that Claude reads and classifies things, and ordinary code, not the AI, handles the math and the trading rules. The project is clearly labeled as educational software, not financial advice. Trading carries real risk of loss, and the built in backtests run on made up sample data rather than real market history. Simulated paper trading mode is turned on everywhere by default, and switching to real trading requires a deliberate change in the code itself, not just a setting or command line flag, specifically to prevent accidentally trading with real money. The seven bots cover different strategies: a trend following bot using price breakouts, a pairs trading bot based on two related assets moving together, an earnings reaction bot where Claude reads transcripts and scores them, a news reaction bot that classifies headlines, an options flow bot, a funding rate arbitrage bot for cryptocurrency exchanges, and a portfolio allocator that spreads risk across the others. Only two of the seven, the earnings and news bots, call Claude while actually trading, and the estimated cost of each of those calls is factored into the backtests so results reflect real expenses. Getting started needs no API keys, no brokerage account, and no internet access beyond installing Python packages, since everything runs offline using made up test data. The project includes a guided quickstart with a series of commands that check the setup, walk through example decisions, and run the full test suite. All configuration settings, including the Claude API key, are optional, with sensible offline stand ins used when they are missing. The book itself lays out a cautious, staged path for anyone who eventually wants to trade with real money, moving from paper trading up to full capital only gradually, with specific checks at every stage.

prompts (copy fr)

prompt 1
Walk me through the Chapter 3 trend strategy in this repo and explain why it buys or waits on a given day.
prompt 2
Help me run the offline demo commands and interpret the backtest output.
prompt 3
Explain how Claude is used in the earnings and news bots and how their inference cost is factored into backtests.
prompt 4
Summarize the staged process this project recommends for eventually trading with real capital.

Frequently asked questions

what is seven-ai-trading-bots fr?

Companion code for a book teaching how to build seven AI-assisted trading bots, where Claude classifies data and deterministic Python executes trades.

What language is seven-ai-trading-bots written in?

Mainly Python. The stack also includes Python, Claude API, Anthropic.

What license does seven-ai-trading-bots use?

Use freely for any purpose, including commercial use, as long as you keep the copyright notice.

How hard is seven-ai-trading-bots to set up?

Setup difficulty is rated easy, with roughly 5min to a first successful run.

Who is seven-ai-trading-bots for?

Mainly developer.

peek the repo → explain another one

This repo across BitVibe Labs

double-check against the repo, no cap.