Multi-Ticker Daily Change DisplayThis give you the ability to add a 5-ticker table to your charts to be able to track indices or specific stock change percentages.
Indicatori e strategie
[IX] 15min ORB + Volume Trend DeltaIX 15-Minute ORB + Trend Volume Delta
A powerful intraday tool that combines Opening-Range Breakouts with a real-time volume delta tracker and adaptive trend logic—built for traders who want to stay on the right side of momentum and liquidity.
🔹 WHAT THIS INDICATOR DOES
• Automatically draws the Opening Range (ORB) for London (07:00–07:15 UTC) and New York (13:30–13:45 UTC) sessions.
• Once the ORB is set, it highlights the high and low levels throughout the session.
• Adds key previous levels: yesterday’s High, Low, Open and the most recent 4H High/Low.
• Includes a Trend MA with ±2× ATR(200) bands to define bullish/bearish market conditions.
• Tracks buy vs sell volume within the current trend regime and shows it live on your chart as a percentage delta.
🔹 HOW TO USE IT
Set your chart to 5-minute timeframe (or any intraday timeframe up to the selected ORB window).
When the session begins, the script automatically locks in the ORB zone.
Once the ORB is formed:
• If price breaks and holds above the ORB ➤ focus on longs.
• If price breaks and holds below the ORB ➤ focus on shorts.
Use the Trend Volume Delta as confirmation—strong buy delta supports longs, strong sell delta supports shorts.
Targets and support/resistance can be aligned with previous Daily / 4H levels.
🔹 TREND FILTER & VOLUME DELTA
• The adaptive trend MA uses CMO-based weighting, becoming more responsive during momentum shifts and more stable during chop.
• Trend regime is defined by price closing above or below the ±2× ATR bands.
• While inside a regime (bullish or bearish), the script accumulates volume:
– Bullish = volume from green candles (close > open)
– Bearish = volume from red candles (close < open)
• Displays total buy/sell volume and the percentage delta live in a compact table.
🔹 CUSTOMIZATION OPTIONS
• ORB duration (1–15 min)
• Custom session times for London and New York
• Toggle display for ORBs, previous levels (Daily / 4H), volume delta table, watermark
• Fully adjustable ORB and trend colors
• Trend/Momentum settings, table size and position
🔹 ALERTS INCLUDED
• Price breaking above or below the London or NY ORB
• Alerts only trigger after the ORB is set—perfect for breakout entries
🔹 WHY THIS MATTERS
• ORBs are used by institutional traders to define the day’s first true directional intent
• Trend filter avoids chasing noise by adjusting to volatility
• Volume Delta shows who’s in control—buyers or sellers
• Previous levels give natural reaction points for entries, stops, and targets
🔹 DISCLAIMER
This indicator is for educational use only. Not financial advice. Always do your own research and manage risk responsibly.
🔹 JOIN THE COMMUNITY
Want more free tools like this?
Join the free IXTradingHub Discord to access additional indicators, trading resources, and live discussions.
Or check out our VIP suite if you’re ready to take your trading to the next level and start building consistent profitability.
→ Visit IXTradingHub.com to get started.
21 & 200 EMA with Star at Crossovers21-day EMA: Plotted in green
200-day EMA: Plotted in red
Crossover Markers:
A yellow star (★) appears on the chart at the 21 EMA price level when:
21 EMA crosses above the 200 EMA (bullish crossover)
21 EMA crosses below the 200 EMA (bearish crossover)
Stars have a black background to ensure high visibility
London & NY Sessions - Full ViewGreen vertical line at London Open (08:00 London time)
Red vertical line at New York Open (13:30 London time)
🟩 Shaded background for:
London Session: 08:00 – 17:00
New York Session: 13:30 – 21:00
Currency Volatility Index (CVI)This Currency Volatility Index (CVI) indicator aggregates the realized volatility of the eight “major” FX pairs into a single, tradable series—much like an FX-version of the VIX. Here’s what it does step by step:
Inputs & Settings
• Volatility Length (default 20 days): the lookback over which daily log-returns’ standard deviation is computed.
• Data Timeframe (default Daily): the resolution at which price data is fetched for each pair.
• Smoothing Length (default 5): the period of a simple moving average applied to the raw, averaged volatility (in %).
Pair-by-Pair Volatility Calculation
For each hard-coded symbol (EURUSD, GBPUSD, USDJPY, USDCHF, AUDUSD, USDCAD, NZDUSD, EURGBP):
Pull the series of daily closes.
Compute the series of log-returns: ln(today’s close / yesterday’s close).
Calculate the standard deviation of those log-returns over your lookback.
Annualize it (×√252) to convert daily volatility into an annualized figure.
Aggregation
The eight annualized volatilities are averaged (equal weights).
The resulting number is then multiplied by 100 to express it as a percentage.
Smoothing & Plotting
A simple moving average over the aggregated volatility smooths out spikes.
The smoothed CVI (%) is plotted as a standalone line below price charts.
Visualization Aids
A small table in the top-right corner shows each pair’s current volatility in percent.
A dynamic label on the final bar prints the latest CVI value directly on the chart.
Why use it?
Gives a one-stop measure of overall FX market turbulence.
Helps you compare “quiet” vs. “volatile” regimes across currencies.
London & NY Sessions - Full ViewThis Pine Script highlights the London and New York trading sessions on a 5-minute chart using the London time zone. It includes:
✅ A green vertical line and label at London Open (08:00)
✅ A red vertical line and label at New York Open (13:30)
✅ Light green background during the London session (08:00–17:00)
✅ Light red background during the New York session (13:30–21:00)
Use it to visually track key market openings and identify high-volume trading periods.
Medias Móviles - Swing Trading - by addryy58....sdasdsjdhsaidhsauoixhashxuoashxuosahuoxhasohxsaxsaxsa
SMA 5/10/20/50/100/150/200/250//@version=6
indicator (title="SMA8", shorttitle="SMA8", overlay=true)
len1 = input.int(5, minval=1, title="SMA 1")
src1 = input(close, title="Source One")
out1 = ta.sma(src1, len1)
plot(out1, title="SMA 1", color=color.rgb(233, 11, 11), linewidth=1)
len2 = input.int(10, minval=1, title="SMA 2")
src2 = input(close, title="Source Two")
out2 = ta.sma(src2, len2)
plot(out2, title="SMA 2", color=color.orange, linewidth=1)
len3 = input.int(20, minval=1, title="SMA 3")
src3 = input(close, title="Source Three")
out3 = ta.sma(src3, len3)
plot(out3, title="SMA 3", color=color.rgb(250, 226, 12), linewidth=1)
len4 = input.int(50, minval=1, title="SMA 4")
src4 = input(close, title="Source Four")
out4 = ta.sma(src4, len4)
plot(out4, title="SMA 4", color=color.rgb(51, 255, 0), linewidth=1)
len5 = input.int(100, minval=1, title="SMA 5")
src5 = input(close, title="Source Five")
out5 = ta.sma(src5, len5)
plot(out5, title="SMA 5", color=color.rgb(0, 249, 249), linewidth=1)
len6 = input.int(150, minval=1, title="SMA 6")
src6 = input(close, title="Source Six")
out6 = ta.sma(src6, len6)
plot(out6, title="SMA 6", color=#014ff9, linewidth=1)
len7 = input.int(200, minval=1, title="SMA 7")
src7 = input(close, title="Source Seven")
out7 = ta.sma(src7, len7)
plot(out7, title="SMA 7",color=#6c01f9, linewidth=1)
len8 = input.int(250, minval=1, title="SMA 8")
src8 = input(close, title="Source Eight")
out8 = ta.sma(src8, len8)
plot(out8, title="SMA 8",color=color.white, linewidth=1)
CirclesCircles - Support & Resistance Levels
Overview
This indicator plots horizontal support and resistance levels based on W.D. Gann's mathematical approach of dividing 360 degrees by 2 and by 3. These divisions create natural price magnetism points that have historically acted as significant support and resistance levels across all markets and timeframes.
How It Works
360÷2 Levels (Blue): 5.63, 11.25, 33.75, 56.25, 78.75, etc.
360÷3 Levels (Red): 7.5, 15, 30, 37.5, 52.5, 60, 75, etc.
Both Levels (Yellow): 22.5, 45, 67.5, 90, 112.5, 135, 157.5, 180 - These are "doubly strong" as they appear in both calculations
Key Features
Auto-Scaling: Automatically adjusts for any price range (from $0.001 altcoins to $100K+ Bitcoin)
Manual Scaling: Choose from 0.001x to 1000x multipliers or set custom values
Full Customization: Colors, line widths, styles (solid/dashed/dotted)
Historical View: Option to show all levels regardless of current price
Clean Display: Adjustable label positioning and line extensions
Use Cases
Identify potential reversal zones before price reaches them
Set profit targets and stop losses at key mathematical levels
Confirm breakouts when price decisively moves through major levels
Works on all timeframes and all markets (stocks, crypto, forex, commodities)
Gann Theory
W.D. Gann believed that markets move in mathematical harmony based on geometric angles and time cycles. These 360-degree divisions represent natural balance points where price often finds support or resistance, making them valuable for both short-term trading and long-term analysis.
Perfect for traders who use:
Support/Resistance trading
Fibonacci levels
Pivot points
Mathematical/geometric analysis
Multi-timeframe analysis
My scriptThe real detrended 4-year growth rate measures inflation-adjusted growth relative to a long-term trend for real wages
Simple Sessions & LevelsWhat this indicator does:
This script marks out two essential types of price levels for intraday and swing traders:
The high and low of a customizable 15-minute opening range after the market/session open.
The previous day’s high, midpoint (“halfback”), and low.
How it works:
The script lets you set the session start time (hour and minute) to match your market.
It then calculates the high and low of the first 15 minutes after the session opens and plots those as solid lines.
It also plots the prior day’s high, halfback (midpoint), and low on your chart for easy reference.
Each line and each label can be toggled on or off independently in the settings for maximum customization.
Colors for each level are also fully customizable.
How to use it:
Add the script to your chart.
Set the session start hour and minute to match the open of the market or instrument you trade.
Choose which levels and labels you want displayed by using the toggles in the settings.
The indicator will automatically draw the session range and prior day levels for you.
Use these lines as reference for key support, resistance, and potential trade entry/exit points.
What makes it unique and useful:
This tool combines a flexible session opening range with classic daily reference levels in one package. You have complete control over which levels and labels are shown, making it adaptable for any trading style. It’s especially useful for day traders who want to quickly identify volatility windows and the most important price levels from the previous session.
Expanded Cloud [LuxAlgo]The Expanded Cloud tool allows traders to identify and follow trends accurately. It is based on the well-known Donchian Channels, but with enhanced features.
It features a trailing cloud that expands with the price and a trading stats dashboard.
🔶 USAGE
The tool is super easy to use. Traders can identify bigger or smaller trends just by adjusting the length from the settings panel.
Trend identification is based on Donchian Channels. An uptrend is indicated when the cloud is located below the price, while a downtrend is indicated when the cloud is above it.
Dots signal the start of a new trend, and the width of the clouds identifies the strength of the price expansion. The wider the cloud, the bigger the move.
The expanded cloud, due to its visual, can also act as a trailing stop.
🔹 Trend Identification
As we can see in the chart above, different length values identify different trends on the same BTC daily chart. Larger values identify larger trends.
🔹 Cloud Expansion
From the settings panel, traders can adjust how the clouds expand based on the Expansion % parameter. It accepts values from 0 to 100, which controls how much of the expansion is taken into account. Higher values will make the cloud expand and get closer to the price faster.
When the cloud moves opposite to the direction of the indicated trend (e.g: the cloud decreases while being below the price), it is often indicative of the end of a retracement, and we can expect the price to move with the indicated trend.
The chart above shows the effect of different Expansion % values.
🔹 Dashboard
The trading statistics dashboard informs traders of key metrics derived from the tool. The following are notable:
PNL: Theoretical profit or loss from all trends identified by the tool in the right scale units.
EXPECT.: Expected value of each trade. It is derived from win rate and risk-to-reward metrics.
AVG: 1st TOUCH: The average number of bars from the beginning of a new trend until the price touches the cloud for the first time.
🔶 SETTINGS
Length: Length for trend detection
Expansion %: Percentage of price expansion for cloud formation
Source: Source of the data
🔹 Dashboard
Show Dashboard: Enable/disable the statistics dashboard
Location: Dashboard location
Size: Dashboard size
Simple Risk-to-Reward (R) Indicator (TP1–TP2)What this indicator does:
This tool helps traders clearly visualize their risk and reward on any trade by plotting their entry, stop loss, and take-profit (TP) levels directly on the chart. It’s designed to make manual trade planning more visual and systematic.
How it works:
You set your planned entry price, whether you want to plot a Long or Short setup, and your stop-loss distance (in ticks).
The indicator calculates your stop-loss level and automatically plots it on the chart.
It then draws take-profit levels at 1R and 2R (where “R” is your risk, the distance between entry and stop).
You can toggle the TP1 and TP2 lines on or off to suit your preference.
How to use it:
Open the settings and enter your intended entry price.
Select “Long Setup” for a buy trade, or turn it off for a sell/short trade.
Enter your desired stop loss in ticks.
Choose which take-profit levels to display by toggling TP1 and TP2.
The indicator will show entry, stop, and take-profit levels right on your chart so you can easily see your planned risk/reward.
What makes it unique and useful:
This indicator is designed for manual trade planning, giving you full control over your inputs and letting you instantly see your risk/reward on any instrument or timeframe. Unlike some built-in tools, it supports both long and short trades, lets you set all levels manually, and keeps your charts clean and easy to interpret.
ICT Setup 04 [TradingFinder] SFP Sweep Liquidity Fake CHoCH/BOS🔵 Introduction
In smart money and ICT based trading, liquidity is never random. Some of the most meaningful market moves begin with a liquidity sweep where price intentionally hunts a previous swing high or swing low to trigger stop loss orders and absorb volume.
This manipulation is often followed by a sharp reversal from a reaction zone, creating ideal conditions for a high probability entry. This indicator is built to detect exactly that. It identifies a valid swing point and defines a reaction zone where price is likely to react.
For short setups, the zone lies between the swing high and the maximum of the candle’s open or close. For long setups, it’s drawn from the swing low to the minimum of the open or close.
When price returns to this zone and forms a qualified confirmation candle typically a doji or a small bodied candle that closes inside the zone while sweeping the liquidity this is a potential sign of reversal.
The candle must show both the sweep and the inability to hold above or below the key level, signaling a fake breakout or failed move. By combining elements of liquidity hunt, reaction zone rejection, and candle based entry confirmation, this tool highlights sniper entry points used by smart money to trap retail traders and reverse the trend. It helps filter out noise and enhances timing, making it ideal for trading in alignment with institutional order flow.
Long Position :
Short Position :
🔵 How to Use
This indicator is designed to highlight precise moments where price sweeps liquidity and reacts within a high probability reversal zone. By identifying clean swing highs and lows and defining a smart reaction zone around them, it filters out weak fakeouts and focuses only on setups with strong institutional footprints.
The tool works best when combined with market structure analysis and is suitable for both scalping and intraday trading. Below is a breakdown of how to interpret the signals for long and short positions based on the visual setups provided.
🟣 Long Setup
In a long setup, the indicator first detects a valid swing low where liquidity has likely accumulated below. A reaction zone is then drawn between the swing low and the minimum of the open or close of the swing candle.
When price returns to this zone, it must sweep the previous low and form a precise confirmation candle, such as a doji or a small bodied candle, that closes inside the zone. This candle must also reject the lower level, showing failure to continue downward.
As shown in the chart, once the liquidity grab is complete and the confirmation candle forms, a clean long signal is issued, indicating a potential bullish reversal backed by smart money behavior.
🟣 Short Setup
In a short setup, the indicator identifies a swing high where buy-side liquidity is resting. It then constructs a reaction zone between the high and the maximum of the open or close of the swing candle. Price must return to this zone, sweep the swing high, and form a bearish confirmation candle inside the zone.
A classic example is a doji or rejection candle that traps breakout buyers and fails to hold above the previous high. In the provided chart, the price aggressively hunts the liquidity above the swing high, but the close within the reaction zone signals exhaustion, prompting a short signal with high reversal probability.
These setups represent moments where price action, liquidity behavior, and candle structure align to offer strong entries. By focusing on clean sweeps and reactive confirmations, the indicator helps traders stay on the side of smart money and avoid common breakout traps.
🔵 Settings
🟣 Logical settings
Swing period : You can set the swing detection period.
Max Swing Back Method : It is in two modes "All" and "Custom". If it is in "All" mode, it will check all swings, and if it is in "Custom" mode, it will check the swings to the extent you determine.
Max Swing Back : You can set the number of swings that will go back for checking.
Maximum Distance Between Swing and Signal :The maximum number of candles allowed between the swing point and the potential signal. The default value is 50, ensuring that only recent and relevant price reactions are considered valid.
🟣 Display settings
Displaying or not displaying swings and setting the color of labels and lines.
🟣 Alert Settings
Alert SFP : Enables alerts for Swing Failure Pattern.
Message Frequency : Determines the frequency of alerts. Options include 'All' (every function call), 'Once Per Bar' (first call within the bar), and 'Once Per Bar Close' (final script execution of the real-time bar). Default is 'Once per Bar'.
Show Alert Time by Time Zone : Configures the time zone for alert messages. Default is 'UTC'.
🔵 Conclusion
This indicator is built for traders who rely on liquidity driven setups and smart money principles. By combining swing structure analysis with precision reaction zones and strict entry confirmation, it isolates the exact moments where price sweeps liquidity and fails to continue. These are high value points where institutional activity often reveals itself, and retail traps unfold.
Unlike generic breakout tools, this script focuses on quality over quantity by requiring both a sweep of a swing high or low and a confirmed rejection candle that closes inside a predefined zone. With customizable swing depth, proximity filters, visual highlights, and alert functions, it offers a complete framework for identifying and acting on fake breakouts with confidence. Whether you trade forex, crypto, or indices, this tool enhances your ability to align with true order flow and take entries where liquidity is most likely to shift.
Jeromey Dual MAs with SmoothingThis is a powerful 2-in-1 indicator that lets you plot two completely independent moving average systems on your chart at the same time.
Each of the two systems works in two layers:
The Primary MA: This is a standard Exponential Moving Average (EMA) calculated from the price. You choose its length and color (e.g., a blue 20-period EMA).
The Optional Smoothing MA: This is a second moving average that uses the value of the Primary MA as its input. This creates a "moving average of a moving average," resulting in an even smoother line. You can choose its type (like SMA or WMA) and even turn it into Bollinger Bands that wrap around the Primary MA.
In short, it lets you combine two complete trend-following systems (like a fast MA and a slow MA), each with its own optional smoothing, all within a single indicator to keep your chart clean.
NASDAQ Reaper📈 NASDAQ Reaper – The Ultimate Wall Street Killer
The NASDAQ Reaper is a highly advanced Smart Money Concepts (SMC) + Price Action based indicator, engineered for traders who demand accuracy, precision, and real-time edge in the NASDAQ (NQ) market.
This tool was crafted for serious traders looking to dominate the charts with institutional-grade logic, featuring:
✅ Smart Buy/Sell Zones
✅ Opening Range Breakout (ORB) Detection
✅ Volume Confirmation for Strong Entries
✅ Real-Time Entry & Exit Signals
✅ Trend & Momentum Alignment (Multi-Timeframe Logic)
✅ Trailing TP & SL with Visual Feedback
✅ Backtest Module for Strategy Validation
💡 Designed to filter noise and highlight only high-probability setups, NASDAQ Reaper helps you stay one step ahead of retail traders and ride the moves the smart money makes.
🔔 Works best on:
• 5M, 15M, and 30M charts
• London and New York sessions
• Scalping or intraday swing strategy
Whether you're aiming for 50+ tick scalps or sniper entries aligned with trend reversals, this is your secret weapon to level up your trading game.
Ergin Swing V2"Wealth doesn’t come in a hurry. Be patient with yellow, take a break with purple."
Ergin Swing V2 is a minimalistic yet highly effective visual strategy built on a single indicator: EMA14.
✅ Yellow candle → First close above EMA14 = Buy signal
🟣 Purple candle → First close below EMA14 = Sell signal
🔇 No noisy signals in between. Only the first cross is marked.
Ideal for:
Swing traders who prefer clean charts
Trend-followers who avoid indicator overload
Anyone who wants to "see the signal" clearly without alerts popping every bar
➕ Can be extended with RSI, TP/SL logic, or trend filters
Created by Ergin • Powered by Patience • Verified by Candles
Jeromey Dual MAs with SmoothingThis is a powerful 2-in-1 indicator that lets you plot two completely independent moving average systems on your chart at the same time.
Each of the two systems works in two layers:
The Primary MA: This is a standard Exponential Moving Average (EMA) calculated from the price. You choose its length and color (e.g., a blue 20-period EMA).
The Optional Smoothing MA: This is a second moving average that uses the value of the Primary MA as its input. This creates a "moving average of a moving average," resulting in an even smoother line. You can choose its type (like SMA or WMA) and even turn it into Bollinger Bands that wrap around the Primary MA.
In short, it lets you combine two complete trend-following systems (like a fast MA and a slow MA), each with its own optional smoothing, all within a single indicator to keep your chart clean.
Watermark Clarity V33🌟 Introducing Watermark Clarity V33 – Banner 🌟
Watermark Clarity V33 is a visual utility tool designed to enhance chart awareness, focus, and clean aesthetics without adding market noise. Unlike traditional indicators, this script does not generate buy/sell signals or perform technical analysis. Instead, it provides a customizable on-chart watermark banner that clearly communicates your current mindset, risk awareness, or trading bias directly on the chart — helping traders stay aligned with their pre-defined plans and reducing impulsive behavior.
Whether you’re a discretionary trader, scalper, or swing trader, Watermark Clarity V33 offers an adaptive display that blends clarity with minimalism, keeping your chart clean while remaining informative.
🛠 Customizable Parameters
• Dual Text Banners: Configure two independent headers to reflect trading goals, risk posture, or emotional cues.
• Smart Animation Toggle: Optionally animate between messages to help reinforce shifting market awareness or draw attention during high-alert periods.
• Size, Color & Positioning: Adjust the info box’s text size, banner dimensions, background color, transparency, and placement (top/middle/bottom – left/center/right).
• Transparent Mode: Switch to semi-transparent mode for cleaner overlays during live sessions or screen recording.
🚀 New Feature – Custom Alerts & Smart Animation Control
• Market-Aware Animation Logic:
When Enable Animation is turned on and both Heading 1 and Heading 2 are filled:
• 📈 During Market Hours → The banner alternates smoothly between both headings, helping maintain awareness and visual engagement.
• 💤 Outside Market Hours → The banner remains fixed on Heading 1. This acts as a subtle visual cue that markets are currently closed — giving you peace of mind and a cleaner screen.
✨ Visual Utility Use Cases
• Accountability Layer: Keep yourself accountable to your trading rules or session checklist.
• Mindset Anchor: Display motivational or tactical reminders that guide your trading behavior.
• Multi-Timeframe Syncing: Use different watermarks across charts to stay aligned across timeframes or instruments.
📘 How to Use
1. Add the Indicator: Apply “Watermark Clarity V33 – Banner” to your chart.
2. Configure Inputs: Adjust the banner texts, size, color scheme, and screen position to your liking.
4. Focus & Trade: Let the visual cue support your decision-making environment without interfering with price action.
❗ Important Notes
• This indicator does not analyze price data or generate signals. It is designed solely for visual clarity and trader discipline support.
• All display logic runs in real-time and responds to your settings only, no repainting or lookahead bias.