Golden Cross 50/200 EMATrend-following systems are characterized by having a low win rate, yet in the right circumstances (trending markets and higher timeframes) they can deliver returns that even surpass those of systems with a high win rate.
Below, I show you a simple bullish trend-following system with clear execution rules:
System Rules
-Long entries when the 50-period EMA crosses above the 200-period EMA.
-Stop Loss (SL) placed at the lowest low of the 15 candles prior to the entry candle.
-Take Profit (TP) triggered when the 50-period EMA crosses below the 200-period EMA.
Risk Management
-Initial capital: $10,000
-Position size: 10% of capital per trade
-Commissions: 0.1% per trade
Important Note:
In the code, the stop loss is defined using the swing low (15 candles), but the position size is not adjusted based on the distance to the stop loss. In other words, 10% of the equity is risked on each trade, but the actual loss on the trade is not controlled by a maximum fixed percentage of the account — it depends entirely on the stop loss level. This means the loss on a single trade could be significantly higher or lower than 10% of the account equity, depending on volatility.
Implementing leverage or reducing position size based on volatility is something I haven’t been able to include in the code, but it would dramatically improve the system’s performance. It would fix a consistent percentage loss per trade, preventing losses from fluctuating wildly with changes in volatility.
For example, we can maintain a fixed loss percentage when volatility is low by using the following formula:
Leverage = % of SL you’re willing to risk / % volatility from entry point to stop loss
And when volatility is high and would exceed the fixed percentage we want to expose per trade (if the SL is hit), we could reduce the position size accordingly.
Practical example:
Imagine we only want to risk 15% of the position value if the stop loss is triggered on Tesla (which has high volatility), but the distance to the SL represents a potential 23.57% drop. In this case, we subtract the desired risk (15%) from the actual volatility-based loss (23.57%):
23.57% − 15% = 8.57%
Now suppose we normally use $200 per trade.
To calculate 8.57% of $200:
200 × (8.57 / 100) = $17.14
Then subtract that amount from the original position size:
$200 − $17.14 = $182.86
In summary:
If we reduce the position size to $182.86 (instead of the usual $200), even if Tesla moves 23.57% against us and hits the stop loss, we would still only lose approximately 15% of the original $200 position — exactly the risk level we defined. This way, we strictly respect our risk management rules regardless of volatility swings.
I hope this clearly explains the importance of capping losses at a fixed percentage per trade. This keeps risk under control while maintaining a consistent percentage of capital invested per trade — preventing both statistical distortion of the system and the potential destruction of the account.
About the code:
Strategy declaration:
The strategy is named 'Golden Cross 50/200 EMA'.
overlay=true means it will be drawn directly on the price chart.
initial_capital=10000 sets the initial capital to $10,000.
default_qty_type=strategy.percent_of_equity and default_qty_value=10 means each trade uses 10% of available equity.
margin_long=0 indicates no margin is used for long positions (this is likely for simulation purposes only; in real trading, margin would be required).
commission_type=strategy.commission.percent and commission_value=0.1 sets a 0.1% commission per trade.
Indicators:
Calculates two EMAs: a 50-period EMA (ema50) and a 200-period EMA (ema200).
Crossover detection:
bullCross is triggered when the 50-period EMA crosses above the 200-period EMA (Golden Cross).
bearCross is triggered when the 50-period EMA crosses below the 200-period EMA (Death Cross).
Recent swing:
swingLow calculates the lowest low of the previous 15 periods.
Stop Loss:
entryStopLoss is a variable initialized as na (not available) and is updated to the current swingLow value whenever a bullCross occurs.
Entry and exit conditions:
Entry: When a bullCross occurs, the initial stop loss is set to the current swingLow and a long position is opened.
Exit on opposite signal: When a bearCross occurs, the long position is closed.
Exit on stop loss: If the price falls below entryStopLoss while a position is open, the position is closed.
Visualization:
Both EMAs are plotted (50-period in blue, 200-period in red).
Green triangles are plotted below the bar on a bullCross, and red triangles above the bar on a bearCross.
A horizontal orange line is drawn that shows the stop loss level whenever a position is open.
Alerts:
Alerts are created for:Long entry
Exit on bearish crossover (Death Cross)
Exit triggered by stop loss
Favorable Conditions:
Tesla (45-minute timeframe)
June 29, 2010 – November 17, 2025
Total net profit: $12,458.73 or +124.59%
Maximum drawdown: $1,210.40 or 8.29%
Total trades: 107
Winning trades: 27.10% (29/107)
Profit factor: 3.141
Tesla (1-hour timeframe)
June 29, 2010 – November 17, 2025
Total net profit: $7,681.83 or +76.82%
Maximum drawdown: $993.36 or 7.30%
Total trades: 75
Winning trades: 29.33% (22/75)
Profit factor: 3.157
Netflix (45-minute timeframe)
May 23, 2002 – November 17, 2025
Total net profit: $11,380.73 or +113.81%
Maximum drawdown: $699.45 or 5.98%
Total trades: 134
Winning trades: 36.57% (49/134)
Profit factor: 2.885
Netflix (1-hour timeframe)
May 23, 2002 – November 17, 2025
Total net profit: $11,689.05 or +116.89%
Maximum drawdown: $844.55 or 7.24%
Total trades: 107
Winning trades: 37.38% (40/107)
Profit factor: 2.915
Netflix (2-hour timeframe)
May 23, 2002 – November 17, 2025
Total net profit: $12,807.71 or +128.10%
Maximum drawdown: $866.52 or 6.03%
Total trades: 56
Winning trades: 41.07% (23/56)
Profit factor: 3.891
Meta (45-minute timeframe)
May 18, 2012 – November 17, 2025
Total net profit: $2,370.02 or +23.70%
Maximum drawdown: $365.27 or 3.50%
Total trades: 83
Winning trades: 31.33% (26/83)
Profit factor: 2.419
Apple (45-minute timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $8,232.55 or +80.59%
Maximum drawdown: $581.11 or 3.16%
Total trades: 140
Winning trades: 34.29% (48/140)
Profit factor: 3.009
Apple (1-hour timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $9,685.89 or +94.93%
Maximum drawdown: $374.69 or 2.26%
Total trades: 118
Winning trades: 35.59% (42/118)
Profit factor: 3.463
Apple (2-hour timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $8,001.28 or +77.99%
Maximum drawdown: $755.84 or 7.56%
Total trades: 67
Winning trades: 41.79% (28/67)
Profit factor: 3.825
NVDA (15-minute timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $11,828.56 or +118.29%
Maximum drawdown: $1,275.43 or 8.06%
Total trades: 466
Winning trades: 28.11% (131/466)
Profit factor: 2.033
NVDA (30-minute timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $12,203.21 or +122.03%
Maximum drawdown: $1,661.86 or 10.35%
Total trades: 245
Winning trades: 28.98% (71/245)
Profit factor: 2.291
NVDA (45-minute timeframe)
January 3, 2000 – November 17, 2025
Total net profit: $16,793.48 or +167.93%
Maximum drawdown: $1,458.81 or 8.40%
Total trades: 172
Winning trades: 33.14% (57/172)
Profit factor: 2.927
Indicatori e strategie
EMA Cross (with HTF Option)Apply this indicator to your chart.
On any timeframe (especially 1m):
Make sure “Use fixed HTF for EMA 1 & 2?” = ON
Set HTF Resolution = "3"
EMA 1 (black) and EMA 2 (red) will now be the 3m 9 & 20 EMAs, even on the 1m chart.
EMA 3 & 4 stay as your normal local EMAs (50 & 200, or whatever you want).
SNS 2TimeFrame 1-Candles Indicator contains 2 time frame candles. once higher candle green and lower candle smoothed then it will consider as bullish.
Candle Volume CoreIA VolCore — Candle Volume Core
Indicator Overview
IA VolCore is an intra‑candle volume analysis tool that shows where the core traded volume is concentrated inside each candle.
It visualizes how buyers and sellers interacted within the bar and highlights key levels and zones where the highest activity takes place.
How Calculations Work
The indicator uses the lowest available timeframe data to calculate volume distribution inside each candle.
If you have a Premium or higher subscription, VolCore uses second‑based data for the most accurate results. Older candles (where second‑data is no longer available due to platform limits) are calculated using minute data. The indicator can therefore be used on any timeframe from 1 minute and higher.
If you do not have Premium, the indicator uses minute‑based data only, so it is recommended to use it from the daily timeframe and above.
Example of Calculation
If the chart timeframe is 1 hour and the lowest available timeframe is 1‑second data, the indicator loads 3600 1‑second candles. Each 1‑second candle has a known volume, which is evenly distributed across its own price range.
The 1‑hour candle is then divided into a number of price ranges based on the Candle Volume Resolution parameter. The volumes of all 3600 1-second candles are then aggregated into the corresponding price ranges of the hourly candle.
The final result is a detailed intra‑candle volume map for the entire hour — calculated using the most precise data available.
Custom Timeframe Parameter
If Use Custom Timeframe is enabled and a timeframe is selected, all calculations will be performed strictly using this specified timeframe.
For example: if the chart is on 1D, the user has 1‑second data available, but Custom TF is set to 1 minute, then the volume distribution inside each daily candle will be calculated using 1‑minute candles.
Key Features
Candle Volume Resolution — defines how many price ranges each candle is divided into (3–50,000). All calculations in the indicator are based on this resolution.
Max Volume Level — displays the price level inside the candle where the maximum volume occurred.
% of Volume (1, 2, 3) — defines percentages of the candle's total volume (e.g., 33%, 66%, 50%). For each percentage, VolCore finds the minimum price range containing that share of volume. You can view the corresponding volume values for these shares in histogram form via the Show: Vol % 1–3 parameters. The actual intra-candle zones are displayed using the Show area option.
Volume % for Density — sets the volume percentage used to calculate Vol Density, which reflects how concentrated the volume is inside the selected price range.
Display Parameters (Show)
Show: Vol % 1–3 — shows histograms of volume share zones based on the selected "% of Volume" parameters (with color logic applied).
Show: Max Volume Value — displays the maximum internal volume value for each candle as a histogram (with color logic applied).
Show: Volume — displays the candle's total volume (with color logic applied).
Show: Vol Density — shows the density of volume distribution inside the candle for the selected volume percentage (with color logic applied).
Example Use Cases (not a complete list)
IA VolCore shows where liquidity forms inside each candle, how volume is distributed, and how concentrated trading activity is.
Detecting False Breakouts
If a breakout candle shows increased volume, and after the breakout the core volume forms beyond the level, but the price moves back — VolCore provides a strong signal of a false breakout.
Examples:
Identifying Support & Resistance Zones
If Max Volume Level repeatedly forms in the same internal range over multiple candles, this indicates a hidden support or resistance level.
Example:
Who This Indicator Is For
For traders using volume‑based and contextual market analysis, and for IA (Initiative Analysis) ecosystem users who want a deeper understanding of intra‑candle structure.
Histogram Color Logic
IA VolCore uses three color shades to highlight volume behavior relative to previous candles:
light shade — normal volume, no significant change,
medium shade — volume exceeds both previous candles,
dark shade — volume exceeds the sum of the previous two candles.
This helps quickly spot growing activity and potential shifts in market pressure.
Style Settings
Line styles, histogram styles, and colors can be customized in the indicator’s Style tab.
Fractal Levels Monitor w/ Trade Lines (ChadAnt)1. Fractal Level Detection
The indicator identifies Fractals, which are simply a series of bars where the center bar has the highest high (Bearish Fractal) or the lowest low (Bullish Fractal) compared to a set number of bars on either side (determined by the "Fractal Period" input, usually 2 to 5 bars).
Bullish Fractal Level (Support): The indicator plots a horizontal line at the lowest low of the most recently formed Bullish Fractal.
Bearish Fractal Level (Resistance): It plots a horizontal line at the highest high of the most recently formed Bearish Fractal.
2. The "Cross Candle" Event
The core idea isn't to trade the fractal itself, but the reaction after the fractal level is broken.
When the price breaks and closes through the established Bullish Level (support) or Bearish Level (resistance), that bar is marked as the Cross Candle.
This Cross Candle's High and Low are saved. This is the "setup" for the trade.
3. The Trade Signal (Entry Trigger)
A trade is only taken when the price breaks the extreme (High or Low) of the Cross Candle.
Buy Signal: The trade is entered long if the price breaks above the High of the Cross Candle.
Sell Signal: The trade is entered short if the price breaks below the Low of the Cross Candle.
Bullish/Bearish Divergence DetectorUsuable on all time-frames
Indicates multiple divergences (up to 3) with the same start point/date of the divergence
Previous Session Lines — High, Low, and 50% LevelsThis indicator automatically marks the previous completed session’s price range on your chart. You select a daily session window (for example: 09:30–16:00) and the script calculates:
* Previous Session High
* Previous Session Low
* Previous Session 50% (Midpoint)
When a session closes, the indicator draws all three levels on the chart and extends them forward for 24 hours, giving you clean, stable reference levels for the current trading day. Only the most recent session is shown; older sessions are automatically removed.
These levels are commonly used by day traders and swing traders to identify:
* Key support and resistance zones
* Breakout or rejection levels
* Market bias for the new session
* Areas where liquidity tends to accumulate
* Price reaction levels during overnight or intraday trading
Because the lines do not update in real time during the session, the levels remain static, accurate, and truly represent the completed session.
Settings users can adjust:
Session Settings:
* Start and end time of the session (repeats daily)
* Custom session name, which appears on the line labels
Line Appearance:
* Color
* Line thickness
* Line style (solid, dashed, dotted)
Label Appearance:
* Text size (tiny to huge)
* Text color automatically adjusts to contrast with the selected line color
Why this indicator is useful:
* Makes prior session structure immediately visible
* Helps identify high-probability reaction areas
* Shows only one session to reduce clutter
* Lines stay stable regardless of chart zoom or scaling
* Labels stay aligned at the right side of the chart
* Works on all timeframes, including extended hours and crypto charts
This tool is ideal for traders who rely on structured session analysis, including day traders, futures traders, forex traders, crypto traders, and anyone using session highs and lows to guide trading decisions.
This was developed to create an auto-mapping tool to comply with MrZinc's "London 50" strategy. You can learn more about that on his YouTube channel www.youtube.com
You can follow my YouTube trading channel here
www.youtube.com
Combined JADEVO-ATR VIX AdaptiveCombined JADEVO-ATR VIX Adaptive is a next-generation volatility-aware trading engine that merges the precision of the JADEVO framework with the adaptive power of ATR and VIX-based volatility modeling. Built for scalpers, intraday traders, and advanced algorithmic systems, this tool dynamically adjusts its sensitivity, key levels, and trade signals based on real-time market expansion and contraction.
By combining ATR-driven structure mapping, VIX-influenced volatility filters, and the JADEVO decision core, this indicator identifies high-probability zones, adaptive entry signals, and intelligent profit-taking levels—while filtering out low-quality chop that destroys most scalping systems.
GOLD 5MIN — 9×21 EMA Entry Arrows (Pro Setup)GOLD 5MIN — 9×21 EMA Entry Arrows (Pro Setup) — 2025 Funded Trader Edition
The exact same 5-minute gold scalping strategy used daily by multiple 6- and 7-figure funded accounts in 2025.
Core Logic (mechanical – no discretion):
• Entry only on 9 × 21 EMA crossover
• Must be in direction of 50 EMA + 200 EMA trend
• Price must close above/below 50 EMA
• High-confidence filter: price above 200 EMA + fast 9 EMA rising + elevated volume = big bright “3↑” / “3↓” arrow (full size)
• Normal confidence = small “↑” / “↓” arrow (normal or half size)
Features:
• Automatic dynamic swing stops plotted in real-time (3 ticks beyond prior swing low/high – the exact 2025 stop method that dropped stop-outs from ~65 % to ~31 %)
• Clean, high-visibility arrows (large bright for confidence 3, small for normal)
• Zero repainting – signals only on bar close
• Built for GC1! and MG1! (full and micro gold) on the 5-minute timeframe
• Best performance: London open (02:00–04:30 ET) and NY open (09:30–11:30 ET)
How to trade:
1. Arrow appears on closed bar → market order in
2. Stop = red dashed line (already drawn)
3. First target 50 % at +20 ticks, move rest to breakeven at +15 ticks, trail with 21 EMA
“When the 3↑ hits… the bag follows.”
— ASALEH2297
Engulf After 2 Same-Dir – Dashed → finished alertdrgdrgedrget drgrgrh fbrdtgrth fgbthg rthrthrthrt rthethbetdb rtgtrhyvdfd
كلاستر
Detailed Description – Fibonacci Cluster Zones + OB + FVG (AR34)
This script is an advanced multi-layer confluence system developed under the AR34 Trading Framework, designed to identify high-accuracy reversal zones, liquidity imbalances, institutional footprints, and trend direction using a unified analytic engine.
It combines Fibonacci mathematics, Smart Money Concepts, market structure, and smart trend signals to produce precise, reliable trading zones.
⸻
🔶 1 — Fibonacci Retracement Zones + Custom Smart Levels
The script calculates the highest and lowest prices over a selected lookback period to generate key Fibonacci retracement levels:
• 0.236
• 0.382
• 0.500
• 0.618
• 0.786
• 1.000
You can also add up to three custom Fibonacci levels (0.66, 0.707, 0.88 or any value you want).
✔ Each level is drawn as a horizontal line
✔ Optional label display for every level
✔ Color and activation fully customizable
These levels help identify pullback zones and potential turning points.
⸻
🔶 2 — True Fibonacci Cluster Detection
The script automatically identifies Cluster Zones, which occur when:
1. A Fibonacci level
2. An Order Block
3. A Fair Value Gap
all overlap in the same price range.
When all three conditions align, the script prints a CLUSTER marker in yellow.
These zones represent:
• High-probability reversal areas
• Strong institutional footprints
• Highly reactive price levels
⸻
🔶 3 — Automatic Order Block (OB) Detection
The indicator detects Order Blocks based on structural candle behavior:
• Bearish candle → followed by bullish
• Price interacts with a Fibonacci level
• Area aligns with institutional order flow
When detected, the OB is marked for easy visualization.
⸻
🔶 4 — Fair Value Gap (FVG) Mapping
The script scans for liquidity imbalances using the classic FVG logic:
• low > high
When an FVG exists, it draws a green liquidity box.
This highlights:
• Gaps left by institutional moves
• High-value return zones
• Efficient price retracement levels
⸻
🔶 5 — Fibonacci Extension Projections
The script calculates extension targets using:
• 1.272
• 1.618
• 2.000
These are drawn as dashed teal lines and help forecast:
• Breakout continuation targets
• Wave extension objectives
• Take-profit areas
⸻
🔶 6 — Smart Trend Signal (EMA-200 Engine)
Trend direction is determined using the EMA 200:
• Price above EMA → uptrend
• Price below EMA → downtrend
A green or red signal icon appears only when the trend flips, reducing noise and improving clarity.
This helps detect:
• Trend shifts early
• Cleaner entries and exits
• Trend-based filtering
⸻
🔶 7 — Four-EMA Multi-Trend System
The indicator includes optional visualization of four moving averages:
• EMA 20 → Short-term
• EMA 50 → Medium-term
• EMA 100 → Long-term
• EMA 200 → Major trend
All are fully customizable (length + color + visibility).
⸻
🔶 8 — Dynamic Negative Fibonacci Levels (Green Only)
When enabled, the script calculates deep retracement zones using:
• –0.23
• –0.75
• –1.20
These negative Fibonacci levels are drawn in green and help identify:
• Deep liquidity capture points
• Hidden structural supports
• Potential reversal bottoms
⸻
🔶 9 — Complete User Control
Users maintain full control over:
✔ Enabling/disabling OB detection
✔ Enabling/disabling FVG detection
✔ Activating custom Fibonacci levels
✔ Showing or hiding labels
✔ Selecting timeframe for Fib calculations
✔ Adjusting moving average parameters
✔ Activating dynamic Fibonacci
The script is designed to be flexible, scalable, and suitable for any trading style.
⸻
🎯 Summary
This indicator is a powerful all-in-one analytical system that merges:
✔ Fibonacci Mathematics
✔ Smart Money Concepts (OB + FVG)
✔ Trend-based filtering
✔ Institutional cluster detection
✔ Dynamic extensions + retracements
✔ Multi-EMA trend mapping
شرح السكربت بالتفصيل – Fibonacci Cluster Zones + OB + FVG (AR34)
هذا السكربت هو نظام تحليل احترافي متكامل من تطوير AR34 Framework يجمع بين أقوى أدوات التداول الحديثة في مؤشر واحد، ويهدف إلى كشف مناطق الانعكاس القوية، والتجميع الذكي، والاتجاه العام، باستخدام مزيج علمي من فيبوناتشي + السيولة + الاتجاه.
يعمل هذا المؤشر بأسلوب Confluence Trading بحيث يدمج عدة مدارس مختلفة في طبقة واحدة لتحديد مناطق الانعكاس والارتداد والاختراق بدقة عالية.
⸻
🔶 1 — مناطق فيبوناتشي (Retracement) + الكلاستر الذكي
يقوم المؤشر بحساب أعلى وأدنى سعر خلال عدد محدد من الشموع (Retracement Length) ثم يرسم مستويات فيبوناتشي الكلاسيكية:
• 0.236
• 0.382
• 0.500
• 0.618
• 0.786
• 1.000
مع إمكانية إضافة 3 مستويات خاصة من اختيارك (0.66 – 0.707 – 0.88 وغيرها).
✔️ كل مستوى يتم رسمه بخط مستقل
✔️ يظهر بجانبه رقم المستوى إذا تم تفعيل خيار Show Fib Labels
✔️ يمكن تغيير لونه، قيمته، وتفعيله حسب رغبتك
⸻
🔶 2 — كاشف الكلاستر الحقيقي (Cluster Detection)
الكلاستر يُعتبر أقوى مناطق الارتداد في التحليل الفني.
السكربت يحدد الكلاستر عندما تتداخل 3 عناصر مع مستوى فيبوناتشي:
1. مستوى فيبوناتشي مهم
2. Order Block
3. Fair Value Gap
إذا اجتمعت الثلاثة في نفس المنطقة، يتم رسمها باللون الأصفر وتظهر كلمة CLUSTER.
هذا يعطيك:
• أقوى منطقة انعكاس
• أعلى دقة في تحديد نقاط الدخول
• مناطق ذات سيولة مرتفعة
⸻
🔶 3 — دمج Order Blocks تلقائياً
يكتشف المؤشر الـ OB الحقيقي باستخدام شروط حركة الشموع:
• bearish candle → bullish candle
• السعر لمس مستوى فيبوناتشي
• منطقة محتملة لتجميع المؤسسات
إذا تحققت الشروط يظهر OB باللون الأحمر.
⸻
🔶 4 — دمج Fair Value Gaps (FVG)
يكتشف الفجوات السعرية بين الشمعتين الأولى والثالثة:
• low > high
ويقوم برسم بوكس أخضر حول الفجوة (FVG Zone).
يساعدك على معرفة:
• مناطق اختلال السيولة
• أهداف السعر القادمة
• مناطق “العودة” المحتملة
⸻
🔶 5 — امتدادات فيبوناتشي (Fibonacci Extensions)
يقوم بحساب الامتدادات من مستويات:
• 1.272
• 1.618
• 2.0
ويظهرها بخطوط متقطعة (Teal Color).
هذه المستويات مهمة لتوقع:
• أهداف اختراق
• مناطق TP
• امتداد موجات السعر
⸻
🔶 6 — إشارة الاتجاه الذكية (Smart Trend Engine – EMA200)
يعتمد على EMA 200 لتحديد الاتجاه العام:
• إذا السعر فوق EMA200 → اتجاه صاعد
• إذا السعر تحت EMA200 → اتجاه هابط
ويظهر المؤشر:
🟢 سهم أخضر عند تحول الاتجاه لصعود
🔴 سهم أحمر عند تحول الاتجاه لهبوط
ميزة التحول فقط عند تغيير الاتجاه (No Noise).
⸻
🔶 7 — أربع موفنقات احترافية (EMA 20 – 50 – 100 – 200)
المؤشر يعرض الموفنقات الأربعة الأساسية:
• EMA 20 → اتجاه قصير
• EMA 50 → متوسط
• EMA 100 → طويل
• EMA 200 → الاتجاه الرئيسي
مع إمكانية:
• تغيير اللون
• تغيير الطول
• إخفائها وإظهارها
⸻
🔶 8 — فيبوناتشي الديناميكي (Dynamic Green Fib)
ميزة قوية جداً تظهر فقط عند تفعيلها.
تحسب أعلى وأدنى سعر في Lookback Period ثم ترسم مستويات سلبية:
• –0.23
• –0.75
• –1.20
هذه المستويات تظهر كخطوط خضراء تحت السعر وتستخدم لـ:
• تحديد مناطق الانعكاس المخفية
• رصد الدعم الديناميكي
• اكتشاف القيعان المحتملة
⸻
🔶 9 — المرونة الكاملة للمستخدم
المؤشر يسمح لك التحكم بكل شيء:
✔️ تفعيل/إلغاء الـ OB
✔️ تفعيل/إلغاء الـ FVG
✔️ تفعيل/إلغاء مستويات فيبوناتشي
✔️ إضافة مستويات مخصصة
✔️ اختيار الفريم المستخدم
✔️ تغيير الألوان
✔️ التحكم في الاتجاه والموفنقات
⸻
🎯 الخلاصة
هذا السكربت يعمل كنظام تحليلي متكامل يجمع:
✔️ فيبوناتشي
✔️ السيولة المؤسسية (OB + FVG)
✔️ الاتجاه الذكي
✔️ الكلاستر الاحترافي
✔️ الموفنقات
✔️ فيبوناتشي الديناميكي
Delta Manipulation FootprintIntroduction
The Delta Manipulation Footprint indicator highlights significant shifts in volume delta between consecutive candles, helping traders visually identify potential market manipulation or strong buying/selling pressure. By analyzing the difference in buy and sell volume (delta) and its changes over time, this indicator reveals aggressive market behavior often associated with big players.
Key Features
- Calculates the absolute difference of volume delta between candles, maintaining the direction of change.
- Uses a customizable moving average and threshold multiplier to filter meaningful volume shifts.
- Colors candles green when delta difference is notably increasing, and red when decreasing, for clear visual signals.
- Fully overlays the main price chart, painting candles directly for intuitive interpretation.
How to Use
Apply this indicator to your price chart to instantly visualize periods of significant volume delta shifts. Look for green candles signaling rising buying pressure and red candles showing increasing selling pressure. Adjust the moving average length and threshold multiplier inputs to tune sensitivity to your trading style or particular market behavior. Use in conjunction with other price action and volume indicators to confirm signals and improve trade timing.
This tool is ideal for traders aiming to spot footprint-like manipulations in volume delta, aiding in the detection of institutional activity and potential market turning points.
Elder Force Index Alexander Elder's volume indicator. Stay in long as long as the background is green and there are no green crosses. The same applies for short.
7/21 EMA ADX Pro After many months (actually years) of intense research, countless hours of testing different approaches, and rigorous backtesting, I’ve finally developed this indicator/strategy based on moving average crossovers enhanced with power-based filtering to significantly reduce false signals and whipsaws. This is not just another basic MA crossover system. The core idea revolves around applying mathematical powers (exponents) to the moving averages and combining them with additional confirmation filters, creating a much more robust and reliable signal generation mechanism. I’m sharing it with the community in the hope that it can be useful to someone else who, like me, has spent endless nights trying to find an edge in the markets. Feel free to test it, modify it, or improve it. Feedback, suggestions, and constructive criticism are always welcome. If you find it helpful, a simple like or comment would mean a lot — it’s the result of a huge amount of work and passion. Happy trading! (Full Pine Script code will be posted below or in the next update — stay tuned!
Trend-Adaptive 3-Band Reversal CloudThis indicator plots a trend-adaptive, volatility-based 3-band cloud on your chart to visually contextualize potential high-probability reversal, balance, and exhaustion price zones — all in strict alignment with TradingView’s house rules and best compliance practices.
How It Works
Trend Detection:
The script determines short-term trend direction using two adjustable EMAs (fast and slow). When the fast EMA is above the slow, the environment is classified as an uptrend; when below, as a downtrend.
Adaptive Bands and Clouds:
Around the dynamic trend baseline, three cloud “bands” are drawn using multiples of an ATR (Average True Range) volatility filter, automatically adjusting for evolving market conditions:
Middle Band (Fair Value Zone): Area around the baseline, where price is statistically balanced.
Upper Outer Band: In an uptrend, this shows a potential 'exhaustion/overextension' area; in a downtrend, it can act as a deep pullback or reversal area.
Lower Outer Band: In an uptrend, this highlights a possible 'deep pullback/reversal' area; in a downtrend, it becomes the potential exhaustion zone.
Contextual RSI Markers:
When price is in one of the outer bands and RSI is overbought (upper) or oversold (lower), a tiny diamond marker appears on that band as extra context — offering a visual cue for a possible high-momentum exhaustion or deep reversal zone, but never a trade signal or advice.
Visuals and Compliance:
All cloud regions use three different, semi-transparent colors for easy reading, and never block price action.
Labels indicate only “Possible Exhaustion,” “Deep Pullback Zone,” and “Balanced/Fair Value”—the language is strictly neutral and descriptive.
All calculations run only on confirmed, historical bars with zero repainting, no future bar lookahead, and no predictive overlays.
How to Use
Add to Chart:
Simply add the indicator to any chart and timeframe.
Configure:
Adjust the EMA, ATR, and RSI settings via the input panel to best fit your instrument and preferred sensitivity.
Choose band multipliers to widen or contract the cloud according to volatility or your system.
Toggle RSI marker/context highlighting as desired.
Interpretation:
Middle Cloud (“Balanced/Fair Value”): Price in this zone suggests mean reversion, equilibrium, or fair pricing for the session’s volatility/trend conditions.
Outer Clouds: If price reaches an outer cloud, pay attention for potential mean-reversion (if trend persists) or exhaustion zones (especially if a diamond appears).
Uptrend: Lower cloud is where larger pullbacks/reversals are often initiated; upper cloud indicates potential trend exhaustion.
Downtrend: Upper and lower clouds are reversed in interpretation.
Diamond Markers: A red diamond atop the upper band signifies RSI overbought; a lime diamond below the lower band shows RSI oversold. These do not recommend trading—only highlight increased likelihood that buyers/sellers may be overextended.
Best Practices:
Do not use the indicator in isolation or as a signal generator. Combine its context with price action confirmation, volume, or other non-repainting tools.
Use labels only for navigation/context, never as actionable advice.
Technical Details
Inputs/Customization: Fully adjustable (EMAs, ATR period, band multipliers, RSI thresholds, label/marker toggles).
Logic: All code processes only historical closed bars and overlays information in real time.
No repaint, strategy, or alerts: No signals, no script-driven trading, and no claims of prediction or guaranteed probability.
House-rule Clean: The script and its visuals are compliant with TradingView’s publishing requirements, both visually and textually.
Summary:
This tool is designed for traders who want to visually frame high-probability reversal, equilibrium, and exhaustion zones adaptively—while keeping price action primary and avoiding visual or conceptual clutter. Use it to better understand where price may statistically find resistance/support or revert, not to automate signals or guarantee outcomes
X HL Rangedynamically maps high-low range boxes for custom time-bucket intervals without relying on security() calls. Each defined timeframe (e.g., 15-minute, 60-minute, or any user-selected value) produces a visual “range block” that captures the extremes (H/L) of price activity for that session bucket.
This tool is engineered to be lightweight, precise, and session-aware, avoiding repaint characteristics that can occur when referencing higher-timeframe candles directly. It builds the range locally in real-time, ensuring that traders always see authentic structure as it developed on the chart — not delayed or back-filled values.
The indicator can display one or both timeframes independently, with configurable display depth, color logic, and visual emphasis through fill and border toggles.
🎯 Key Features
Feature Description
Multi-timeframe bucket logic Builds range blocks locally using time calculations, not security()
Directional coloring Automatically adjusts based on up/down close of the completed range
Independent display controls Turn TF buckets on/off without affecting the other
Visual style management Independent fill + border toggles and opacity-aware color output
Historical depth control Automatically prunes oldest blocks to maintain visual clarity
Non-repainting Values are locked at bucket close and never adjusted backward
💡 Primary Use Cases
1️⃣ Intraday Structure Mapping
Traders who value intrablock liquidity zones, swing sweeps, or stop hunt regions can instantly see where price respected — or violated — previous time-based range extremes.
2️⃣ Volatility & Regime Shift Detection
Rapid compression or expansion across sequential blocks can be used to identify:
Transition from balance → imbalance
Trend exhaustion and reversal
The start of new initiative moves
3️⃣ Confluence Layering with:
VWAP (session, anchored, rolling)
Market profile / volume nodes
Opening range breakout systems
Session order flow frameworks
Mean-reversion and ATR-based models
Stacking multiple intervals (e.g., 15-min micro-range + 60-min macro-range) can highlight nested liquidity pockets, similar to structural mapping seen in professional execution models.
MACD Range Detector by SimonezziKey Features:
Range Detection: Identifies sideways markets by analyzing MACD flatness, histogram behavior, and MACD-Signal convergence
Visual Alerts: Colors the background orange during ranging periods, blue during trends
Labels: Marks when the market enters/exits ranging conditions
Statistics Table: Shows real-time metrics (top-right corner)
Built-in Alerts: Set alerts for range detection and trend resumption
MACD Panel: Optional display of MACD components with range highlighting
The indicator works best on higher timeframes (1H, 4H, Daily) for more reliable range detection. Orange background = ranging market, Blue labels = trend resuming.
Indicator for Confirming AccumulationStrong Buying Pressure Confirmation Indicator
This indicator helps identify stocks showing strong buying pressure, highlighting moments when significant money is flowing into a symbol. By analyzing active buying volume, price strength, momentum, and institutional-style accumulation, it automatically marks stocks with powerful upward behavior.
It is useful for spotting early accumulation, potential breakouts, and high-probability bullish setups.
Swing Point PnL PressureThis indicator visualizes the cumulative profit potential of bulls and bears based on recent swing highs and lows — offering a unique lens into trend maturity, sentiment imbalance, and exhaustion risk.
🟢 Bull PnL rises as price moves above prior swing lows — reflecting unrealized gains for long positions
🔴 Bear PnL rises as price drops below prior swing highs — capturing short-side profitability
Over time, these curves diverge during strong trends, revealing which side is in control. But when they converge, it often signals that the dominant side is losing steam — a potential turning point where profit-taking, traps, or reversals may emerge.
This tool doesn’t predict tops or bottoms — it tracks the emotional and financial pressure building on each side of the market. Use it to:
Spot trend exhaustion before price confirms it
Identify profit parity zones where sentiment may flip
Time accumulation or distribution phases with greater confidence
Whether you’re swing trading or analyzing macro structure, this indicator helps you see what price alone can’t: who’s winning, who’s trapped, and who’s about to give up.
VWAP TrendSignalVWAP TrendSignal
VWAP (Volume-Weighted Average Price) is the market’s true fair value — the benchmark institutions use to see when price is balanced, extended, or trending with real intent.
Price often snaps back when it moves too far (mean reversion), and only shows genuine strength when it holds above or below VWAP.
VWAP TrendSignal makes this insight effortless by color-coding VWAP direction:
Yellow = VWAP rising → bullish pressure
Red = VWAP falling → bearish pressure
No bands. No noise. Just pure directional clarity.
Anchor VWAP to the Session, Week, Month, Quarter, or Year, and tailor the Slope Smoothing Filter to your timeframe:
1–2 smoothing → fast & reactive (1–5m scalping)
3–5 smoothing → clean & stable (5–15m intraday)
6–10 smoothing → slow flips (1H–4H swings)
10–15 smoothing → macro bias only (Daily/Weekly)
The line adapts to how you trade.
How to Use It
Mean Reversion
When price stretches far from VWAP, expect pullbacks or snapbacks.
Trend Direction
Yellow supports long bias, red supports short bias.
Simple, reliable, instantly visible.
Balance Zones
Price sitting near VWAP = compression, buildup, or chop.
A perfect signal to wait or prepare for a breakout.
Why It Works
VWAP TrendSignal distills institutional logic into a clean, single-line tool.
It shows fair value, trend slope, and balance all at once — making your chart clearer and your decisions faster.
Once you get used to reading it, trading without it feels blind.
ES VIX Dashboard + TrianglesFor all the S&P500 Traders the Vix Dashboard with Built in ADR that Informs of safe to trade or not self expletory also plots buy and sell on the chart in the Form of a Triangle very useful for the ES any timeframe
FVG HTF# FVG HTF — Higher‑Timeframe Fair Value Gaps
## Summary
- Plots higher‑timeframe Fair Value Gap (FVG) zones directly on your current chart.
- Tracks fill progress using four methods: Any Touch, Midpoint Reached, Wick Sweep, Body Beyond.
- Shows optional labels with timeframe source and live fill percentage; label text color is configurable.
- Designed for clean overlays and efficient rendering with limits on graphics and bars processed.
## What It Does
- Detects bullish and bearish FVGs from a chosen timeframe (or the chart timeframe) and renders:
- Zone Top/Bottom lines and a dotted midpoint line
- Semi‑transparent area fill between the edges
- Optional label at the midpoint with a tooltip showing zone prices
- Continuously updates zones forward and removes them when the selected fill condition is met.
## Inputs
- `Enable FVG` (`fvgSH2`): Toggle detection/plotting on/off.
- `Timeframe` (`fvgTF2`): Choose `Chart` or HTFs (`5 Minutes`, `15 Minutes`, `1 Hour`, `4 Hours`, `1 Day`, `1 Week`, `1 Month`).
- `Fill Method` (`fvgFill2`):
- Any Touch — wick or body touches any part of the zone
- Midpoint Reached — price reaches at least the 50% of the zone
- Wick Sweep — wick fully travels past the far edge and back inside (conceptually stricter than touch)
- Body Beyond — candle body closes beyond the opposite edge (strong confirmation)
- `Zones` colors (`fvgCb2`, `fvgCs2`): Bullish/Bearish zone colors.
- `Labels` (`fvgLB2`): Show/Hide on‑chart labels.
- `Label Color` (`fvgLBc2`): Color picker for label text (default: white).
- `Max Bars Back` (`maxBars2`): Limits processing to recent bars for performance.
## Timeframe Rules
- The helper `htfTF` prevents selecting a timeframe lower than the chart. If an invalid lower TF is chosen, it falls back to `timeframe.period`.
- Supports minute, daily, weekly, and monthly aggregations that are safe for intraday/daily/weekly charts.
## Detection Logic
- Uses rolling higher‑timeframe bars constructed on the fly and checks 3‑bar displacement patterns:
- Bullish FVG: current HTF low above the high two bars ago AND previous HTF close above that high, with no direct gap condition.
- Bearish FVG: current HTF high below the low two bars ago AND previous HTF close below that low, with no direct gap condition.
- On detection, the script creates an FVG object with:
- Top/Bottom lines (`lnTop`, `lnBtm`) and midpoint line (`lnAvg`)
- Midpoint label (`lbTxt`) showing source timeframe and updating fill percentage
- Semi‑transparent fill (`linefill`) for visual clarity
## Fill Tracking
- Fill threshold depends on selected method:
- Any Touch: opposite edge
- Midpoint Reached: zone’s midpoint
- Wick Sweep: stricter condition conceptually (implemented as an opposite‑edge threshold)
- Body Beyond: requires close beyond the opposite edge
- Each bar updates label x‑position and line endpoints forward; the label text shows the best fill ratio achieved.
- When the threshold is reached, the FVG (label, lines, fill) is removed from the chart.
## Best Practices
- Start with `Any Touch` to visualize broad repairs; switch to `Body Beyond` for conservative confirmations.
- Use `1 Hour` or `4 Hours` overlays on 5m–15m charts for context; `1 Day` on 1H charts; `1 Week` on daily charts.
- Keep labels on when monitoring fills intraday; hide labels for clean higher‑level context.
- Adjust `Max Bars Back` if performance is impacted by many zones.
## Repainting Notes
- HTF zones are computed on `timeframe.change(tf)` and therefore confirm on HTF bar closes.
- Label endpoints extend each bar; detection itself avoids lookahead bias. For strict confirmation, align entries with HTF closes.
## Limitations
- “Wick Sweep” is treated as a stricter touch to the far edge; it does not enforce a separate “return inside” bar state.
- Label text color applies uniformly to bull/bear labels. If you need separate colors per side, contact the author.
## Credits & Version
- Pine Script v6; © rithsilanew2020
## Quick Start
1. Enable FVG and choose your HTF (e.g., `1 Hour`).
2. Pick a Fill Method (start with `Any Touch`).
3. Select zone colors and label text color.
4. Set `Max Bars Back` as needed for performance.
5. Use labels/tooltip values (Top/Mid/Bottom) to plan entries and manage risk.






















