mirror of
https://github.com/0xrsydn/idx-cli.git
synced 2026-08-07 01:33:52 +00:00
feat(analysis): add technical analysis module and stocks technical command
- Add analysis module: SMA, EMA, RSI(14), MACD(12,26,9), volume ratio - Add signal interpretation: bullish/bearish/neutral with consensus voting - Wire up 'stocks technical <SYMBOL>' CLI subcommand - Table output with colored signals + JSON output support - Cache/offline/stale-cache fallback (same pattern as quote/history) - Fetch 1 year of daily data for SMA200 coverage (~250 trading days) - Add TechnicalReport, MacdSnapshot, VolumeSnapshot structs - Add 4 new unit tests + 3 integration tests (30 total passing)
This commit is contained in:
parent
9e0560f3c1
commit
9182f25a01
8 changed files with 723 additions and 6 deletions
|
|
@ -1,3 +1,4 @@
|
|||
pub mod analysis;
|
||||
mod api;
|
||||
mod cache;
|
||||
mod cli;
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue