Hier werden die Konfigurationen vom Docker Host "BrainDock" gesichert und weiterentwickelt.
Go to file Use this template
Marc Blatter e78b2ffada v0.6: Contrarian Buy/Sell (Mean Reversion) - Buy on market -2%, sell on market +2% 2026-07-29 10:48:21 +02:00
docs/analysis Bot V5 ENHANCED: Risk Management Implementation 2026-07-04 22:59:33 +02:00
src v0.6: Contrarian Buy/Sell (Mean Reversion) - Buy on market -2%, sell on market +2% 2026-07-29 10:48:21 +02:00
.documentation-updated-2026-07-09-19-36 Docs: Update Learnings 6&7 + Decisions 5&6 - Crisis resolution (Auto-swap audit + liquidation + V0.3 restart 2026-07-09 19:36) 2026-07-09 19:40:51 +02:00
.gitignore cleanup: Remove backup files, add .gitignore, create production-ready repository structure 2026-07-07 22:16:09 +02:00
ARCHITECTURE.md Docs: Add comprehensive ARCHITECTURE.md - Auto-Swap feature, Risk Management, Components documented 2026-07-08 23:32:49 +02:00
CHANGELOG_v0.4_PLANNED.md Docs: v0.4 Dynamic Position Sizing Plan + Rollback Strategy 2026-07-17 10:50:10 +02:00
DASHBOARD_V0.32_CHANGES.md Docs: v0.32 Dashboard detailed changelog and feature documentation 2026-07-15 11:03:22 +02:00
README.md Cleanup: Remove all v0.2/v5/v10 backups and deprecated strategies - Master branch now v0.3 ONLY with clean README 2026-07-14 07:21:36 +02:00
requirements.txt cleanup: Remove backup files, add .gitignore, create production-ready repository structure 2026-07-07 22:16:09 +02:00

README.md

🤖 Trading Bot — Version 0.3 (PRODUCTION)

Version: 0.3 | Status: 🟢 LIVE | Updated: 2026-07-14

📊 Current Performance (Live)

Metric Value Status
Portfolio $107.37 🟢 +0.49%
Trades 5 live Balanced
Free USDT $18.75 Active
Win Rate +2.06%-2.20% Consistent
Bot RUNNING 24/7

🎯 Strategy v0.3

Algorithm: Local Minimum Detection

  • Scan 30min price history
  • Detect support levels
  • TP: +1.5% | SL: -0.8%
  • Max 1 open trade

Active Pairs: BTC, ETH, BNB, XRP, SOL

Risk: 50% capital/trade, no leverage, -5% daily pause

📁 Files (v0.3 ONLY)

  • main_ml.py (production engine)
  • web_dashboard.py (live UI)
  • Integrations (Telegram, Obsidian, Dashboard)

Removed (cleanup 2026-07-14):

  • Backups (main_ml_BACKUP*, v2, v4_backup, v6)
  • DCA strategy (deprecated)
  • Old monitoring tools

🚀 Quick Start

Status:

systemctl status trading-bot.service
journalctl -u trading-bot.service -f

Dashboard: https://bot.bizmark.cloud (Port 7000)

Configure: Edit src/main_ml.py

TAKE_PROFIT_PERCENT = 1.5   # 1.0-2.5%
STOP_LOSS_PERCENT = 0.8     # 0.5-1.5%
INVESTMENT_PERCENT = 50     # 10-55%
CYCLE_INTERVAL = 60         # 30-120s

After changes: git commitgit pushsystemctl restart trading-bot.service

📱 Telegram Reports (3h)

Auto-delivery: 00:00, 03:00, 06:00, 09:00, 12:00, 15:00, 18:00, 21:00 UTC

  • Marc: 7646180954
  • Brother: 8518722579
  • Via: @bizMarkTrading_Bot

🔄 Versioning

v0.3 (NOW): Local Minimum + 3h reports + clean repo

Downgrade v0.3 → v0.2:

git log --oneline
git checkout <v0.2-hash>
systemctl restart trading-bot.service

📞 Help

  • Logs: journalctl -u trading-bot.service -f
  • Status: curl http://172.16.1.168:7000/api/state | jq '.'
  • Report: /home/marc/.pyenv/versions/3.10.16/bin/python3 /home/marc/bot-deploy/send_3h_report.py

Repo: https://git.bizmark.cloud/marc/BrainDock | Branch: master (v0.3) | Status: 🟢 PRODUCTION READY