quantwise 1.3.2 → 1.3.4
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.
- package/README.md +72 -0
- package/cli.mjs +17 -17
- package/package.json +2 -1
package/README.md
ADDED
|
@@ -0,0 +1,72 @@
|
|
|
1
|
+
# QuantWise
|
|
2
|
+
|
|
3
|
+
An agentic coding & trading intelligence tool that lives in your terminal. Built on Claude, it understands your codebase and provides market analysis — all through natural language commands.
|
|
4
|
+
|
|
5
|
+
## Setup
|
|
6
|
+
|
|
7
|
+
```bash
|
|
8
|
+
export ANTHROPIC_API_KEY=sk-ant-...
|
|
9
|
+
quantwise
|
|
10
|
+
```
|
|
11
|
+
|
|
12
|
+
## Quick Start
|
|
13
|
+
|
|
14
|
+
```bash
|
|
15
|
+
# Start interactive session
|
|
16
|
+
quantwise
|
|
17
|
+
|
|
18
|
+
# One-shot command
|
|
19
|
+
quantwise -p "explain this project's architecture"
|
|
20
|
+
|
|
21
|
+
# Pipe input
|
|
22
|
+
git diff | quantwise -p "review this diff"
|
|
23
|
+
```
|
|
24
|
+
|
|
25
|
+
## Features
|
|
26
|
+
|
|
27
|
+
### Coding Assistant
|
|
28
|
+
- Edit files, fix bugs, refactor code across your codebase
|
|
29
|
+
- Answer questions about code architecture and logic
|
|
30
|
+
- Execute and fix tests, lint, and other commands
|
|
31
|
+
- Git operations: merge conflicts, commits, PRs
|
|
32
|
+
|
|
33
|
+
### Trading & Market Intelligence (30+ built-in skills)
|
|
34
|
+
- **Stock Analysis** — real-time quotes, technical analysis, candlestick charts
|
|
35
|
+
- **Market Environment** — global market analysis (US, Europe, Asia, FX, Commodities)
|
|
36
|
+
- **Market Top/Bottom Detection** — O'Neil distribution days, Follow-Through Day signals
|
|
37
|
+
- **CANSLIM Screener** — William O'Neil growth stock methodology
|
|
38
|
+
- **VCP Screener** — Minervini Volatility Contraction Patterns
|
|
39
|
+
- **Options Strategy** — Black-Scholes pricing, Greeks, P/L simulation
|
|
40
|
+
- **Institutional Flow** — 13F filings tracking for smart money signals
|
|
41
|
+
- **Portfolio Manager** — holdings analysis, risk metrics, rebalancing
|
|
42
|
+
- **Weekly Strategy** — automated trading strategy report generation
|
|
43
|
+
|
|
44
|
+
### Built-in Tools
|
|
45
|
+
- **Bash** — execute shell commands
|
|
46
|
+
- **File operations** — read, write, edit, glob, grep
|
|
47
|
+
- **Web** — fetch URLs, search the web
|
|
48
|
+
- **Browser** — headless browser control (navigate, click, screenshot)
|
|
49
|
+
- **Debugger** — interactive LLDB/GDB debugging
|
|
50
|
+
- **Psql** — interactive PostgreSQL sessions
|
|
51
|
+
- **Notebook** — read and edit Jupyter notebooks
|
|
52
|
+
|
|
53
|
+
### Integrations (via MCP)
|
|
54
|
+
- Notion, Xiaohongshu, stock data, and more
|
|
55
|
+
|
|
56
|
+
## Skills
|
|
57
|
+
|
|
58
|
+
QuantWise ships with 30+ trading & analysis skills. Use them as slash commands:
|
|
59
|
+
|
|
60
|
+
```
|
|
61
|
+
/stock AAPL
|
|
62
|
+
/chart TSLA
|
|
63
|
+
/canslim-screener
|
|
64
|
+
/market-top-detector
|
|
65
|
+
/weekly-trade-strategy
|
|
66
|
+
```
|
|
67
|
+
|
|
68
|
+
List all available skills: type `/` in the interactive session.
|
|
69
|
+
|
|
70
|
+
## License
|
|
71
|
+
|
|
72
|
+
See [LICENSE.md](LICENSE.md) for details.
|