agentsclimarketplace

Momentum strategy

Skill yogeshg665/quill-trading-agent/skills/momentum-strategy

Follow strong price trends by buying names with high trailing returns and exiting positions that have rolled over. WHEN: "buy the trend", "momentum trade", "follow strong movers", "this stock is breaking out", "exit the downtrend", "trend-following proposal".From its SKILL.md

Install
npx -y skills add yogeshg665/quill-trading-agent --skill momentum-strategy

Assembled 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.

SKILL.md

1.8 KB, 363 tokens by cl100k_base, as published. Nobody here has run it

Momentum Strategy

Overview

A trend-following strategy. It compares the trailing return over a lookback window to symmetric buy and sell thresholds: strong up-trends earn a small buy tranche, and a held name in a strong down-trend is exited.

When to Use

  • During the strategy swarm, for symbols with enough price history.
  • Do NOT use it without a sufficient bar history; skip such symbols.

Inputs

InputRequiredDescription
snapshot.barsyesPrice bars covering at least the lookback window.
config.strategy.momentumyesLookback length and buy/sell return thresholds.

Process

  1. For each candidate symbol, take the last lookback_bars closing prices.
  2. Compute the trailing return from the first to the last close.
  3. If the return meets the buy threshold, propose a small buy tranche.
  4. If the return meets the sell threshold and the name is held, propose an exit.

Outputs

Buy or sell OrderProposal objects sized as a small tranche (buys) or a full exit (sells), each citing the trailing return.

Rationalizations

ExcuseRebuttal
"Buy more, the trend is obviously strong."Sizing is a fixed small tranche; the risk guardian still caps exposure.

Red Flags

  • A signal computed from fewer than the configured lookback bars.
  • A buy that pushes a position over its cap (the guardian will block it).

Verification

  • Every proposal cites a trailing return beyond the relevant threshold.
  • Proposals on tech-heavy names that breach limits are blocked downstream.

What ships with it

Read from the repository

Just SKILL.md. No reference files, no scripts.

Keep looking

Skills are one crate of 325,949. Ordering is by how many stacks a row turns up in, so the top of any crate is what has actually been picked rather than what has the most stars.