stop-loss-check

Validate stop-loss placement against entry price for LONG and SHORT entries.

Updated Aug 27, 2026
One-click install
npx skills add https://github.com/FelixWayne0318/AItrader --skill stop-loss-check
Or copy as Structured Prompt for Agent
Please help me install this Agent Skill.
Skill: stop-loss-check
Source: https://github.com/FelixWayne0318/AItrader/tree/main/.claude/skills/stop-loss-check
Command: npx skills add https://github.com/FelixWayne0318/AItrader --skill stop-loss-check

SYSTEM DOCUMENTATION & REQUIREMENTS

What problem does it solve?

Validate stop-loss placement to ensure it sits on the correct side of the entry price and does not trigger immediately.

Core Features & Use Cases

  • Pre-trade validation: Checks SL positioning for LONG and SHORT entries.
  • Risk-safe defaults: Applies an epsilon tolerance to prevent false triggers when prices move quickly.
  • Debugging aid: Helps diagnose SL misconfigurations and verifies fixes.

Quick Start

Use the stop-loss-check skill to validate the current stop-loss configuration against an entry price, ensuring the SL is placed correctly for the active position.

Frequently Asked Questions about stop-loss-check

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

FAQPage Schema
How do I validate stop-loss placement to prevent immediate triggers at entry price?

To validate stop-loss placement, you must ensure the SL sits on the correct side of the entry price using deterministic, side-based comparisons. This pre-trade validation checks LONG and SHORT entries to prevent immediate triggers and ensure safe configuration.

Why does my stop-loss trigger immediately upon entering a trade?

Your stop-loss triggers immediately when it is placed on the wrong side of the entry price. Validating SL positioning with a price epsilon tolerance prevents these false triggers when prices move quickly during order execution.

How do I check if my stop-loss is correctly positioned for both LONG and SHORT trades?

You check stop-loss positioning by applying side-based comparisons for LONG and SHORT entries. This pre-trade validation enforces deterministic price context checks, verifying the SL configuration is safe and reliable before execution.

What is price epsilon tolerance and why is it needed for stop-loss validation?

Price epsilon tolerance is a constant used in stop-loss validation to prevent false triggers when prices move quickly. Applying this epsilon tolerance during pre-trade validation ensures the SL does not trigger immediately due to minor price fluctuations.

Can I use stop-loss validation to debug misconfigured SL placements?

Yes, you can use stop-loss validation as a debugging aid to diagnose SL misconfigurations. It checks the current stop-loss configuration against an entry price and verifies fixes to ensure the SL is placed correctly for the active position.