fibonacci-trading — independently scanned and version-tracked by SaferSkills.
SaferSkills independently audited fibonacci-trading (Agent Skill) and scored it 100/100 (green). The audit ran 55 deterministic rules across Security, Supply Chain, Maintenance, Transparency, and Community; it found 0 high-severity and 0 lower-severity findings. The full rule-by-rule trace and per-finding evidence are below. Free, methodology-open.
Findings & checks · 0 flagged
Every scanned point with the score it earned and what moved between them.
First recorded scan — no prior version to compare against.
The primary manifest — the file an agent reads to learn what this artifact does.
Fibonacci levels identify high-probability zones where price tends to react — for entries on pullbacks and targets on extensions.
No dependencies required. Just provide a swing high and swing low price — Claude calculates all Fib levels instantly. Enhanced with Groww MCP (auto-identifies swings from candles) or yfinance.
fetch_historical_candle_data or user-provided pricesget_quotes_and_depth from Groww, or user-provided diff = swing_high - swing_low
levels = {
"23.6%": swing_high - diff * 0.236,
"38.2%": swing_high - diff * 0.382,
"50.0%": swing_high - diff * 0.500,
"61.8%": swing_high - diff * 0.618,
"78.6%": swing_high - diff * 0.786,
}After a significant move up, price often pulls back to these levels before continuing:
| Level | Character | Trading Implication |
|---|---|---|
| 23.6% | Shallow pullback | Strong trend — buyers eager, enter aggressively |
| 38.2% | Normal pullback | Healthy trend — standard entry zone |
| 50.0% | Deep pullback | Trend weakening but viable — enter with caution |
| 61.8% | Golden ratio | Last stand for the trend — high reward if it holds |
| 78.6% | Very deep | Trend likely failed — avoid or use tight stop |
Same levels but inverted — measure from swing high down to swing low.
After a retracement completes and price resumes the trend:
| Level | Use |
|---|---|
| 100% | Measured move — equal to the prior swing |
| 127.2% | Conservative target — good for partial profit |
| 161.8% | Standard target — most common for swing trades |
| 200.0% | Extended target — for strong trends |
| 261.8% | Full extension — rare, only in powerful moves |
# For uptrend: price resumed from point C (retracement low)
ext_127 = C + (swing_high - swing_low) * 1.272
ext_161 = C + (swing_high - swing_low) * 1.618
ext_200 = C + (swing_high - swing_low) * 2.000The most powerful Fibonacci levels are where they align with other technical factors. These zones have the highest probability of price reaction.
| Confluence Combination | Strength |
|---|---|
| Fib level alone | Moderate |
| Fib + horizontal S/R | Strong |
| Fib + moving average (SMA50/200) | Strong |
| Fib + trendline | Strong |
| Fib + S/R + MA | Very strong |
| Fib from multiple timeframes overlapping | Very strong |
~30 seconds. Free. No account. Every finding cites a rule and a line of evidence.