@heylemon/lemonade 0.2.2 → 0.2.3

This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
@@ -0,0 +1,131 @@
1
+ ---
2
+ name: stock-analysis
3
+ description: Analyze stocks and cryptocurrencies using Yahoo Finance data. Supports portfolio management, watchlists with alerts, dividend analysis, 8-dimension stock scoring, viral trend detection (Hot Scanner), and rumor/early signal detection. Use for stock analysis, portfolio tracking, earnings reactions, crypto monitoring, trending stocks, or finding rumors before they hit mainstream.
4
+ version: 6.2.0
5
+ homepage: https://finance.yahoo.com
6
+ commands:
7
+ - /stock - Analyze a stock or crypto (e.g., /stock AAPL)
8
+ - /stock_compare - Compare multiple tickers
9
+ - /stock_dividend - Analyze dividend metrics
10
+ - /stock_watch - Add/remove from watchlist
11
+ - /stock_alerts - Check triggered alerts
12
+ - /stock_hot - Find trending stocks & crypto (Hot Scanner)
13
+ - /stock_rumors - Find early signals, M&A rumors, insider activity (Rumor Scanner)
14
+ - /portfolio - Show portfolio summary
15
+ - /portfolio_add - Add asset to portfolio
16
+ metadata: {"lemonade":{"emoji":"📈","requires":{"bins":["uv"],"env":[]},"install":[{"id":"uv-brew","kind":"brew","formula":"uv","bins":["uv"],"label":"Install uv (brew)"}]}}
17
+ ---
18
+
19
+ # Stock Analysis v6.1
20
+
21
+ Analyze US stocks and cryptocurrencies with 8-dimension analysis, portfolio management, watchlists, alerts, dividend analysis, and **viral trend detection**.
22
+
23
+ ## What's New in v6.2
24
+
25
+ - **Rumor Scanner** — Early signals before mainstream news
26
+ - M&A rumors and takeover bids
27
+ - Insider buying/selling activity
28
+ - Analyst upgrades/downgrades
29
+ - Twitter/X "hearing that...", "sources say..." detection
30
+ - **Impact Scoring** — Rumors ranked by potential market impact
31
+
32
+ ## What's in v6.1
33
+
34
+ - **Hot Scanner** — Find viral stocks & crypto across multiple sources
35
+ - **Twitter/X Integration** — Social sentiment via bird CLI
36
+ - **Multi-Source Aggregation** — CoinGecko, Google News, Yahoo Finance
37
+ - **Cron Support** — Daily trend reports
38
+
39
+ ## What's in v6.0
40
+
41
+ - **Watchlist + Alerts** — Price targets, stop losses, signal changes
42
+ - **Dividend Analysis** — Yield, payout ratio, growth, safety score
43
+ - **Fast Mode** — `--fast` skips slow analyses (insider, news)
44
+ - **Improved Performance** — `--no-insider` for faster runs
45
+
46
+ ## Quick Commands
47
+
48
+ ### Stock Analysis
49
+ ```bash
50
+ # Basic analysis
51
+ uv run {baseDir}/scripts/analyze_stock.py AAPL
52
+
53
+ # Fast mode (skips insider trading & breaking news)
54
+ uv run {baseDir}/scripts/analyze_stock.py AAPL --fast
55
+
56
+ # Compare multiple
57
+ uv run {baseDir}/scripts/analyze_stock.py AAPL MSFT GOOGL
58
+
59
+ # Crypto
60
+ uv run {baseDir}/scripts/analyze_stock.py BTC-USD ETH-USD
61
+ ```
62
+
63
+ ### Dividend Analysis
64
+ ```bash
65
+ uv run {baseDir}/scripts/dividends.py JNJ
66
+ uv run {baseDir}/scripts/dividends.py JNJ PG KO MCD --output json
67
+ ```
68
+
69
+ ### Watchlist + Alerts
70
+ ```bash
71
+ uv run {baseDir}/scripts/watchlist.py add AAPL
72
+ uv run {baseDir}/scripts/watchlist.py add AAPL --target 200
73
+ uv run {baseDir}/scripts/watchlist.py add AAPL --stop 150
74
+ uv run {baseDir}/scripts/watchlist.py list
75
+ uv run {baseDir}/scripts/watchlist.py check
76
+ ```
77
+
78
+ ### Portfolio Management
79
+ ```bash
80
+ uv run {baseDir}/scripts/portfolio.py create "Tech Portfolio"
81
+ uv run {baseDir}/scripts/portfolio.py add AAPL --quantity 100 --cost 150
82
+ uv run {baseDir}/scripts/portfolio.py show
83
+ ```
84
+
85
+ ### Hot Scanner
86
+ ```bash
87
+ python3 {baseDir}/scripts/hot_scanner.py
88
+ python3 {baseDir}/scripts/hot_scanner.py --no-social
89
+ python3 {baseDir}/scripts/hot_scanner.py --json
90
+ ```
91
+
92
+ ### Rumor Scanner
93
+ ```bash
94
+ python3 {baseDir}/scripts/rumor_scanner.py
95
+ ```
96
+
97
+ ## Analysis Dimensions (8 for stocks, 3 for crypto)
98
+
99
+ ### Stocks
100
+ | Dimension | Weight | Description |
101
+ |-----------|--------|-------------|
102
+ | Earnings Surprise | 30% | EPS beat/miss |
103
+ | Fundamentals | 20% | P/E, margins, growth |
104
+ | Analyst Sentiment | 20% | Ratings, price targets |
105
+ | Historical | 10% | Past earnings reactions |
106
+ | Market Context | 10% | VIX, SPY/QQQ trends |
107
+ | Sector | 15% | Relative strength |
108
+ | Momentum | 15% | RSI, 52-week range |
109
+ | Sentiment | 10% | Fear/Greed, shorts, insiders |
110
+
111
+ ### Crypto
112
+ - Market Cap & Category
113
+ - BTC Correlation (30-day)
114
+ - Momentum (RSI, range)
115
+
116
+ ## Supported Cryptos (Top 20)
117
+
118
+ BTC, ETH, BNB, SOL, XRP, ADA, DOGE, AVAX, DOT, MATIC, LINK, ATOM, UNI, LTC, BCH, XLM, ALGO, VET, FIL, NEAR
119
+
120
+ (Use `-USD` suffix: `BTC-USD`, `ETH-USD`)
121
+
122
+ ## Limitations
123
+
124
+ - Yahoo Finance may lag 15-20 minutes
125
+ - Short interest lags ~2 weeks (FINRA)
126
+ - Insider trades lag 2-3 days (SEC filing)
127
+ - US markets only (non-US incomplete)
128
+
129
+ ## Disclaimer
130
+
131
+ **NOT FINANCIAL ADVICE.** For informational purposes only. Consult a licensed financial advisor before making investment decisions.