Skip to content

Latest commit

 

History

History
73 lines (57 loc) · 1.49 KB

File metadata and controls

73 lines (57 loc) · 1.49 KB

StockPulse

An all in one stock market analysis platform that combines AI powered insights with comprehensive tools for informed investment decisions.

Features

  • Stock Analysis & Predictions: In-depth portfolio analysis with AI-powered market predictions
  • Dual-Layer Analysis: Combines sentiment analysis of market news with quantitative backtesting
  • Learning Hub: Personalized educational resources for investment strategies
  • Community Forum: Connect and discuss with fellow investors

Tech Stack

  • Frontend: Next
  • Backend: Django REST Framework
  • Database: PostgreSQL
  • AI/ML: CrewAI

Setup

Backend

  1. Navigate to server directory:

    cd server
  2. Activate virtual environment:

    • macOS/Linux:
      source env/bin/activate
    • Windows:
      env\Scripts\activate
  3. Install dependencies:

    pip install -r requirements.txt
  4. Run migrations:

    python manage.py migrate
  5. Start server:

    python manage.py runserver

Frontend

  1. Navigate to client directory:

    cd client
  2. Install dependencies:

    npm install
  3. Start development server:

    npm run dev

Contributors