Crptopastor support & Resistance ProWhat is “Cryptopastor SR Pro (v2)”?
An adaptive support-and-resistance engine that clusters swing points into price zones , then auto-draws trade plans (entry, stop-loss, multi-stage take-profits) and breakout alerts — in a single, self-contained Pine v6 study.
Why traders use it
Cuts through chart noise by keeping only the strongest confluence zones.
Updates widths automatically to match recent volatility.
Plots ready-made long or short setups you can accept, ignore or tweak.
Fires alerts the instant price closes across a zone’s midpoint.
Works on any symbol and any timeframe, from 1 min scalps to weekly swing charts.
How it works (under the hood)
Pivot harvesting – Every bar, the script scans the last prd candles for confirmed highs/lows with ta.pivothigh / ta.pivotlow .
Data pool maintenance – It stores only the most recent maxnumpp pivots, keeping the dataset light.
Clustering – Pivots lying inside a dynamic channel width ( ChannelW % of the past 300-bar range) merge into a common zone.
Strength scoring – Each zone’s score = number of pivots inside it. The top maxnumsr zones that beat min_strength survive; weaker or overlapping zones are discarded.
Visual rendering – Zones appear as translucent boxes: lime below price (potential support) or red above (potential resistance). Mid-prices are auto-labelled with timeframe + value.
Breakout detection – When a candle closes across any zone midpoint, an alert fires (“Support Broken” / “Resistance Broken”).
Trade-plan overlay (optional) – The script finds the closest valid zone and prints:
• Entry at midpoint
• Stop-loss buffered by sl_buffer_pct of zone height
• Up to num_tp_levels take-profit labels on successive opposite zones
Key inputs & typical tweaks
Pivot Period (prd) – Higher on H4/D1, lower on scalps.
Source – “High/Low” (classic) or “Close/Open” for body-based pivots.
Maximum Channel Width % – Tighten in ranging markets, widen in trending ones.
Minimum Strength – Raise to display only the most respected zones.
Show Trade Setups – Toggle if you want a pure S/R map without entries/SL/TPs.
Practical guide
Add the indicator to your chart and adjust ChannelW % until each zone looks realistic for your symbol’s volatility.
Hover a zone to view its pivot count; more pivots = stronger level.
Enable alerts → “Support or Resistance Broken” to catch live momentum shifts.
If you trade the built-in setups, confirm them with your own filters (volume, trend filters, etc.) and size positions around the printed stop-loss.
Disable the Trade Setup layer when back-testing other strategies — the S/R boxes remain.
What makes it different from classic horizontal lines?
Zone widths breathe with market range instead of staying fixed.
Self-filtering strength score removes the clutter of weak levels.
Integrated, label-based trade plans eliminate spreadsheet math.
Pure price-action logic — no MAs, RSI, Bollinger Bands or repackaged public code.
Pine-snip preview
// simplified glimpse only
float ph = ta.pivothigh(high, prd, prd)
float pl = ta.pivotlow(low, prd, prd)
// …clustering & scoring…
Disclaimer
This indicator is a technical-analysis tool, not financial advice. Test thoroughly on demo or small size before risking capital.
อินดิเคเตอร์และกลยุทธ์
xGhozt Wickless Candle Streak ProbabilityThe xGhozt Wickless Candle Streak Probability is a custom Pine Script indicator designed to identify and quantify the occurrence of consecutive "wickless" candles of the same trend (either bullish or bearish).
Key Features:
Wickless Candle Detection: It first identifies candles that lack an upper or lower wick (meaning their open/close is equal to their high/low, respectively).
Consecutive Streak Tracking: The indicator tracks how many wickless bullish candles occur in a row, and similarly for wickless bearish candles.
User-Defined Streak Length: You can specify a Streak Length in the indicator's settings. This defines how many consecutive wickless candles are needed to register a "streak."
Probability Calculation: For the chosen Streak Length, the indicator calculates the historical probability (as a percentage) of encountering such a streak for both bullish and bearish wickless candles. This is done by dividing the number of times a streak of that length has occurred by the total number of candles scanned.
On-Chart Display: The results, including the total wickless candles, total scanned candles, and the calculated streak probabilities, are displayed in a convenient table directly on your chart.
Purpose:
This indicator helps traders and analysts understand the historical likelihood of sustained, strong directional moves as indicated by consecutive wickless candles. By quantifying these probabilities, it can provide insights into potential continuation patterns or extreme market conditions, which might be useful for developing trading strategies or confirming market biases.
TradersAID - Adaptive Smoothing Velocity ColoringTradersAID – Adaptive Smoothing Velocity Coloring
1. Overview
TradersAID – Adaptive Smoothing Velocity Coloring is a momentum visualization tool designed to highlight bullish or bearish pressure directly on price bars — helping you intuitively read directional strength and velocity shifts in any market or timeframe.
Using a Kalman-inspired estimation framework originally developed for aerospace and autonomous navigation, this tool analyzes the velocity of price movement and assigns a contextual candle color — offering a clean and readable way to interpret short-term flow.
Whether you’re navigating ranges or watching for trend continuation, this visualization simplifies complex data into actionable visual rhythm.
2. What It Does
Instead of measuring only price, the script focuses on price velocity — the rate of change over time. It computes this through a proprietary estimator that continuously adapts to volatility and momentum shifts.
The output is color-coded candles that reflect velocity dynamics:
• Green shades represent bullish acceleration
• Red shades reflect bearish velocity
• Neutral tones indicate fading momentum or transition phases
This allows you to quickly assess market tone:
• In strong trends: Watch for fading momentum (weaker colors)
• In ranges: Spot subtle shifts that hint at upcoming breakout direction
• Near potential reversals: Diverging velocity and price can stand out at a glance
3. How to Use It
• Momentum Insight:
Use color intensity to judge whether the current move is gaining or losing strength.
• Breakout Anticipation:
In sideways markets, shifting colors within the range can help anticipate which side may take control next.
• Divergence Reading:
Look for double tops or bottoms where price holds but velocity changes — often a hint that the move is maturing.
• Visual Confirmation Layer:
Combine with structural tools (like TradersAID Warning Dots or Trend Bands) to add a layer of momentum awareness.
4. Key Features
• Adaptive Velocity Model: Kalman-filter-like algorithm continuously tracks price velocity
• Gradient Candle Coloring: Smooth scale from deep red (strong bearish) to deep green (strong bullish)
• Flexible Sensitivity Modes:
o Slow – smoothest interpretation
o Regular – balanced tone
o Fast – more responsive
• RSI Normalization: Translates raw velocity into a familiar oscillator scale
• Full Overlay Integration: Candle coloring works seamlessly with other studies on the same chart
5. Technical Basis (Why It’s Closed Source)
The tool is built on a proprietary Unscented Kalman Filter implementation that estimates both price and its velocity simultaneously.
This advanced approach is rare in retail tools, drawing from real-time estimation techniques used in robotics and aerospace applications.
While the source remains closed to protect the performance logic and smoothing implementation, the core concepts — adaptive filtering, velocity-based analysis, and visual gradient output — are fully explained here for transparency and compliant understanding.
6. Settings
• Sensitivity Modes: Fast / Regular / Slow
• RSI Length: Adjustable to control the smoothness of velocity normalization
• Color Theme: Intuitive gradient from red (bearish) to green (bullish)
• Compatible Timeframes: Designed to work across all timeframes — no restriction
7. Disclaimer
This tool is for educational and informational purposes only. It does not offer financial advice, predict outcomes, or generate trading signals. Always use in conjunction with your own analysis and supporting systems.
Traders AID / Adaptive Smoothing Line (use on 1-week TF)TradersAID – Adaptive Smoothing Line (use on 1-week TF)
1. Overview
TradersAID – Adaptive Smoothing Line is a trend-following overlay designed to bring structure to noisy markets — especially on the 1-week chart, where clarity is crucial.
Instead of using conventional moving averages, this tool applies a Kalman-inspired smoothing method that adapts to changing price behavior.
Originally used in fields like robotics and autonomous driving, this filtering concept helps track directional flow without overreacting to minor fluctuations — making it easier to identify sustained moves or exhaustion patterns.
2. What It Does
The line continuously adapts to current market conditions by filtering volatility and directional flow through an internal estimator logic.
Unlike laggy moving averages, it does not simply average past prices — it adjusts dynamically based on how price behaves.
Key behaviors include:
• Directional slope that reflects trend strength
• Increased sensitivity during acceleration phases
• Stabilized flattening during sideways periods
This makes the trend easier to follow without being distracted by short-term chop.
3. How to Use It
• Trend Interpretation:
Use the line’s angle to judge momentum. Steep slopes show conviction, while flattening may signal transition or fading strength.
• Support & Resistance Context:
During trending phases, the line often acts as dynamic support or resistance — especially when combined with other tools.
• Volatility Filtering:
In consolidation, the line becomes smoother, helping reduce noise and simplify your view of structure.
• Layering Tool:
Use it as a visual foundation beneath more reactive tools like TradersAID Warning Dots or Velocity Coloring to stay grounded in context.
4. Key Features
• Adaptive Behavior: Responds to both price and volatility
• Three Modes:
o Slow for structure clarity
o Regular for balanced responsiveness
o Fast for shorter-term context
• Overlay Design: Plots directly on price for seamless interpretation
• Minimalist Output: Clean, unobtrusive line — no clutter
5. Technical Basis (Why It’s Closed Source)
This tool uses a custom smoothing technique based on Kalman-inspired logic, tuned specifically for longer-term trend structure.
While not a full Kalman implementation, the core idea is drawn from systems that track state under uncertainty — offering stability without lagging behind price.
The algorithm adapts continuously to live market input, producing a smooth yet responsive curve that reflects trend direction and change in a visually intuitive way.
As this smoothing mechanism is not available in open-source scripts and is part of a broader proprietary system, the code remains closed to protect its originality and performance edge.
6. Settings
• Mode Selection: Fast / Regular / Slow
• Styling Controls: Color, line width, smoothing curve
• Frame Lock:
✅ This tool is designed to work exclusively on the 1-week timeframe.
7. Disclaimer
This script is for educational and informational purposes only. It does not provide financial advice or generate trading signals. Use with your own judgment and supporting tools.
TradersAID / Adaptive Smoothing Channel (use on 1W chart)TradersAID – Adaptive Smoothing Channel (use on 1-Week chart)
Overview
TradersAID – Adaptive Smoothing Channel is a two-line price overlay designed to help traders interpret trend structure and shifting momentum zones on the 1-week chart only.
Unlike traditional moving averages or fixed smoothing methods, this tool uses an adaptive approach inspired by Kalman filtering — a concept widely used in robotics and control systems to track signals in noisy environments. Applied to price, this allows the band to adapt to directional flow and volatility while filtering out distracting short-term fluctuations.
1.What It Does
This tool builds a dynamic corridor around price using:
• A faster line that follows near-term directional movement
• A slower line that anchors broader market structure
Together, they form a responsive band that:
• Tilts with trend direction (via slope)
• Expands or contracts with volatility
• Fills the space between to show directional rhythm
It’s especially useful for observing how price moves within sustained trends or compression zones, helping traders visually interpret market structure with more clarity.
2. How to Use It
• Trend Structure:
Follow the slope of the band to understand overall direction. A narrowing band may indicate consolidation; a widening band may reflect strong follow-through.
• Momentum Compression Zones:
Watch for tightening distance between the lines — this may signal the market is preparing for a structural transition or breakout.
• Clarity Layer:
Overlay this tool with others (e.g. TradersAID Warning Dots) to reduce noise and improve decision context.
3. Key Features
• Dual Adaptive Lines: One fast, one slow — capturing different time dynamics
• Shaded Fill Zone: Highlights directional bias and rhythm
• 3 Reaction Modes: Slow / Regular / Fast for different sensitivities
• Overlay Style: Plots directly on price
• Minimalist Layout: Clean visual language
4. Technical Basis (Why It’s Closed Source)
This tool is based on a custom smoothing logic inspired by Kalman filtering, adapted specifically for charting market structure.
While it does not replicate a full Kalman system, it borrows key principles: dynamically adjusting to noisy input while maintaining structural clarity.
The algorithm was developed internally to provide a visual layer that integrates into the broader TradersAID analysis system — offering something distinct from public indicators. Its behavior, flexibility, and integration were designed to serve advanced structural analysis, and as such, the script is closed to protect proprietary logic and intellectual property.
5. Settings
• Mode Selector: Fast / Regular / Slow
• Color Fill Toggle & Styling
• Frame Lock:
✅ This script is built to work exclusively on the 1-week timeframe.
6. Disclaimer
This tool is for educational and informational purposes only. It does not offer financial advice or generate trading signals. Always use with your own strategy and discretion.
Al-Jo-Juto detect big candles, basically it find big candles in a cluster. easier to see, and can add to alerts
xGhozt Wickless Candles with TailSimple script showing candles missing an upper or lower wick. As candles tend to have a low and a high, they will most certainly form wicks. It is rare to have wickless candles on longer time frames, so it's more relevant on 1h and above.
Additionally, this indicator now visually tracks these 'missing wicks' as horizontal 'tails'. These tails extend from the wickless candle's extreme (low for bullish, high for bearish) and continue to stretch to the right until price action finally touches that level. Once touched, the tail disappears, signifying that the 'missing wick' has been filled or 'mitigated'.
What can you do about it?
If you see for example a Bitcoin 4h candle that hasn't formed two wicks yet, there are high chances that the missing wick will be formed at one point or another. The persistent horizontal tail vividly highlights these unmitigated levels, allowing you to identify potential price magnets. You could therefore consider taking a trade in the direction of the missing wick. You can set alerts on wickless candles if needed.
Volume Higher Than Previous CandlesThis indicator highlights a bar when the volume of the current candle is greater than the highest volume of the previous N candles, N is user defined (default is 25).
NTL SCALP v2 with TP & SL (Absolute)NTL SCALP v2 with TP & SL (Absolute) – Scalping Trend System
Timeframe Example: 15-minute (XAUUSD)
Indicator Type: Combined trend-following and momentum-based scalping system
🔍 Purpose of This Indicator
This script is designed as a unified tool for intraday scalpers, combining multiple essential components—trend detection, entry signal logic, and automated risk management—into one streamlined system. Rather than simply merging various indicators, it integrates them with a clear purpose: to generate trade setups with actionable entries and realistic TP/SL targets in trending markets.
📌 Core Components & How They Work Together
Multi-Ribbon EMA Trend Filter
Multiple Exponential Moving Averages (EMAs) are used to detect short-, medium-, and long-term trends.
The EMA ribbons visually shift from red (bearish) to green (bullish) depending on the overall price structure.
These ribbons not only indicate trend direction but also serve as dynamic support/resistance levels.
Momentum-Based Entry Signals
Buy and sell signals are triggered when price momentum aligns with the trend (e.g., bullish breakout above EMAs with supporting candle structure).
The system ensures that trades are only taken in the direction of the prevailing trend, reducing the likelihood of false signals.
Auto-Generated Entry, TP & SL Levels
Once a valid setup is detected, the script plots the entry price, stop-loss (SL), and up to four take-profit (TP1–TP4) targets.
These levels are based on recent volatility and trend strength, allowing traders to manage risk and reward efficiently.
Labels such as “TP1 HIT” or “SL HIT” are displayed on the chart to show trade progress in real-time.
✅ How to Use This Indicator
Designed for scalping and short-term trend trading during high-volume market sessions (e.g., London/New York).
Ideal for traders who prefer clear rules for entry, exit, and risk management.
Can be used standalone, but works even better with confirmation from price action or volume-based tools.
🛑 Note
To ensure effective performance, avoid using this tool in ranging or low-volatility markets. It is optimized for trending environments.
⚠️ Disclaimer
This script is intended for educational purposes and does not constitute financial advice. Always conduct your own analysis and apply risk management when trading.
Forex Sessions (Asia, London, NY)This indicator highlights the current day’s Forex trading sessions for Asia, London, and New York with clear vertical lines. Each session’s open and close times are marked with distinct colors and clean labels for quick visual reference. Designed to help traders easily identify key market hours on any timeframe. UTC+2 !!!
MTX TP SLBest use for 5 minute timeframe
scalping mode
with stop loss and take profit prices
any currencies
use at your own risk in understanding chart.
Trading Sessions (Asia, Europe, US) [Moscow Time]Title:
Trading Sessions (Asia, Europe, US)
Description:
This indicator highlights the three major trading sessions — Asian, European, and US — based on Moscow Time (GMT+3). It's useful for identifying key market activity periods and understanding when volatility typically increases.
Asian Session: 03:00–10:00 MSK (Tokyo, Hong Kong, Sydney) — shown in blue
European Session: 10:00–17:00 MSK (London, Frankfurt) — shown in green
US Session: 17:00–00:00 MSK (New York, Chicago) — shown in red
The background shading dynamically adjusts to highlight each session on any timeframe.
This tool is perfect for traders who want to visually track global session activity in their local time zone.
Shift 3M - 30Y Yield Spread🟧 Shift 3M - 30Y Yield Spread
- This indicator visually displays the **inverse of the US Treasury short-long yield spread** (3-month minus 30-year spread reversal signal) in a "price chart-like" form.
- By default, the spread line is shifted by 1 year to help anticipate forward market moves (you can adjust this offset freely).
- Especially customized to be analyzed together with the movements of US indices like the S&P 500, and to help understand broader market cycles.
✅ Description
- Normalizes the spread based on a rolling window length you set (default: 500 bars).
- Both the normalization window and offset (shift) are fully customizable.
- Then, it scales the spread to match your chart’s price range, allowing you to intuitively compare spread movements alongside price action.
- Instantly see the **inverse (reversal) signals of the short-long yield spread**, curve steepening, and how they align with actual price trends.
⚡ By reading macro yield signals, you can **anticipate exactly when a market crash might come or when an explosive rally is about to start**.
⚡ A perfect tool for macro traders and yield curve analysts who want to quickly catch major market turning points!
copyright @invest_hedgeway
============================================================
🟧3개월 - 30년 물 장단기 금리차 역수
- 이 인디케이터는 미국 국채 **장단기 금리차 역수**(3개월물 - 30년물 스프레드의 반전 시그널)를 시각적으로 "가격 차트"처럼 표시해 줍니다.
- 기본적으로 스프레드 선은 **1년(365봉) 시프트**되어 있어, 시장을 선행적으로 파악할 수 있도록 설계되었습니다 (값은 자유롭게 조정 가능).
- 특히 S&P500 등 미국 지수 흐름과 함께 분석할 수 있도록 맞춤화되었으며, 시장 사이클을 이해하는 데에도 큰 도움이 됩니다.
✅ 설명
- 지정한 롤링 윈도우 길이(기본: 500봉)를 기준으로 스프레드를 정규화합니다.
- 정규화 길이와 오프셋(시프트) 모두 자유롭게 설정 가능
- 이후 현재 차트의 가격 레인지에 맞게 스케일링해, 가격과 함께 흐름을 직관적으로 비교할 수 있습니다.
- **장단기 금리차의 역전(역수) 시그널**, 커브 스티프닝 등과 실제 가격 움직임의 관계를 한눈에 확인
⚡ 거시 금리 신호를 통해 **언제 폭락이 올지, 언제 폭등이 터질지** 미리 감지할 수 있습니다.
⚡ 시장의 전환점을 빠르게 캐치하고 싶은 매크로 트레이더와 금리 분석가에게 완벽한 도구!
copyright @invest_hedgeway
TTNY - CISD model - HTFThis is the HTF version of the CISD indicator. This one is NOT armed with alerts though.
It shows the CISD of a higher timeframe chart after taking an 'Important level'.
Timeframe inputs that are not a multiple of the chart's timeframe will result in a runtime error.
Alpha version
YSR HEIKENASHI WITH SIGNALS s📌 Purpose:
This script is designed to generate Buy and Sell signals based on Heiken Ashi (HA) candles that:
Show a change in trend direction (color change),
Have no wicks (pure-bodied candles),
And optionally filter these signals using an EMA trend filter.
✅ Usage Tips
Works best on Heiken Ashi candles (enable in TradingView chart settings).
Choose a suitable timeframe (e.g., 5min or 15min) based on your strategy.
Adjust confirmBars to change how many same-colored HA candles must appear before a signal.
Use with trend-following strategies and optionally combine with price action or support/resistance.
🔍 Main Advantages
Eliminates noise with HA smoothing
Filters strong trend reversals using wickless HA logic
Signal confirmation using candle count
EMA filter prevents trading against the trend
Locking logic reduces repainting and over-signaling
SMH - RSI PanelPlots multiple Relative Strength Index (RSI) lines from different timeframes in a dedicated panel. Designed to be used with the main 'SMH' indicator.
IBD 50 index🟠 FFTY (IBD 50 ETF) Base Date Rebased Indicator
FFTY is an ETF that invests in the top 50 growth stocks selected by IBD (Investor’s Business Daily). Simply put, it’s a basket of strong, fast-growing leaders.
💡 Ever wondered how FFTY has performed since key moments like the "March 2020 COVID bottom" or "end of 2022"? Now you can easily check!
This indicator allows you to set a custom base date (year, month, day) and uses your chart’s closing price on that date as the reference point.
It then calculates and visualizes FFTY’s relative performance trend from that base.
✅ Freely choose base date, line color, and transparency
✅ Includes pre-base date data → analyze full historical trends
✅ Perfect for growth investors, ETF watchers, and market turning point analysis
⭐ Inspired by the way legendary trader Mark Minervini analyzes relative strength and acceleration. This is one of my most frequently shared indicators on X (formerly Twitter)!
copyright @invest_hedgeway
============================================================
🟠 FFTY (IBD 50 ETF) 기준일 리베이스 인디케이터
- FFTY는 미국 투자 전문지 IBD(Investor’s Business Daily)가 선정한 성장주 50종목(IBD 50)에 투자하는 ETF입니다. 쉽게 말하면, 빠르게 성장하는 강한 주식들의 모음집입니다.
💡 "2020년 3월 코로나 저점", "2022년 연말" 등 내가 원하는 기준일을 기준으로, FFTY가 이후에 얼마나 상승했는지 혹은 어떤 흐름을 보였는지 궁금하셨죠?
이 인디케이터는 사용자가 입력한 기준 연도, 월, 일과 현재 차트의 종가를 기준점으로 삼아,
FFTY의 상대적 수익률 흐름을 계산해 시각화해 줍니다.
✅ 기준일, 색상, 투명도 자유롭게 설정 가능
✅ 기준일 이전 구간 포함 → 과거부터 전체 흐름 한눈에 분석
✅ 성장주 투자, ETF 추적, 시장 전환점 연구 등 다양한 활용
⭐ 전설적인 트레이더 마크 미너비니(Mark Minervini)의 상대 강도 분석 방식에서 착안. 마크 미너비니가 X(구 트위터)에 가장 자주 올리는 대표 지표 중 하나입니다!
copyright @invest_hedgeway
MERGED EMA21 RETEST Breakout BUY/SELLits an breakout strategy which can give you big reward at the risk of small risk.
NEXGEN XNEXGEN X is a powerful multi-layered technical indicator developed by NexGen Trading Academy to give traders an edge by combining the strength of trend analysis (ADX) with the precision of momentum timing (MACD). This all-in-one tool is specially designed for those who want to identify strong trends and execute high-probability entries based on momentum shifts.
NEXGEN ADXNEXGEN ADX
NEXGEN ADX – Advanced Trend Strength & Directional Indicator
Purpose:
The NEXGEN ADX is a powerful trend analysis tool developed by NexGen Trading Academy to help traders identify the strength and direction of market trends with precision. Based on the Average Directional Index (ADX) along with +DI (Positive Directional Indicator) and –DI (Negative Directional Indicator), this custom indicator provides a reliable foundation for both trend-following strategies and trend reversal setups.
Cobra Hedge Dashboard – V1.0 Final Master
# 🧠 Cobra Hedge Dashboard – V1.0 Final Master
A **professional hedge management panel** built to help you monitor and manage Buy/Sell positions in real time — with clarity, logic, and safety.
Created by **Cobra Aljarhy**, and now available to the community **100% FREE**.
---
## 💡 What is this tool used for?
This tool is made for **traders using hedge strategies** — managing both Buy and Sell trades on the same symbol — to:
- 📊 **Track floating profits/losses**
- 🧮 **Calculate equity, drawdown %, and coverage %**
- 🧭 **Identify danger and safe zones for unlocking**
- 📍 **Find the breakeven price**
- 📤 **Suggest when to cool down positions**
- 🔔 **Give clear recommendations based on account status**
Whether you're in deep floating losses or planning to scale out, this dashboard gives you visibility and control — instead of relying on emotions.
---
## ✨ Key Features
- 🔁 Real-time monitoring of Buy & Sell trades
- 📈 Equity (manual or auto)
- 💥 Floating P/L breakdown
- ⚠️ Danger Zone & Safe Zone detection
- 🎯 Breakeven price auto calculation
- 🧪 Cooling suggestions (Buy or Sell)
- 📝 Recommendation panel with direct advice
- 🔔 Optional alerts or webhook support
---
## ✅ Works With Any Symbol:
- Forex
- Commodities (e.g. Gold)
- Crypto
- Indices
- CFDs
Just input the correct entry prices, lots, and contract size — and the system takes care of the logic.
---
Released by **Cobra Aljarhy** for every trader out there dealing with hedge chaos or deep floating positions.
💚 Use it. Share it. Help others.
> The strongest traders don’t fear floating loss – they manage it smartly.
# 🧠 Cobra Hedge Dashboard – V1.0 Final Master
لوحة تحكم احترافية لإدارة صفقات الهيدج المعقدة في الأسواق المالية، مصممة خصيصًا لمساعدتك على اتخاذ قرارات ذكية لحظة بلحظة بناءً على حالة الحساب الفعلية.
---
## 💡 ما وظيفة هذه الأداة؟
📌 تستخدم هذه الأداة لمتابعة وتقييم مراكز الهيدج المفتوحة (شراء وبيع) في نفس الوقت على نفس الأداة المالية، وتساعدك في:
- **فهم وضع الحساب الحالي بدقة**
- **معرفة الوقت المثالي لفك صفقة أو التبريد**
- **تجنّب مناطق الخطر قبل فوات الأوان**
- **حساب نقطة التعادل بين المراكز Buy/Sell**
- **اتخاذ قرارات إدارة مخاطر منطقية بناءً على بيانات حية**
🚀 مناسبة لأي متداول يستخدم استراتيجيات الهيدج أو تبريد المراكز أو السيطرة على الخسارة العائمة.
---
## 📊 المزايا الأساسية:
- 🔁 مراقبة مباشرة لصفقات Buy وSell
- 🧮 حساب تلقائي لـ:
- Floating P/L
- Drawdown %
- Coverage %
- Equity (يدوي أو تلقائي)
- Breakeven Price
- ⚠️ اكتشاف تلقائي لمناطق الخطر (Danger Zone) والأمان (Safe Zone)
- 🧪 توصية تلقائية بالتبريد الذكي (Cooling Suggestion)
- 📝 عرض توصية واضحة حسب حالة الحساب الفعلية
- 🔔 تنبيهات صوتية أو عن طريق Webhook/Telegram (اختياري)
---
## ⚙️ متوافق مع:
✅ أي أداة مالية على TradingView:
- الذهب (XAUUSD)
- العملات (Forex)
- المؤشرات (Indices)
- العملات الرقمية (Crypto)
- الأسهم وCFD
فقط أدخل بيانات الصفقة بدقة (سعر الدخول – اللوت – الرصيد).
--
تم تطويره بالكامل من قبل **Cobra Aljarhy**
💚 استخدمه – انشره – وادعم كل متداول حقيقي يبحث عن إنقاذ مراكزه بإستراتيجية لا بعشوائية.
--
> 🧠 المنطق هو السلاح الأقوى في السوق – واستخدامك له يبدأ من هنا.
SMH**SMH Multi-Timeframe RSI & EMA Table Indicator**
This TradingView indicator displays two tables on your chart:
1. **RSI Table:**
- Shows the Relative Strength Index (RSI) values for multiple timeframes (from 1m up to 3M).
- Each cell is color-coded:
- **Green** if RSI is above the upper threshold (overbought)
- **Red** if RSI is below the lower threshold (oversold)
- **Gray** otherwise
- All thresholds and visible timeframes are fully customizable in the settings.
2. **EMA Table:**
- Shows Exponential Moving Average (EMA) values for multiple timeframes (from 1m up to 1M).
- EMA periods are custom-set for each timeframe (e.g., 1m=590, 5m=270, 1h=72, etc.).
- Each EMA cell is color-coded:
- **Green** if the EMA is rising
- **Red** if the EMA is falling
- **Gray** if unchanged
- EMA values are formatted for readability (two decimal places).
**Features:**
- Dark mode support for better visibility.
- All timeframes and thresholds are user-configurable.
- Gives a quick, color-coded overview of RSI and EMA trends across multiple timeframes.