Go to file
2025-02-20 21:36:19 -08:00
pinescripts 3ATR Strategy 2025-02-08 10:38:22 -08:00
src feat: Add Sunny-SMA scanner combining Sunny Bands and 21 SMA strategy 2025-02-19 23:26:58 -08:00
.dockerignore dockerizing program 2025-02-20 21:35:47 -08:00
.gitignore feat: Add Dockerfile, docker-compose, and update .gitignore for Docker setup 2025-02-20 21:23:38 -08:00
docker-compose.yml feat: Add Dockerfile, docker-compose, and update .gitignore for Docker setup 2025-02-20 21:23:38 -08:00
Dockerfile dockerizing program 2025-02-20 21:35:47 -08:00
industry_sic_codes.csv L CANSLIM 2025-02-03 23:33:42 -08:00
README.md first commit 2025-02-03 20:11:47 -08:00
requirements.txt updated requirements 2025-02-20 21:36:19 -08:00
stock_db_schema.csv add aider 2025-02-06 23:25:32 -08:00

My Stock Screener

Overview

This repository contains a Python-based stock screener that evaluates multiple metrics on a set of stocks, assigns a score, and outputs a CSV of the results.

Project Structure

  • src/ contains the main application code.
  • data/ is where you can store raw input data; it is ignored by Git.
  • reports/ is where generated CSV output is stored.

Setup Instructions

  1. Create a virtual environment:
    python3 -m venv venv
    source venv/bin/activate