volumeleaders-agent 0.3.0

Agent-oriented CLI for VolumeLeaders data
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
//! Command handlers for each CLI subcommand group.

/// Alert configuration management commands.
pub mod alert;
/// Shell completion generation.
pub mod completions;
/// Market data commands (earnings, exhaustion scores).
pub mod market;
/// Preset report commands for common trade scans.
pub mod report;
/// Shared scaffolding for simple client-to-stdout commands.
pub(crate) mod scaffold;
/// Trade lookup, dashboards, sentiment, and analysis commands.
pub mod trade;
/// Volume leaderboard commands.
pub mod volume;
/// Watchlist management and inspection commands.
pub mod watchlist;