| Crates.io | factors-bin |
| lib.rs | factors-bin |
| version | 0.2.1 |
| created_at | 2025-12-25 14:15:32.082368+00 |
| updated_at | 2025-12-25 15:47:27.322995+00 |
| description | CLI for factors unified factor library |
| homepage | https://github.com/factordynamics/factors |
| repository | https://github.com/factordynamics/factors |
| max_upload_size | |
| id | 2004588 |
| size | 59,972 |
Command-line interface for the factors unified factor library.
The factors CLI provides easy access to the comprehensive factor library for quantitative finance. It enables factor discovery, introspection, and computation directly from the command line.
cargo install factors-bin
Or build from source:
cargo build --release
./target/release/factors --help
Display all registered factors grouped by category:
factors list
Get detailed information about a specific factor, including its description, required inputs, and parameters:
factors info short_term_momentum
factors info book_to_price
factors info market_beta
Compute a specific factor for a given symbol (placeholder implementation):
factors compute AAPL --factor short_term_momentum
factors compute MSFT --factor earnings_yield
The CLI provides access to all factors in the library, organized by category:
# List all factors
factors list
# Get information about ROE
factors info roe
# Compute short-term momentum for AAPL
factors compute AAPL --factor short_term_momentum
MIT