Price Alert Check (Lightweight)

Process watchlist price alerts and execute bracket orders with risk checks.

1|Updated Mar 6, 2026
One-click install
npx skills add https://github.com/leyuan/monet_agent --skill price-alert-check-lightweight
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: Price Alert Check (Lightweight)
Source: https://github.com/leyuan/monet_agent/tree/main/agent/skills/price-check
Command: npx skills add https://github.com/leyuan/monet_agent --skill price-alert-check-lightweight

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

This lightweight skill provides a fast, deterministic mechanism to act on price alerts without performing additional research or analysis, enabling quick decision-making in trading loops.

Core Features & Use Cases

  • Automated watchlist alert checks: Scan all watchlist stocks against their target_entry prices using threshold_pct; if no alerts are found, exit quickly.
  • Safety and decision logic: For each alerted stock, verify thesis and confidence, skip if there's an open order or confidence falls short, and evaluate risk before trading.
  • Deterministic execution: For passing stocks, run risk checks, choose order types based on confidence, use bracket orders with take_profit and stop_loss, and place orders.
  • Journal and traceability: Write a concise trade journal with which alerts fired, actions taken, and run_source.

Quick Start

Run check_watchlist_alerts(threshold_pct=2.0) to scan watchlist stocks against their target_entry prices.

Frequently Asked Questions about Price Alert Check (Lightweight)

High-intent search queries and answers about installing and using this skill.

FAQPage Schema
How do I automate price alerts for watchlist stocks to trigger trades?

To automate price alerts, run check_watchlist_alerts with a threshold_pct to scan watchlist stocks against target_entry prices. The system filters out open orders and low confidence, then executes bracket orders with take_profit and stop_loss when thresholds are met.

What is deterministic price alert processing in trading loops?

Deterministic price alert processing provides a fast mechanism to act on price alerts without additional research, enabling quick decision-making. It applies fixed threshold-based risk checks and executes trades using bracket orders to ensure traceable, rule-based outcomes.

How do I set up bracket orders with take_profit and stop_loss for automated trades?

Bracket orders with take_profit and stop_loss are placed automatically after deterministic risk checks pass for alerted stocks. Order types are chosen based on confidence levels, ensuring trades are executed with predefined exit strategies.

Can I skip stocks with open orders when scanning my watchlist for price alerts?

Yes, the watchlist alert check automatically skips stocks that have existing open orders. It also skips stocks if the thesis confidence falls short of requirements, preventing duplicate or low-probability trades.

How do I journal automated trading decisions for traceability?

Automated trading decisions are journaled using the record_decision function, which logs which alerts fired, actions taken, and the run_source. This creates a concise trade journal to ensure full traceability of automated executions.

Do I need to perform technical analysis before running a price alert check?

No, this lightweight skill is designed to act on price alerts without performing additional research or analysis. It relies on pre-set target_entry prices and confidence levels to drive fast, deterministic trading decisions.