Skip to content

Latest commit

 

History

History
54 lines (49 loc) · 1.72 KB

README.md

File metadata and controls

54 lines (49 loc) · 1.72 KB

AlgoNexus

AlgoNNexus

Description

AlgoNexus is an Automated Financial Trading System designed for algorithmic trading. It leverages advanced strategies and machine learning techniques to analyze market data, make trading decisions, and execute trades automatically.

Installation

  1. Clone the repository:
    git clone https://github.com/kasinadhsarma/AlgoNexus
    cd AlgoNexus
    
  2. Install dependencies:
    pip install -r requirements.txt
    
  3. Set up environment variables:
    • Create a .env file in the root directory
    • Add your Alpha Vantage API key:
      ALPHA_VANTAGE_API_KEY=your_api_key_here
      

Usage

  1. Fetch historical data:
    python alpha_vantage_data_fetch.py
    python yahoo_finance_data_fetch.py
    
  2. Run the trading strategy:
    python moving_average_crossover_strategy.py
    
  3. Start the trading environment:
    python trading_environment.py
    
  4. Run the agent management system:
    python agent_management.py
    

Contributing

We welcome contributions to AlgoNexus! Please follow these steps to contribute:

  1. Fork the repository
  2. Create a new branch: git checkout -b feature/your-feature-name
  3. Make your changes and commit them: git commit -m 'Add some feature'
  4. Push to the branch: git push origin feature/your-feature-name
  5. Submit a pull request

Please ensure your code adheres to our coding standards and includes appropriate tests.

License

This project is licensed under the MIT License - see the LICENSE file for details.

Triggering workflow run