Token导航 LogoToken导航TokenDH.com
研究检索external-servicegithub未标认证来源可访问许可证需确认审计通过

fibonacci-trading斐波那契交易

Agent Skill

fibonacci-trading 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

636

周安装

26

GitHub Stars

14

下载量

204
CodexClaudeCursorGemini CLI

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

unknown

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:fibonacci-trading(斐波那契交易)
来源仓库:https://github.com/bhala-srinivash/nse-trading-skills
仓库路径:skills/fibonacci-trading
安装命令:
npx skills add https://github.com/bhala-srinivash/nse-trading-skills --skill fibonacci-trading
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 npx skills 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

skills.shnpx skills
npx skills add https://github.com/bhala-srinivash/nse-trading-skills --skill fibonacci-trading

简介

fibonacci-trading 用于查找、检索和筛选相关信息,适合在 Codex、Claude、Cursor、Gemini CLI 中快速定位候选结果。

  • 适用于需要根据关键词或任务场景进行信息定位的场景。
  • 通过关键词搜索和来源线索筛选目标信息。
  • 安装命令:npx skills add https://github.com/bhala-srinivash/nse-trading-skills --skill fibonacci-trading。
  • 建议确认权限范围和维护状态后再使用。

SKILL.md

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

LevelCharacterTrading Implication
23.6%Shallow pullbackStrong trend — buyers eager, enter aggressively
38.2%Normal pullbackHealthy trend — standard entry zone
50.0%Deep pullbackTrend weakening but viable — enter with caution
61.8%Golden ratioLast stand for the trend — high reward if it holds
78.6%Very deepTrend 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:

LevelUse
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:

- Uptrend retracement: Anchor at swing low, drag to swing high - Downtrend retracement: Anchor at swing high, drag to swing low

  1. Use the right swing: The most recent *completed* swing, not one still in progress
  2. 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 CombinationStrength
Fib level aloneModerate
Fib + horizontal S/RStrong
Fib + moving average (SMA50/200)Strong
Fib + trendlineStrong
Fib + S/R + MAVery strong
Fib from multiple timeframes overlappingVery 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

适合场景

01

用户想查找某类 Agent Skill 时

02

需要根据任务场景推荐可安装能力包时

03

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

Codex

37.21%
按下载量换算76

Claude

30.33%
按下载量换算62

Cursor

19.37%
按下载量换算40

Gemini CLI

9.91%
按下载量换算20

安全审计

Gen Agent Trust Hub

通过

Socket

通过

Snyk

通过

权限和风险

external-service

该 Skill 可能调用第三方服务、云服务或外部模型 API,使用前需要确认账号、额度、数据发送范围和服务条款。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills