RSI Swing with EMA and BB Short/Long SignalsThis script gives you the following feature;
1. Top & Lower Top , when it exceed specified RSI threshold (default is 70)
2. Bottom & Higher Bottom, when it exceed specified RSI threshold (default is 30)
3. LONG sign , which is bouncing UP at EMAs (7, 20, 50)
4. SHORT sign, which is bouncing DOWN at EMAs (7, 20, 50)
You can adjust the RSI parameters(threshold and evaluation period) by yourself.
If the "bounce UP/DOWN" signs show up frequently, it can be a sign for the upcoming breakout direction.
If the "bounce UP/DOWN" signs show up with "Higher Bottom or Lower Top", it can be a sign for the trend reversal, especially after the bounce for deep BB break.
If you want the source code, please contanct me.
Pattern grafici
RSI Divergence (Nikko)RSI Divergence by Nikko
🧠 RSI Divergence Detector — Nikko Edition This script is an enhanced RSI Divergence detector built with Pine Script v6, modified for better visuals and practical usability. It uses linear regression to detect bullish and bearish divergences between the RSI and price action — one of the most reliable early signals in technical analysis.
✅ Improvements from the Original:
- Clean divergence lines using regression fitting.
- Optional label display to reduce clutter (Display Labels toggle).
- Adjustable line thickness (Display Line Width).
- A subtle heatmap background to highlight RSI overbought/oversold zones.
- Uses max accuracy with high calc_bars_count and custom extrapolation window.
🔍 How It Works: The script applies linear regression (least squares method) on both RSI data, and Price (close) data.
It then compares the direction of RSI vs. direction of Price over a set length. If price is making higher highs while RSI makes lower highs, it's a bearish divergence. If price is making lower lows while RSI makes higher lows, it's a bullish divergence. Additional filters (e.g., momentum and slope thresholds) are used to validate only strong divergences.
🔧 Input Parameters: RSI Length: The RSI period (default: 14). RSI Divergence Length: The lookback period for regression (default: 25). Source: Which price data to calculate RSI from (default: close). Display Labels: Show/hide “Bullish” or “Bearish” labels on the chart. Display Line Width: Adjusts how thick the plotted divergence lines appear.
📣 Alerts: Alerts are built-in for both RSI Buy (bullish divergence) and RSI Sell (bearish divergence) so you can use it in automation or notifications.
🚀 Personal Note: I’ve been using this script daily in my own trading, which is why I took time to improve both the logic and visual clarity. If you want a divergence tool that doesn't clutter your chart but gives strong signals, this might be what you're looking for.
Meridian ICT SessionsMeridian ICT Sessions - Advanced Trading Session Visualizer
A comprehensive ICT-based trading indicator that elegantly displays Asian, London, and New York trading sessions with advanced liquidity analysis and market structure identification.
Key Features:
Clean, customizable visual design with adjustable transparency and colors
Automatic Forex/Futures market detection with mode-specific kill zones
Real-time liquidity sweep and stop hunt detection
Session high/low tracking with tick range calculations
Kill zones and dead zones with minimal visual clutter
ICT concepts reference table for quick strategy reminders
Minimal mode for ultra-clean charts
Professional gradient effects and modern styling
What It Shows:
Trading sessions with precise NY time zones
Session ranges in ticks
Liquidity sweeps when price raids previous highs/lows
Stop hunts based on wick analysis
Kill zones for high-probability trading times
Power of 3 session phases (Hunt → Direction → Expand)
Perfect For:
ICT students wanting clean session visualization
Traders focusing on liquidity and market structure
Anyone tracking multi-session price action
Both forex and futures traders (auto-detects market type)
Designed for clarity over clutter. All visual elements are customizable or can be hidden for a personalized trading experience.
Based on Inner Circle Trader (ICT) concepts.
타지마할 밴드⚠️ Disclaimer: For Informational Purposes Only – Use at Your Own Risk
The indicators and tools provided in this script are intended solely for educational and informational purposes. They are not financial advice, investment recommendations, or guarantees of any kind. While technical indicators can be helpful in identifying trends or potential entry/exit points, they are inherently limited, subject to interpretation, and should never be relied upon as the sole basis for making trading decisions.
Market conditions are dynamic and influenced by numerous unpredictable factors. Past performance, patterns, or signals generated by indicators do not guarantee future results. No indicator can account for fundamental news events, market manipulation, or sudden price volatility.
You are solely responsible for any decisions you make based on the use of this script. Trading involves substantial risk and may not be suitable for every investor. Always conduct your own research, consult with a qualified financial advisor, and understand your personal risk tolerance before entering any trade.
Use this tool at your own discretion and always trade responsibly.
Dynamic Fibonacci Retracement with ConfirmationDynamic Fibonacci Retracement with Confirmation plus MFI CCI RSI MA MACD Candle stick pattern
cd_secret_candlestick_patterns_CxHi traders,
With this indicator, we aim to uncover secret candlestick formations that even advanced traders may miss—especially those that can't be detected by classic pattern indicators, unless you're a true master of candlestick patterns or candle math.
________________________________________
General Idea:
We'll try to identify candlestick patterns by regrouping candles into custom-sized segments that you define.
You might ask: “Why do I need this? I can just look at different timeframes and spot the structure anyway.” But it’s not the same.
For example, if you're using a 1-minute chart and add a higher-timeframe candle overlay (like 5-minute), the candles you see start at fixed timestamps like 0, 5, 10, etc.
However, in this indicator, we redraw new candles by grouping them from the current candle backward in batches of five.
These candles won't match the standard view—only when aligned with exact time multiples (e.g., 0 and 5 minutes) will they look the same.
In classic charts:
• You see 5-minute candles that begin every 0 and 5 minutes.
In this tool:
• You see a continuously updating set of 5 merged 1-minute candles redrawn every minute.
What about the structures forming in between those fixed timeframes?
That’s exactly what we’ll be able to detect—while also making the lower timeframe chart more readable.
________________________________________
Candle Merging:
Let’s continue with an example.
Assume we choose to merge 5 candles. Then the new candle will be formed using:
open = open
close = close
high = math.max(high , high , high , high , high)
low = math.min(low , low , low , low , low)
This logic continues backward on the chart, creating merged candles in groups of 5.
Since the selected patterns are made up of 3, 4, or 5 candles, we redraw 5 such merged candles to analyze.
________________________________________
Which Patterns Are Included?
A total of 18 bullish and bearish patterns are included.
You’ll find both widely known formations and a few personal ones I use, marked as (MeReT).
You can find the pattern list and visual reference here:
________________________________________
Entry and Filtering Suggestions:
Let me say this clearly:
Entering a trade every time a pattern forms will not make you profitable in the long run.
You need a clear trade plan and should only act when you can answer questions like:
• Where did the pattern appear?
• When and under what conditions?
It’s more effective to trade in the direction of the trend and look for setups around support/resistance, supply/demand zones, key levels, or areas confirmed by other indicators.
Whether you enter immediately after the pattern or wait for a retest is a personal choice—but risk management is non-negotiable.
One of the optional filters I’ve included is a Higher Timeframe (HTF) condition, which is my personal preference:
When enabled, the highest or lowest price among the pattern candles must match the high or low of the current HTF candle.
You can see in the image below the decrease in the number of detected patterns on the 1-minute chart when using no filter (blue labels) compared to when the 1-hour timeframe filter is applied (red labels).
Additionally, I’ve added a “protected” condition for engulfing patterns to help filter out weak classic engulf patterns.
________________________________________
Settings:
From the menu, you can configure:
• Number of candles for regrouping
• Distance between the last candle and newly drawn candles
• Show/hide options
• HTF filter toggle and timeframe selection
• Color, label placement, and text customization
• Pattern list (select which to display or trigger alerts for)
My preferred setup:
While trading on the 1-minute chart, I typically set the higher timeframe to 15m or 1H, and switch the candle count between 2 and 3 depending on the situation.
⚠️ Important note:
The “Show” and “Alert” options are controlled by a single command.
Alerts are automatically created for any pattern you choose to display.
________________________________________
What’s Next?
In future updates, I plan to add:
• Pattern success rate statistics
• Multi-broker confirmation for pattern validation
Lastly, keep in mind:
The more candles a pattern is based on, the more reliable it may be.
I'd love to hear your feedback and suggestions.
Cheerful trading! 🕊️📈
SW Zapier Volume Indicator testTracks volume are creates alerts. Sends info to zapier through webhooks.
Stefan Whitwell Zapier Volume Indicator TestThis indicator tracks the volume and creates buy and sell alerts.
TFT - Volume Pressure CandlesThis indicator colors candles on your chart to show when there's strong buying or selling pressure backed by volume.
It calculates an underlying "Volume Pressure" value by comparing buy/sell volume.
By default, when the pressure value rises above +25, it turns candles blue (suggesting strong buying). When it drops below -25, candles turn yellow (suggesting strong selling).
This indicator will help spot potential momentum shifts quickly and help you know if its a good trending market with directional volume pressuring the trend to continue.
You can change this value to any + or - you wish to adjust the volume pressure sensitivity.
This indicator should be used with additional indicators and not used as a stand alone indicator to determine buying or selling opportunities.
ETF / Index Optimized Buy/Sell🎯 Optimized for Large Cap Stocks:
Large caps are:
Trend-driven but stable
Influenced by institutional volume
Require momentum + confirmation filters to avoid chop
✅ Features Included:
Non-repainting EMA crossover
RSI + MACD filter
Optional volume confirmation
200 EMA trend direction
Stop Loss / Take Profit plotting
Buy/Sell labels
Real-time alert triggers
Large Cap Optimized Buy/Sell✅ Features Included:
Non-repainting EMA crossover
RSI + MACD filter
Optional volume confirmation
200 EMA trend direction
Stop Loss / Take Profit plotting
Buy/Sell labels
Real-time alert triggers
📊 How to Use:
Use on AAPL, NVDA, MSFT, TSLA, AMZN, GOOG
Best Timeframe 5m – 30m intraday / 1h swing
Best Sessions Regular market hours (9:30–4 ET)
Optional Add-ons VWAP, anchored support lines
Intraday Buy/Sell for Low Caps📈 Performance Tips:
Best for 1min – 15min timeframes on volatile low-cap tickers.
Use alongside VWAP or Support/Resistance zones for filtering chop.
Consider adding trend filters (e.g., 200 EMA) if too many false signals.
Mid-Cap Intraday Buy/Sell Signals🧠 Strategy Insights for Mid-Cap Intraday:
Setting Recommendation
⏱ Timeframes 5min, 10min, or 15min
🧲 Use Cases Mid-cap tech, industrials, healthcare
⚠ Avoid Very low volume days or premarket
📊 Combine With Anchored VWAP, Trendlines, Heatmap
📈 Triple Oscillator Long & Short SignalsIf you were to pick the most leading indicators among the trend indicators currently released to the public, there would be no question that they are Stochastic Oscillator, MIF, and CCI. If you combine these three indicators into one indicator and these three indicators are both long or short, you can get very satisfactory results when entering and cutting losses. I hope this helps you with your investment.
Morning Structure – Live 30 Min Range📝 Description:
This indicator captures the morning price structure by tracking the high and low during the first 30 minutes after market open (default: 9:30 AM to 10:00 AM, New York time).
🔧 How it works:
At market open, it begins tracking the highest high and lowest low
The high and low lines are dynamic and update in real-time during the first 30 minutes
Once the 30-minute range completes, the lines freeze at their final values
Lines extend horizontally across the rest of the session to mark the "Morning Range"
✅ Key Features:
Tracks live price action during the morning session
Freezes the structure after 30 minutes (or user-defined)
Automatically resets each new trading day
Built-in timezone setting (America/New_York) to align with standard U.S. market hours
Clean visual lines that scroll naturally with the chart
⚙️ Use Cases:
Identify morning breakout zones
Define support and resistance early in the session
Combine with breakout, fade, or range-trading strategies
⚠️ Note:
This version does not include alerts or labels, by design (clean and focused).
Those can be added easily for custom strategies.
Morning Structure – Live 30 Min Range📝 Description:
This indicator captures the morning price structure by tracking the high and low during the first 30 minutes after market open (default: 9:30 AM to 10:00 AM, New York time).
🔧 How it works:
At market open, it begins tracking the highest high and lowest low
The high and low lines are dynamic and update in real-time during the first 30 minutes
Once the 30-minute range completes, the lines freeze at their final values
Lines extend horizontally across the rest of the session to mark the "Morning Range"
✅ Key Features:
Tracks live price action during the morning session
Freezes the structure after 30 minutes (or user-defined)
Automatically resets each new trading day
Built-in timezone setting (America/New_York) to align with standard U.S. market hours
Clean visual lines that scroll naturally with the chart
⚙️ Use Cases:
Identify morning breakout zones
Define support and resistance early in the session
Combine with breakout, fade, or range-trading strategies
⚠️ Note:
This version does not include alerts or labels, by design (clean and focused).
Those can be added easily for custom strategies.
Keltner Channel Breakout Signal (Box Only)Keltner channel has the property that when a candle breaks through up or down, it turns around and heads towards the center line. However, there seems to be no indicator that signals when the channel is broken through, so I created it and am sharing it.
Enhanced Market Structure (Advanced)We are beta testing a ICT script that 100% does all of the price action analysis for you. We are excited to show case this as it has taking us over a YEAR to fully code and do what we want. THIS IS THE MARKET STRUCTURE VARIATION!
TradeX Labs Price Action (FREE Variation)We are beta testing a ICT script that 100% does all of the price action analysis for you. We are excited to show case this as it has taking us over a YEAR to fully code and do what we want. THIS IS THE FREE VERSION.
TradeX Labs Price Action (FULL VARIATION)We are beta testing a ICT script that 100% does all of the price action analysis for you. We are excited to show case this as it has taking us over a YEAR to fully code and do what we want.