Skip to content

Latest commit

 

History

History

README.md

Additional Documentation

This directory contains supplementary documentation for the Robinhood Trading System.

📑 Documentation Index

Account Configuration

Strategy Guides

Usage Guides

🚀 Getting Started

For new users, start with the main project documentation:

  1. Main README: ../README.md
  2. Trading System Guide: ../TRADING_SYSTEM_GUIDE.md
  3. Project Structure: ../PROJECT_STRUCTURE.md

Then refer to the specific guides in this directory for advanced topics.

📚 Guide Descriptions

Account Configuration Guides

These guides help you set up and configure multiple Robinhood accounts:

  • Learn how to configure credentials
  • Understand account isolation
  • Set up automated trading accounts
  • Manage multiple profiles

Strategy Guides

Detailed documentation for each trading strategy:

  • Momentum Strategy: Moving average crossover (5-day/20-day MA)
  • After-Hours Strategy: Buy at close, sell at open
  • Quick start guides for each strategy

Usage Guides

Practical guides for using the system:

  • Command line options and flags
  • Switching between different accounts
  • Verifying setup is complete
  • Troubleshooting common issues

🔗 Quick Links

Guide Purpose Related Files
Momentum Strategy Learn moving average trading old_strategies/momentum_strategy.py
After-Hours Strategy Overnight trading old_strategies/afterhours_daily_strategy.py
Account Config Setup accounts scripts/setup_credentials.py
Profile Switching Manage profiles scripts/manage_profiles.py
Command Line CLI usage All scripts in scripts/

📖 Using This Documentation

  1. Browse by topic: Use the index above to find specific guides
  2. Start with basics: New users should read account configuration first
  3. Try examples: Each strategy guide includes example code
  4. Reference as needed: Keep these docs handy while developing

🔄 Legacy Documentation

These guides reference the old file structure. File locations have been updated:

  • Old: rh_auth.py → New: utils/rh_auth.py
  • Old: safe_cash_bot.py → New: utils/safe_cash_bot.py
  • Old: momentum_strategy.py → New: old_strategies/momentum_strategy.py

When following these guides, adjust file paths accordingly.

💡 Tips

  • Strategy guides are for reference - the new trading_system/ is recommended
  • Account guides are still relevant for managing credentials
  • Command line guides apply to scripts in scripts/ folder
  • Check the main README for the latest recommended approach

Note: This is supplementary documentation. For the main documentation, see:

  • ../README.md - Main project README
  • ../TRADING_SYSTEM_GUIDE.md - Trading system quick start
  • ../PROJECT_STRUCTURE.md - Project organization