🧠 Godly Confluence Indicator - NQ Futures
~Features Include~
VWAP — institutional trend anchor
RSI (Relative Strength Index) — momentum + overbought/oversold
MACD — momentum + trend confirmation
Delta Volume Approximation — buy/sell pressure estimation
ATR-Based Stop Loss Zones — visual risk levels
Signal Conditions — Buy/Sell signals based on confluence
Energy Exhaustion (Reversal Detection) — via RSI & MACD divergence logic (simplified)
Concept
9-15 EMA Strategy Auto Signals//@version=5
//This is only for educational purposes
indicator('9-15 EMA Strategy Auto Signals', overlay=true)
// Plot 9 and 15 EMA on the chart
ema9 = ta.ema(close, 9)
ema15 = ta.ema(close, 15)
plot(ema9, title = "9 EMA", color=color.rgb(253, 5, 5), linewidth=1)
plot(ema15, title = "15 EMA", color=color.rgb(0, 0, 0), linewidth=1)
// Calculate the slope of the 9 EMA line in degrees
angle = math.atan((ema9 - ema9 ) / syminfo.mintick) * (180 / input(5.58159265))
// Conditions for buying
buySignal1 = ta.crossover(ema9, ema15)
buySignal2 = close > open and open < ema9 and open > ema15 and close > ema9 and low > ema15 and high - math.max(open, close) <= math.abs(open - close) * 0.3
buySignal3 = close > open and open > ema9 and low <= ema9 and close > ema9 and low > ema15 and high - math.max(open, close) <= math.abs(open - close) * 0.3
buyConditionAngle = angle >= input((50), title = "Angle 2") // Buy only if the slope is greater than or equal to 50 degrees
// Plot green arrow on the chart for buying signals
plotshape(buySignal2 or buySignal3, title = "Up", style=shape.triangleup, location=location.belowbar, color=color.new(#0a0ef3, 12), size=size.small)
plotshape((buySignal2 or buySignal3) and buyConditionAngle, title = "Slope Up", style=shape.triangleup, location=location.belowbar, color=color.new(color.green, 0), size=size.small)
// Conditions for selling
sellSignal1 = ta.crossunder(ema9, ema15)
sellSignal2 = close < open and open > ema9 and open < ema15 and close < ema9 and high < ema15 and math.min(open, close) - low <= math.abs(open - close) * 0.3
sellSignal3 = close < open and open < ema9 and high >= ema9 and close < ema9 and high < ema15 and math.min(open, close) - low <= math.abs(open - close) * 0.3
sellConditionAngle = angle <= -50 // Sell only if the slope is less than or equal to -50 degrees
// Plot red arrow on the chart for selling signals
plotshape(sellSignal2 or sellSignal3, title = "Down", style=shape.triangledown, location=location.abovebar, color=color.rgb(0, 0, 0), size=size.small)
plotshape((sellSignal2 or sellSignal3) and sellConditionAngle, title = "Slope Down", style=shape.triangledown, location=location.abovebar, color=color.red, size=size.small)
PORTFOLIO TABLE Full [Titans_Invest]PORTFOLIO TABLE Full
This is a complete table for monitoring your assets or cryptocurrencies in your SPOT wallet without needing to access your broker’s website or app.
⯁ HOW TO USE THIS TABLE❓
Simply select the asset and enter the amount you hold.
The table will display the value of each asset and the total value of your portfolio.
You can monitor up to 19 assets in real time.
⯁ CONVERT VALUES
You can also enable and select a currency for conversion.
For example, cryptocurrencies are calculated in US dollars by default, but you can choose euros as the conversion currency.
The values originally in dollars will then be displayed in euros.
⯁ TRACK THE DAILY VARIATION OF YOUR PORTFOLIO
You’ll be able to monitor your portfolio’s raw daily variation in real time.
🔶 Track your Portfolio in real time:
🔶 Add your local Currency to Convert Values:
🔶 Follow your Portfolio Live:
___________________________________________________________
📜 SCRIPT : PORTFOLIO TABLE Full
🎴 Art by : @Titans_Invest & @DiFlip
👨💻 Dev by : @Titans_Invest & @DiFlip
🎑 Titans Invest — The Wizards Without Gloves 🧤
✨ Enjoy!
___________________________________________________________
o Mission 🗺
• Inspire Traders to manifest Magic in the Market.
o Vision 𐓏
• To elevate collective Energy 𐓷𐓏
UNITED TRADING COMMUNITY WaterMarkWATER MARK indicator. Will allow you to improve the order of the entries you need on the chart.
1. Name and date for the traded instrument
2. Watermarks to protect your charts (in the center and around the perimeter of the chart)
3. The new "notes" option will allow you to keep focus on the factors that are important to you on the chart.
Very flexible settings for any notes, labels, watermarks on the chart that are important to you.
Индикатор WATER MARK . Даст возможность вам улучшить порядок нужных вам записей на графике.
1. Название и дата для торгуемого инструмента
2. Водные знаки для защиты ваших графиков ( в центре и по периметру графика)
3. Новая опция "заметки" позволит вам держать фокус на важных для вас факторах на графике.
Очень гибкая настройка , любых значимых для вас заметок , лейблов , вотермарк на графике.
Sun Moon Conjunctions Trine Oppositions 2025this script is an astrological tool designed to overlay significant Sun-Moon aspect events for 2025 on a Bitcoin chart. It highlights key lunar phases and aspects—Conjunctions (New Moon) in blue, Squares in red, Oppositions (Full Moon) in purple, and Trines in green—using background colors and labeled markers. Users can toggle visibility for each aspect type and adjust label sizes via customizable inputs. The script accurately marks events from January through December 2025, with labels appearing once per event, making it a valuable resource for exploring potential correlations between lunar cycles and Bitcoin price movements.
SMC Strategy with RSISupport and Resistant Indicators using confirmations of SMC. Liquidity sweeps, FVG, Orderblocks, Choch/Bos.
Improved ICT Order Block StrategyThis code is characterized by:
Combining multiple ICT techniques into a single tool to save chart space and enable users to test multiple models.
Drawing important price zones such as Breaker Blocks, Rejection Blocks, Order Blocks, Fair Value Gaps (FVG), and Equal Levels.
Providing clear entry and exit signals based on ICT rules with improved risk management.
Allowing customization of settings like timeframe selection, entry ratios, and profit/loss targets.
Supporting alerts to facilitate monitoring trading opportunities.
In short, it is a comprehensive advanced tool that helps traders practically and effectively apply the ICT methodology, with the ability to test performance and optimize the strategy before live trading.
MOE7GHits just a very simple indicator which shows previous daily close and open on chart to give you some information
keep t simple
RSI Z-Score + TableHow It Works
RSI Calculation
The standard RSI is computed over a user-defined period (default: 14), measuring the strength of recent price movements.
Z-Score Transformation
The RSI is then normalized using the Z-Score formula:
ini
Kopieren
Bearbeiten
Z = (RSI - Mean) / Standard Deviation
This highlights whether RSI is unusually high or low compared to its historical behavior.
Smoothing
An optional EMA is applied to the Z-Score for smoother and more reliable signals (default: 10-period smoothing).
Z-Score Table
A real-time value of the RSI Z-Score is displayed in a table in the top-right of the indicator pane.
The value is clamped between +2 and -2
+2 aligns with strong overbought RSI conditions
-2 aligns with strong oversold RSI conditions
How to Use It
Buy Signal Potential: When the Z-Score drops below -1.5 or -2 → statistically oversold RSI
Sell Signal Potential: When the Z-Score rises above +1.5 or +2 → statistically overbought RSI
Use in Confluence: Combine with price action, trend filters, or other Z-Score indicators (e.g. OBV, VWAP, VIX) for SDCA or mean-reversion strategies
Previous Day/Week/Month - High/Lows (BHUVANESH Rajendran)Previous DAY/WEEK/MONTH - High/Low (BHUVANESH Rajendran)
Order Blocks [TakingProphets]The Order Blocks indicator automatically finds and highlights institutional Order Blocks (OBs) on your chart — powerful price zones where smart money has previously entered the market with large orders. These areas often act as strong support or resistance, and they’re key tools for traders using ICT (Inner Circle Trader) and Smart Money Concepts (SMC) strategies.
📘 What’s an Order Block?
An Order Block is usually the last bullish or bearish candle before a big move or shift in market structure. It represents where banks, funds, or institutions placed large buy or sell orders. Retail traders often miss these zones, but smart money traders use them to anticipate where price may return, stall, or even reverse.
This indicator identifies these zones for you — both bullish and bearish — so you don’t have to manually mark them.
🔍 How the Indicator Works
It waits for a market structure shift — when price breaks out of a recent high or low range.
Then it looks back to find the last opposite candle before that breakout — that candle becomes the OB.
It draws a box from the open of that candle to the high/low (depending on type) and keeps updating the box forward.
You can choose how strict the OBs need to be (Small, Medium, or Large) using ATR-based size filtering.
🔄 Breaker Blocks (Optional Feature)
If price closes through an Order Block in the opposite direction, that OB is considered invalid. But instead of deleting it, the indicator can automatically draw a Breaker Block. Breakers are important because they often become new support or resistance zones — a sign the market has flipped direction and is now respecting that level in a new way.
🎛 Custom Settings
Choose OB detection sensitivity: High (shows smaller moves), Medium, or Low (only the biggest institutional moves).
Customize colors and whether you want to show borders on each block.
Turn Breaker Blocks on or off based on your strategy.
Everything is dynamic and updates live as price evolves.
💡 Why Use It?
Knowing where smart money entered the market gives you a huge edge. Price often returns to these Order Blocks to "rebalance" or fill unfilled orders. With this indicator, you’ll:
Spend less time marking charts.
Spot high-probability entry zones faster.
Avoid common retail traps and trade with the algorithm.
DXY-XAUUSD Correlation with ThresholdsIndicator Description: "DXY-XAUUSD Correlation with Thresholds"
This indicator tracks the dynamic correlation between the US Dollar Index (DXY) and gold prices (XAUUSD) over a user-defined period, expressed as a percentage. It calculates the rolling correlation coefficient between the closing prices of these two assets, scaled to ±100%, and visualizes it as a histogram.
Key Features:
Adjustable correlation period (default: 30 bars) and configurable positive/negative thresholds (default: ±70%).
Color-coded histogram: Intense green/red highlights correlations exceeding thresholds, signaling strong positive/negative relationships.
Horizontal dotted lines mark threshold levels, aiding in identifying overextended "overbought" or "oversold" correlation conditions.
An info table displays the current correlation value and active thresholds for quick reference.
Designed for traders analyzing the inverse relationship between the dollar and gold, this tool helps spot periods of extreme correlation divergence or convergence. The visual alerts and customizable parameters make it adaptable to various trading strategies and timeframes.
Note: The indicator is plotted in a separate pane (non-overlay) for clarity.
Golden Setup V1Golden Setup V1 is an overlay indicator that automates Tony Rago’s “Golden Setup” price-level framework. It divides the chart into fixed “blockSize” intervals (default 100 points) and plots a series of key horizontal levels within each block—levels at 00, 12, 26, 33, 50, 62, 77 and 88 offsets. These levels act as dynamic support and resistance grids that roll up or down as price moves between blocks.
Key Features
Customizable Offsets
Define eight offset levels corresponding to Rago’s Golden Setup:
00 (Round Number)
12 (Target 12)
26 (First “Golden” level)
33 (Target 33)
50 (Mid-block pivot)
62 (Target 62)
77 (Second “Golden” level)
88 (Target 88)
Multi-Block Coverage
Choose how many blocks above and below the current 100-point block you wish to display, so you always have levels drawn for the surrounding price range.
Golden-Only Filter
A handy toggle lets you show only the two “Golden” offsets (26 & 77), which many traders prioritize for high-probability bounce or breakout areas.
Dynamic Nearest-Level Label
Highlights the closest Golden Setup level (to the right edge of the chart) with a movable label, so you always know which level price is approaching.
Full Styling Control
Customize line colors, widths, block size, label fonts and opacity to suit your charting style.
How It Works
Block Calculation
On each bar, the indicator computes the “current block” by flooring (close / blockSize) and multiplying back by blockSize.
Level Offsets
It adds each of the eight user-defined offsets to that block base (and, if price has moved below the lowest offset, shifts the block down one interval).
Drawing
Each level is drawn as a horizontal line extending across the chart for as many blocks above/below as you select.
Nearest-Level Detection
Within the present block, it calculates which of the plotted levels is closest to price and displays that value on the right edge.
Usage Tips
Use the Golden-Only filter to declutter and focus solely on the 26 & 77 levels, which often act as strong intra-block pivot points.
Combine with volume or momentum indicators to confirm bounces at these levels.
Adjust blockSize (e.g. 50 or 200) if you wish to work in smaller or larger price increments.
⚠️ Disclaimer: This script is for educational and illustrative purposes only. Trading involves risk—always back-test and validate any strategy on a demo account before going live.
Rejection Blocks [Taking Prophets]🧠 Indicator Purpose:
The "Rejection Blocks" indicator is built for traders using Inner Circle Trader (ICT) concepts. It identifies key reversal zones where price action shows strong rejection through wick-dominant behavior around major swing points — often signaling institutional activity. Traders can use these rejection blocks to anticipate future support, resistance, and mitigation zones based on ICT principles.
🌟 What Makes This Indicator Unique:
Unlike standard support/resistance indicators, this script detects true rejection points by filtering only candles where the wick is significantly larger than the body, confirming potential order flow shifts according to ICT methodology.
It not only marks these zones but also:
Dynamically extends the blocks into the future.
Deletes blocks that get invalidated (mitigation logic).
Optionally plots a 50% midline within each block to refine entry or exit precision.
⚙️ How the Indicator Works:
Swing Detection: Identifies significant highs and lows based on pivot structures.
Rejection Filtering: Confirms strong rejections with wick-to-body ratio validation.
Block Creation: Highlights bullish or bearish rejection zones with customizable visuals.
Midline Plotting: (Optional) Marks the 50% midpoint of the block for entry targeting.
Mitigation and Cleanup: Blocks are deleted automatically when their structure is invalidated, maintaining a clean and accurate chart view.
🎯 How to Use It:
Identify Reaction Zones: Use rejection blocks as potential areas for price reversals or consolidations.
Plan Trade Entries: Monitor retests of the block boundaries or 50% lines for precision entries.
Manage Risk: If price closes beyond the block, treat it as a potential invalidation or Change in State of Delivery (CISD) event.
Best Contexts:
Near higher timeframe Points of Interest (POIs) such as Order Blocks or Fair Value Gaps.
During ICT Killzones (London Open, New York AM).
🔎 Underlying Concepts:
Wick Rejections: Indicate strong liquidity rejection, aligning with ICT liquidity sweep theories.
Mitigation Behavior: Blocks often serve as revisit zones where price rebalances after an aggressive move.
Adaptive Market Behavior: Rejection Blocks adjust dynamically based on real-time price action according to ICT market structure logic.
🎨 Customization Options:
Bullish and Bearish block colors with adjustable opacity.
Border visibility, border width, and 50% midline display toggles.
Label size customization for optimal chart clarity.
✅ Recommended for:
Traders following Inner Circle Trader (ICT) concepts.
Scalpers, intraday, and swing traders seeking accurate reversal and mitigation zones.
Traders looking to improve precision around liquidity rejection events.
CISD [TakingProphets]🧠 Indicator Purpose:
The "CISD - Change in State of Delivery" is a precision tool designed for traders utilizing ICT (Inner Circle Trader) conecpets. It detects critical shifts in delivery conditions after liquidity sweeps — helping you spot true smart money activity and optimal trade opportunities. This script is especially valuable for traders applying liquidity concepts, displacement recognition, and market structure shifts at both intraday and swing levels.
🌟 What Makes This Indicator Unique:
Unlike basic trend-following or scalping tools, CISD operates through a two-phase smart money logic:
Liquidity Sweep Detection (sweeping Buyside or Sellside Liquidity).
State of Delivery Change Identification (through bearish or bullish displacement after the sweep).
It intelligently tracks candle sequences and only signals a CISD event after true displacement — offering a much deeper context than ordinary indicators.
⚙️ How the Indicator Works:
Swing Point Detection: Identifies recent pivot highs/lows to map Buyside Liquidity (BSL) and Sellside Liquidity (SSL) zones.
Liquidity Sweeps: Watches for price breaches of these liquidity points to detect institutional stop hunts.
Sequence Recognition: Finds series of same-direction candles before sweeps to mark institutional accumulation/distribution.
Change of Delivery Confirmation: Confirms CISD only after significant displacement moves price against the initial candle sequence.
Visual Markings: Automatically plots CISD lines and optional labels, customizable in color, style, and size.
🎯 How to Use It:
Identify Liquidity Sweeps: Watch for CISD levels plotted after a liquidity sweep event.
Plan Entries: Look for retracements into CISD lines for high-probability entries.
Manage Risk: Use CISD levels to refine your stop-loss and profit-taking zones.
Best Application:
After stop hunts during Killzones (London Open, New York AM).
As part of the Flow State Model: identify higher timeframe PD Arrays ➔ wait for lower timeframe CISD confirmation.
🔎 Underlying Concepts:
Liquidity Pools: Highs and lows cluster stop orders, attracting institutional sweeps.
Displacement: Powerful price moves post-sweep confirm smart money involvement.
Market Structure: CISD frequently precedes major Change of Character (CHoCH) or Break of Structure (BOS) shifts.
🎨 Customization Options:
Adjustable line color, width, and style (solid, dashed, dotted).
Optional label display with customizable color and sizing.
Line extension settings to keep CISD zones visible for future reference.
✅ Recommended for:
Traders studying ICT Smart Money Concepts.
Intraday scalpers and higher timeframe swing traders.
Traders who want to improve entries around liquidity sweeps and institutional displacement moves.
🚀 Bonus Tip:
For maximum confluence, pair this with the HTF POI, ICT Liquidity Levels, and HTF Market Structure indicators available at TakingProphets.com! 🔥
Scalp Strategy by Trade Journey📘 Trading Strategy: "Delta Flow Scalper"
Author: @Trad_journey
Type: Scalping / Intraday
Timeframes:
- Context: 1H
- Entry Points: 15m
---
🎯 Core Idea
We use a powerful tool — the Delta-RSI Oscillator (D-RSI), which calculates the derivative of RSI using polynomial regression. This oscillator doesn't just show the strength of price movement but reveals how that strength changes over time.
By combining this with order flow analysis on the 1H timeframe, we can spot reversals and momentum bursts within a prevailing trend, where the D-RSI is most accurate.
---
🔍 Strategy Logic
1. Context (1H)
Before entering a trade on the 15m chart, we determine:
- The trend on 1H using candle structure, levels, EMAs, volume, VSA, and other methods.
- Example: If 1H shows a series of higher highs/lows and rising volume — it indicates an uptrend.
2. Entry Signals (15m)
Entry is based on the D-RSI, configured with manually optimized settings:
- RSI Length: 14
- Polynomial Order: 2
- Window Length: 14
- Signal EMA: 7
- RMSE Filtering: Enabled, e.g., with a 10% threshold
Entry Conditions (any of the following):
- Zero-Crossing: Oscillator crosses above zero (long) or below zero (short)
- Signal Line Cross: D-RSI crosses the signal EMA
- Direction Change: Oscillator was below zero and starts rising (long), or vice versa
3. Trade Filter
To improve accuracy:
- Polynomial Approximation Error Filter (RMSE) is used — this eliminates noisy signals.
- Ideally, confirm entries with a candlestick pattern or key level as well.
---
📈 Example of Entry Logic
1. On 1H: Clear uptrend, candles with long lower wicks, volume increasing
2. On 15m: D-RSI was below zero, sharply started rising and crossed the signal line from below
3. RMSE < 10% → signal confirmed
4. Enter long, place stop below local low + spread
5. Exit:
- On opposite D-RSI signal
- Or at a take profit (e.g., 1.5R or a key level)
---
⚙️ Settings
()
---
📊 Why It Works
- D-RSI captures momentum shifts and trend acceleration — these often occur before price changes.
- RMSE filtering removes false signals during chop or weak movement.
- Using a higher timeframe gives directional context — entries are made in the trend's direction, drastically increasing win probability.
---
🔔 Recommendations
- Don’t use without higher timeframe context — countertrend signals can be unprofitable.
- Best entries are after small pullbacks within a trend.
- You can add an ATR/volatility filter — to avoid signals in tight ranges.
---
✅ Conclusion
Delta Flow Scalper is a plug-and-play strategy for traders looking for precise intraday entries within larger moves. It's great for those wanting to reduce noise and trade smartly with momentum.
Try it on demo, tweak it to fit your style — and go for it!
Daily Levels & Stats Pro - [Aspect] v4.0# Description of the "Daily Levels & Stats Pro - v4.0" Indicator
This indicator is a powerful tool for market analysis through the lens of key daily levels and statistical price movement indicators. It allows you to display important trading session opening levels, daily statistical movements, and high volatility zones on the price chart.
## Main Indicator Functions:
### Key Time Levels:
- **Daily Open (DO)** - daily trading session opening level at 02:00
- **NY Midnight (NYM)** - New York session opening level at 06:00
- **Trade Open (TO)** - active trading opening level at 10:00
### Analysis Zones:
- **Previous Close Zone (PCZ)** - previous day's closing zone (displayed on M5 timeframe)
- **Open Day Zone (ODZ)** - current day's opening zone (displayed on M5 timeframe)
### Statistical Price Movement Levels:
- **Min** - minimum statistical movement from DO
- **Max** - maximum statistical movement from DO
- **Aver** - average statistical movement from DO
- **Dev-** - lower deviation of movement from DO
- **Dev+** - upper deviation of movement from DO
### TO Impulse Movement Statistical Levels:
- **Aver TO** - average statistical movement from TO
- **Dev+ TO** - upper deviation of movement from TO
- **Max TO** - maximum statistical movement from TO
## Indicator Features:
- Complete customization of colors, styles, and line widths for all levels
- Ability to select time for each main level
- Adjustment of the number of bars for level display
- Automatic calculation of level values relative to DO and TO
- Visual display of TO-levels starts 3 bars before the actual TO point, providing better visual perception
- Ability to enable/disable individual levels and zones
- Automatic updates and resets when the day changes
- Adaptive text labels to mark levels
This indicator is excellent for traders who use statistical data and daily support/resistance levels in their trading strategy. It is particularly useful for DAX40 and other highly liquid instruments where daily trading statistics are important for making trading decisions.
[itradesize] ICT Opening range
This indicator automatically annotates the opening ranges of the AM and PM sessions. It should be used on the 1-minute timeframe , although you can check and build a further models when using a 2-3-4 or even 5-minute timeframe. You can customize this under the settings tab.
Additionally, it includes features such as standard deviations and the initial fair value gap presented. Everything is based on what ICT said in his algorithmic timing video.
The algorithm will continue to adjust prices higher or lower until it reaches a predetermined target price. This process will occur within specific time frames: the last 10 minutes before the hour and the first 10 minutes after a new hour begins.
For the AM session opening range, this is from 9:30 to 10:00 , and for the PM session, it's from 13:30 to 14:00 . Defining these ranges allows us to identify the first presented fair value gaps there, as the algorithm is designed to leave these signatures for smart money. This process of time-based delivery precision repeats every day. You can build a whole New York model on this.
It's important to journal and backtest your results results. If the market breaks the opening range on either side and there is evident liquidity, it is highly likely that it will pursue that liquidity.
However, before doing so, the market should retrace back to the first fair value gap if it hasn’t already occurred or back to the 0.75 or 0.5 level of the range at maximum.
When does this happen? Typically, when a macro event occurs— for example, during the lunch macro from 11:30 to 12:00 . In most cases, you can expect a retracement during lunch macro. If the market retraces beyond these levels, there is a higher probability that the expected scenario will not play out.
The algorithm primarily refers to the 30-minute opening range each time. The standard deviation levels can be used to establish algorithmic delivery targets and anticipate another run after the PM session opening range has occurred. The AM session often helps determine the likely direction of movement after the PM session range concludes.
The PM macro runs from 15:15 to 15:45 . At this time, the market will typically operate within the narrative that is currently underway.
H4 Cross + LTF Candle Alignment (Short Lines)H4 Cross + LTF Candle Alignment (Short Lines)
This indicator identifies potential trade opportunities by combining two key conditions:
The current H4 candle crosses above or below the previous H4 candle's high or low.
On a lower timeframe (like 5 minutes), the price shows two consecutive candles moving in the same direction (bullish for long, bearish for short).
Once these conditions align, a short entry line is drawn on the chart and an alert is triggered, providing an early signal for potential price movements. Perfect for traders looking to capture trend continuation with a clear visual marker and timely alerts.
ICT Liquidity Sweep MAX RETRI (ALERT)Strategy Description: SMC + ICT Reversal Sniper | 5-Min | R2 TP
This strategy applies Smart Money Concepts (SMC) and ICT methodology to identify high-probability reversal trades using a clean, rule-based system designed for the 5-minute timeframe.
⸻
Core Logic:
• Liquidity Sweep: Identifies stop hunts beyond recent swing highs/lows using a configurable lookback window.
• Break of Structure (BOS): Validates a directional shift after the sweep.
• Fixed R2 Risk-Reward: Entry is followed by a 2:1 take-profit target. Stop loss is set at the sweep candle’s high/low.
• No Entry Between 8 PM–12 AM NY Time: Avoids the manipulation-prone and illiquid zone.
• Discreet SL Handling: SL hits close trades silently — no labels or visuals.
⸻
Entry Precision & Timing Notes:
• The strategy may occasionally fire before a confirmed liquidity sweep — this is expected. If a sweep occurs later, you may still re-enter toward equilibrium, with take profit also targeted at equilibrium.
• Alerts or trades that trigger near 9:30 AM NY often align with real direction, but this time can be volatile.
• For more reliable and lower-risk entries, focus on the 1:30 PM to 2:00 PM silver bullet window, which tends to produce cleaner setups with more favorable flow. 🖤
EMA 9/21/50 + VWAP + MACD + RSI Pro [v6]Overview:
A powerful multi-indicator tool combining Exponential Moving Averages (EMA 9, 21, 50), Volume-Weighted Average Price (VWAP), Moving Average Convergence Divergence (MACD), and Relative Strength Index (RSI) into a single, easy-to-read system. Designed for traders who want a clean, all-in-one dashboard for trend analysis, momentum confirmation, and overbought/oversold conditions.
Key Features:
1. Triple EMA System (9, 21, 50)
Identifies short-term and medium-term trends.
Bullish Signal: EMA 9 > EMA 21 > EMA 50 (Green Highlight)
Bearish Signal: EMA 9 < EMA 21 < EMA 50 (Red Highlight)
Helps confirm trend direction and potential reversals.
2. VWAP (Volume-Weighted Average Price)
Tracks intraday fair value price based on volume.
Bullish: Price above VWAP (Green)
Bearish: Price below VWAP (Red)
3. MACD (Standard 12, 26, 9 Settings)
Shows momentum shifts.
Bullish: MACD line > Signal line (Green)
Bearish: MACD line < Signal line (Red)
Histogram confirms strength of momentum.
4. RSI (14-Period Default)
Identifies overbought (>70) and oversold (<30) conditions.
Red: Overbought (Potential Reversal)
Green: Oversold (Potential Bounce)
5. Signal Dashboard (Top-Right Table)
Real-time summary of all indicators in one place.
Color-coded for quick interpretation (Green = Bullish, Red = Bearish).
How to Use This Indicator?
✅ Trend Confirmation:
Trade in the direction of EMA alignment (9 > 21 > 50 for uptrends).
Use VWAP as dynamic support/resistance.
✅ Momentum Entries:
Look for MACD crossovers while RSI is not extreme.
Avoid buying when RSI > 70 or selling when RSI < 30 (unless strong trend).
✅ Mean Reversion:
Fade extreme RSI readings (overbought/oversold) when price is at key levels.
Who Is This For?
✔ Swing Traders – EMA + MACD combo for trend-following.
✔ Day Traders – VWAP + EMA for intraday bias.
✔ RSI Traders – Clear overbought/oversold signals.
Settings Customization:
Adjust EMA lengths, RSI periods, and MACD settings as needed.
Toggle VWAP visibility on/off.
Why Use This Script?
📌 All-in-One: No need for multiple indicators cluttering your chart.
📌 Visual Clarity: Color-coded signals for quick decision-making.
📌 Flexible: Works on any timeframe (1M, 5M, 1H, Daily, etc.).
Install now and enhance your trading strategy with a professional-grade multi-indicator system!
Not a financial advice. Use at your own discretion and always apply risk management
ICT MACRO MAX RETRI ( ALERT )🖤 ICT Reversal Detector – Minimalist Edition
This indicator is designed for traders who follow Inner Circle Trader (ICT) concepts, particularly focused on liquidity sweeps and displacement reversals.
It detects:
• Swing Highs & Lows that occur during the most reactive windows of each hour
→ Specifically the last 20 minutes and first 15 minutes
(ICT teaches these moments often reveal macro-level reversals. I’ve expanded the window slightly to give the indicator more room to catch valid setups.)
• Liquidity Sweeps of previous highs/lows
• Displacement (State Change): defined as a manipulation wick followed by 1–3 strong candles closing in the opposite direction
Visually:
• Clean black lines pointing right from the liquidity sweep wick
• White triangle markers inside black label boxes only when valid displacement occurs
• No clutter, no unnecessary shapes — just focused signal
Built for:
• 5-minute charts, especially NASDAQ (NAS100) and S&P 500 (SPX500)
• Confirm setups manually on the 15-minute chart for extra precision
This is a partial automation tool for ICT-style reversal traders who prefer clarity, minimalism, and sharp intuition over noise.
Let it alert you to setups — then decide like a sniper.
Dual RSIHello everyone! I want to show you my version of the RSI indicator. As you may have noticed, in this indicator I decided to use 2 RSI at once, and here's why. I discovered that crossovers between fast and slow RSI can generate good signals. Very often we can determine an entry point with it, and it works just as well as RSI versions with divergences.
So, all you need to do is configure the timeframe from which the RSI will be displayed. For example, when I work on an hourly timeframe, I enable both hourly and four-hour RSI. When the hourly RSI crosses the four-hour RSI from above, it signals that you should look for a short entry point. Conversely, if the hourly RSI crosses the four-hour RSI from below, you should look for a long entry point.
Overall, everyone can choose these settings for themselves. You can also adjust the overbought and oversold zones to increase or decrease the frequency of signals.
This indicator can be a good addition to your strategy. Good luck!
Sessions with Mausa session high/low tracker that draws flat, horizontal lines for Asia, London, and New York trading sessions. It updates those levels in real time during each session, locks them in once the session ends, and keeps them on the chart for context.
At a glance, you always know:
Where each session’s highs and lows were set
Which session produced them (ASIA, LDN, NY labels float cleanly above the highs)
When price is approaching or reacting to prior session levels
🔹 Use Cases:
• Key Levels – See where Asia, London, or NY set boundaries, and watch how price respects or rejects them
• Breakout Zones – Monitor when price breaks above/below session highs/lows
• Session Structure – Know instantly if a move happened during London or NY without squinting at the clock
• Backtesting – Keep historic session levels on the chart for reference — nothing gets deleted
• Confluence – Align these levels with support/resistance, fibs, or liquidity zones
Simple, visual, no distractions — just session structure at a glance.