Skip to content

Latest commit

 

History

History
33 lines (23 loc) · 1.04 KB

File metadata and controls

33 lines (23 loc) · 1.04 KB

Trade Notifier

A lightweight Python application that scans Apple, Microsoft, Google, and Meta for low-risk trading opportunities using simple technical analysis. The app favors trades where momentum, RSI, and volatility are aligned to avoid excessive risk.

Features

  • Downloads recent price history with yfinance
  • Evaluates a conservative strategy based on moving averages, RSI, and volatility
  • Prints actionable notifications to the console with a confidence score
  • Easily extensible notification layer (email, chat, etc.)

Getting started

  1. Install dependencies (Poetry or pip):
poetry install
# or
pip install -r <(poetry export --without-hashes --format=requirements.txt)
  1. Run the notifier:
poetry run python main.py
# or
python main.py

Customisation

  • Update trade_notifier/config.py to tweak tickers or indicator thresholds.
  • Implement your own NotificationService in trade_notifier/notifications.py if you need to send alerts somewhere other than stdout.