Company news
Quill - Deterministic, risk-governed multi-agent trading engine for US equities. A strategy swarm proposes orders; an independent risk guardian has final say. Paper mode by default, gated live Robinhood MCP execution.
npx -y skills add yogeshg665/quill-trading-agent --skill company-newsAssembled from the repository path, not quoted from the project. Check it against their README if it does not work.
One thing to look at
- 0 stars0 stars. Stars are a popularity signal and not a quality one, but at this level it is likely that nobody has read this closely except its author, and you would be relying on your own review.
What its author says it does
Copied from the file, not written here
Turn aggregated daily company-news sentiment into a small, deterministic directional trade proposal. WHEN: "trade on this news", "act on the headline", "buy on positive news", "trim on negative news", "news-driven trade", "sentiment-based proposal".
SKILL.md
1.9 KB, 361 tokens by cl100k_base, as published. Nobody here has run it
Company News
Overview
A strategy that reads the deterministic news-sentiment summary produced by market enrichment and turns strong sentiment into a small directional proposal. It performs no network I/O, so it stays reproducible; news can only nudge proposals, never risk decisions.
When to Use
- During the strategy swarm, when
news_targetshave recent headlines. - Do NOT use raw model interpretation of headlines; rely on the scored summary.
Inputs
| Input | Required | Description |
|---|---|---|
context.enrichment["news_sentiment"] | yes | Per-symbol average sentiment, article count, latest headline. |
config.strategy.news | yes | Positive and negative strength thresholds. |
Process
- For each summarized symbol, read the average sentiment and article count.
- If the average is at or above the positive strength threshold, propose a small buy tranche.
- If the average is at or below the negative strength threshold and the symbol is held, propose reducing the position.
- Attach the sentiment evidence to every signal and proposal.
Outputs
At most one buy or sell OrderProposal per symbol, each citing the average
sentiment and article count.
Rationalizations
| Excuse | Rebuttal |
|---|---|
| "One mildly positive headline justifies a large buy." | Only strong aggregate sentiment qualifies, and sizing is a small fixed tranche. |
Red Flags
- A proposal generated from zero articles.
- Sizing that ignores the small-tranche cap.
Verification
- Every proposal cites its sentiment and article count.
- The risk guardian still evaluates each proposal; news never bypasses it.