‹ 首页

fibonacci-trading

@bhala-srinivash · 收录于 1 周前

Fibonacci retracement and extension trading for NSE/BSE equities. Covers entry zones using retracement levels, profit targets using extension levels, and confluence zone identification. Use when the user asks: "fib levels for [stock]", "Fibonacci retracement", "fib extensions", "where to enter on pullback", "what are the retracement levels", "golden ratio level", "Fibonacci targets", or any question about Fibonacci-based trading levels for Indian equities.

适合你,如果做印度股票交易,需要斐波那契工具辅助决策。

/ 下载安装
fibonacci-trading.skill双击,或拖进 Claude 桌面版 / Cowork,即完成安装↓ .skill↓ .zip
用别的 agent?下载 .zip 解压,把文件夹放进它的技能目录
Claude Code~/.claude/skills/(项目级 .claude/skills/)
Codex CLI~/.codex/skills/
Cursor自动读取上面两处目录
其他工具见其文档的「skills」目录;两个下载是同一份文件,只是名字不同
/ 通过 npx 安装 校验哈希
npx oh-my-skill add bhala-srinivash/nse-trading-skills/fibonacci-trading
/ 通过 bash 安装
curl -fsSL https://oh-my-skill.com/install.sh | bash -s -- bhala-srinivash/nse-trading-skills/fibonacci-trading
/ 已经装过?验证本机副本,不用重装
npx oh-my-skill verify bhala-srinivash/nse-trading-skills/fibonacci-trading
安装目标可用 --agent / --scope 或 --to 明确指定;省略时只会在唯一已存在的 agent 目录上自动选择,零命中或多命中会停止并提示。content_hash 缺失或不一致均拒装。
30GitHub stars
~1K上下文体积 · 单文件
镜像托管

怎么用

技能原文 SKILL.md作者撰写 · MIT · 03fa324

Fibonacci Trading

Fibonacci levels identify high-probability zones where price tends to react — for entries on pullbacks and targets on extensions.

Prerequisites

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.

Data Needed
  1. Swing high and swing low: From fetch_historical_candle_data or user-provided prices
  2. Current price: get_quotes_and_depth from Groww, or user-provided
  3. For precise calculation, you can compute in Python: ```python 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, } ```
Retracement Levels (Entry Zones)

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 |

For downtrend retracements (price bouncing up):

Same levels but inverted — measure from swing high down to swing low.

Extension Levels (Profit Targets)

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 |

Calculating Extensions
# 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.000
How to Draw Fibs
  1. Identify the swing: Find the most recent significant high and low (at least 5% move)
  2. Direction matters:
  3. Uptrend retracement: Anchor at swing low, drag to swing high
  4. Downtrend retracement: Anchor at swing high, drag to swing low
  5. Use the right swing: The most recent completed swing, not one still in progress
  6. Multiple swings: You can draw Fibs from different timeframes. When levels from different swings overlap, that's a confluence zone (very strong).
Confluence Zones

The 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 |

Practical Examples
  • Fib 38.2% from daily swing aligns with SMA50 → strong buy zone
  • Fib 61.8% from weekly swing aligns with horizontal support from 3 months ago → high-probability entry
  • Fib extension 161.8% aligns with a round number (Rs.2,000) → likely profit target
Fibonacci Trading Rules
  1. Don't use Fibs in isolation — they work best as confirmation alongside S/R, volume, and indicators
  2. Zone, not line — treat each level as a zone (±1-2%), not a precise price
  3. Wait for reaction — don't blindly buy at a Fib level. Wait for a reversal candle (hammer, engulfing, etc.)
  4. Strongest entries: Fib 38.2% to 61.8% zone in a healthy trend with volume confirmation
  5. If 78.6% breaks: The trend is likely over — exit or reverse
按 MIT 许可原样转载,未经改动 · 在 GitHub 查看 →

评论

登录即可评论;带「已验证安装」的,是发布者名下有本店的安装或持有记录。