MSB Trend Breakout Indicator V7**MSB Trend Breakout Indicator (V7)**
This indicator is a robust, rule-based system designed to align trade entries with confirmed momentum shifts.
**TECHNICAL JUSTIFICATION (Why it works):**
The core logic combines two essential concepts to improve signal reliability:
1. **Trend Confirmation (The Slow Filter):** Uses the **50-period Exponential Moving Average (EMA)** to strictly filter the market bias. Signals are only generated when the price is clearly above or below this moving average, preventing counter-trend trading and focusing on the dominant institutional flow.
2. **Momentum Entry (The Fast Filter):** A **3-bar high/low breakout** confirms the immediate price surge. This short-term trigger provides an optimal entry point right as the momentum begins.
**The Combination's Value:** This mashup's purpose is to avoid the whipsaws of the fast breakout signal and the lagging nature of the slow EMA, providing a unique balance of speed and directional confirmation.
**Usage:**
* Optimized For: XAUUSD (Gold) on 15m/30m charts.
---
**Important Note & Risk Disclosure:**
This tool is for informational and educational use only. **It does not guarantee profits** and is not financial advice. Past performance is not indicative of future results. Please conduct your own analysis before trading.
趨勢分析
Ultimate Adaptive Trend & Volume SystemUltimate Adaptive Trend & Volume System (UT Bot + VIDYA + Kalman)
A complete adaptive trend engine with volume overlays, Kalman precision, and multi filter confirmations.
Description: This multi filter trading system integrates UT Bot, Waddah Attar Explosion (WAE), ADX, Trendillo, VIDYA blended T3, and Kalman SuperTrend logic. It generates BUY, SELL, and TP signals only when multiple adaptive trend, volume, and volatility conditions align.
🔑 Core Features
• UT Bot Sensitivity + ATR Distance for base entries
• Hybrid T3 + VIDYA trendline (adaptive slope by @davidtech)
• Kalman Exponential SuperTrend (KEST | MisinkoMaster) for band slope, expansion, and compression filters
• Trendillo ALMA smoothing for trend strength validation
• Waddah Attar Explosion V2 by LazyBear for momentum confirmation
• TDFI (@davidtech) and Uptrick Volume Weightbands as optional overlays for volume weighted trend context
• 150 EMA anchor for long term directional bias
• Multi timeframe hybrid slope (15m) for higher timeframe confirmation
📊 Filters & Overrides
• Candle body strength, breakout candle confirmation, and directional breaks
• Volume filters: average, collapse, spike, and time of day bias
• Directional volume delta confirmation
• ROC burst persistence and slope acceleration filters
• ADX + WAE dynamic gating for strong momentum
• Volatility compression/expansion breakout detection
• Pre session momentum scan for London open
• Chop zone filter (RSI + MACD flat)
• Override logic: Kalman flip + volume spike, slope + ROC burst combo, volatility breakout override, and 3m breakout exception
• Gating Table Overlay: chart native table showing condition status (trend, volume, slope, overrides) in real time, with collapsible toggles and clear ticks/crosses for transparency
🖼️ Visual Overlays
• Hybrid T3 + VIDYA line with slope coloring
• Kalman SuperTrend bands
• WAE histogram overlay
• TDFI and Uptrick Volume Weightbands for volume weighted context
• 150 EMA reference line
• Pivot based support/resistance channels
• BUY, SELL, TP labels plotted on the prior bar for accuracy
• Session shading for no trade hours
🛠️ Alerts
• BUY, SELL, and TP alerts tied directly to signal flags
• Signals persist until bar close, then reset cleanly
Moving Average Band StrategyOverview
The Moving Average Band Strategy is a fully customizable breakout and trend-continuation system designed for traders who need both simplicity and control.
The strategy creates adaptive bands around a user-selected moving average and executes trades when price breaks out of these bands, with advanced risk-management settings including optional Risk:Reward targets.
This script is suitable for intraday, swing, and positional traders across all markets — equities, futures, crypto, and forex.
Key Features
✔ Six Moving Average Types
Choose the MA that best matches your trading style:
SMA
EMA
WMA
HMA
VWMA
RMA
✔ Dynamic Bands
Upper Band built from MA of highs
Lower Band built from MA of lows
Adjustable band offset (%)
Color-coded band fill indicating price position
✔ Configurable Strategy Preferences
Toggle Long and/or Short trades
Toggle Risk:Reward Take-Profit
Adjustable Risk:Reward Ratio
Default position sizing: % of equity (configurable via strategy settings)
Entry Conditions
Long Entry
A long trade triggers when:
Price crosses above the Upper Band
Long trades are enabled
No existing long position is active
Short Entry
A short trade triggers when:
Price crosses below the Lower Band
Short trades are enabled
No existing short position is active
Clear entry markers and price labels appear on the chart.
Risk Management
This strategy includes a complete set of risk-controls:
Stop-Loss (Fixed at Entry)
Long SL: Lower Band
Short SL: Upper Band
These levels remain constant for the entire trade.
Optional Risk:Reward Take-Profit
Enabled/disabled using a toggle switch.
When enabled:
Long TP = Entry + (Risk × Risk:Reward Ratio)
Short TP = Entry – (Risk × Risk:Reward Ratio)
When disabled:
Exits are handled by reverse crossover signals.
Exit Conditions
Long Exit
Stop-Loss Hit (touch-based)
Take-Profit Hit (if enabled)
Reverse Band Crossover (if TP disabled)
Short Exit
Stop-Loss Hit (touch-based)
Take-Profit Hit (if enabled)
Reverse Band Crossover (if TP disabled)
Exit markers and price labels are plotted automatically.
Visual Tools
To improve clarity:
Upper & Lower Band (blue, adjustable width)
Middle Line
Dynamic band fill (green/red/yellow)
SL & TP line plotting when in position
Entry/Exit markers
Price labels for all executed trades
These are built to help users visually follow the strategy logic.
Alerts Included
Every trading event is covered:
Long Entry
Short Entry
Long SL / TP / Cross Exit
Short SL / TP / Cross Exit
Combined Alert for webhook/automation (JSON-formatted)
Perfect for algo trading, Discord bots, or automation platforms.
Best For
This strategy performs best in:
Trending markets
Breakout environments
High-momentum instruments
Clean intraday swings
Works seamlessly on:
Stocks
Index futures
Commodities
Crypto
Forex
⚠️ Important Disclaimer
This script is for educational purposes only.
Trading involves risk. Backtest results are not indicative of future performance.
Always validate settings and use proper position sizing.
Frequency Momentum Oscillator [QuantAlgo]🟢 Overview
The Frequency Momentum Oscillator applies Fourier-based spectral analysis principles to price action to identify regime shifts and directional momentum. It calculates Fourier coefficients for selected harmonic frequencies on detrended price data, then measures the distribution of power across low, mid, and high frequency bands to distinguish between persistent directional trends and transient market noise. This approach provides traders with a quantitative framework for assessing whether current price action represents meaningful momentum or merely random fluctuations, enabling more informed entry and exit decisions across various asset classes and timeframes.
🟢 How It Works
The calculation process removes the dominant trend from price data by subtracting a simple moving average, isolating cyclical components for frequency analysis:
detrendedPrice = close - ta.sma(close , frequencyPeriod)
The detrended price series undergoes frequency decomposition through Fourier coefficient calculation across the first 8 harmonics. For each harmonic frequency, the algorithm computes sine and cosine components across the lookback window, then derives power as the sum of squared coefficients:
for k = 1 to 8
cosSum = 0.0
sinSum = 0.0
for n = 0 to frequencyPeriod - 1
angle = 2 * math.pi * k * n / frequencyPeriod
cosSum := cosSum + detrendedPrice * math.cos(angle)
sinSum := sinSum + detrendedPrice * math.sin(angle)
power = (cosSum * cosSum + sinSum * sinSum) / frequencyPeriod
Power measurements are aggregated into three frequency bands: low frequencies (harmonics 1-2) capturing persistent cycles, mid frequencies (harmonics 3-4), and high frequencies (harmonics 5-8) representing noise. Each band's power normalizes against total spectral power to create percentage distributions:
lowFreqNorm = totalPower > 0 ? (lowFreqPower / totalPower) * 100 : 33.33
highFreqNorm = totalPower > 0 ? (highFreqPower / totalPower) * 100 : 33.33
The normalized frequency components undergo exponential smoothing before calculating spectral balance as the difference between low and high frequency power:
smoothLow = ta.ema(lowFreqNorm, smoothingPeriod)
smoothHigh = ta.ema(highFreqNorm, smoothingPeriod)
spectralBalance = smoothLow - smoothHigh
Spectral balance combines with price momentum through directional multiplication, producing a composite signal that integrates frequency characteristics with price direction:
momentum = ta.change(close , frequencyPeriod/2)
compositeSignal = spectralBalance * math.sign(momentum)
finalSignal = ta.ema(compositeSignal, smoothingPeriod)
The final signal oscillates around zero, with positive values indicating low-frequency dominance coupled with upward momentum (trending up), and negative values indicating either high-frequency dominance (choppy market) or downward momentum (trending down).
🟢 How to Use This Indicator
→ Long/Short Signals: the indicator generates long signals when the smoothed composite signal crosses above zero (indicating low-frequency directional strength dominates) and short signals when it crosses below zero (indicating bearish momentum persistence).
→ Upper and Lower Reference Lines: the +25 and -25 reference lines serve as threshold markers for momentum strength. Readings beyond these levels indicate strong directional conviction, while oscillations between them suggest consolidation or weakening momentum. These references help traders distinguish between strong trending regimes and choppy transitional periods.
→ Preconfigured Presets: three optimized configurations are available with Default (32, 3) offering balanced responsiveness, Fast Response (24, 2) designed for scalping and intraday trading, and Smooth Trend (40, 5) calibrated for swing trading and position trading with enhanced noise filtration.
→ Built-in Alerts: the indicator includes three alert conditions for automated monitoring - Long Signal (momentum shifts bullish), Short Signal (momentum shifts bearish), and Signal Change (any directional transition). These alerts enable traders to receive real-time notifications without continuous chart monitoring.
→ Color Customization: four visual themes (Classic green/red, Aqua blue/orange, Cosmic aqua/purple, Custom) allow chart customization for different display environments and personal preferences.
NIFTY FNO STOCK (UPDATED)New latest FNO stock Shown at top of the table in indicator for buy and sell signal in sectorwise stock selection
NIFTY FNO Stock Screener Sector-wiseNSE FNO STOCK SCREENER SECTOR WISE. Open indicator and select sector. find which sector is moving upward or downward today. select specific sector and you will see all stock list in selected sector. you will show buy and sell signal in particular sector. open stock which show buy or sell signal and check your requirement for buy or sell . you can also used for options also to buy as per required signal
WeAxes MTF Scalper [LITE] WeAxes MTF Scalper
Professional Multi-Timeframe Alignment Tool - LITE Version
What This LITE Version Offers:
3-Timeframe Sync: Monitor 1min, 15min, and 1hr trends simultaneously
Visual Alignment System: Color-coded candles for perfect setups
Quick Setup Recognition: Instant HIGH/MEDIUM/LOW quality ratings
Clean Data Display: Essential alignment information at a glance
Perfect for Scalping:
Green Candles: Perfect bullish alignment across all timeframes
Red Candles: Perfect bearish alignment across all timeframes
Setup Quality: Know immediately if conditions are favorable
Multi-Timeframe Context: Never trade blind again
How to Use:
1. HIGH Quality Setups (Green/Red candles): Highest probability trades
2. MEDIUM Quality: All trends aligned, good for trend following
3. LOW Quality: Mixed signals, better to wait for alignment
PRO Version Includes:
- Advanced volume profiling across all timeframes
- Momentum strength calculations
- Detailed market structure analysis
- Smart Money Concepts integration
- Complete volume analysis
- And much more...
This LITE version gives you a taste of professional multi-timeframe analysis. Contact for PRO version access with full features.
Disclaimer: Use proper risk management. This tool assists analysis but doesn't guarantee profits.
Nifty FNO Stock Screener Sector wise (Protected)NSE FNO STOCK SCREENER SECTOR WISE. Open indicator and select sector. find which sector is moving upward or downward today. select specific sector and you will see all stock list in selected sector. you will show buy and sell signal in particular sector. open stock which show buy or sell signal and check your requirement for buy or sell . you can also used for options also to buy as per required signal
Elite Entries Swing MasterElite Entries Swing Master
The Elite Entries Swing Master (Retest Only) is a clean, no-nonsense trend tool built for traders who want to buy support and sell resistance with discipline – not vibes.
Instead of spamming you with signals, this version focuses on one thing and does it well:
Wait for price to retest a key MTF level and prove it wants to continue the trend.
How it works
MTF ATR Trail
Uses a higher-timeframe (configurable) ATR-based trailing line to define the structural trend.
Green = bullish bias, Red = bearish bias.
Custom Fib Bands Around the Trail
Three dynamic bands (Fib 1, Fib 2, Fib 3) are drawn between the extremum and the trail.
These zones act like “value areas” inside the trend, not random lines on a chart.
Selectable Retest Level
You choose where you want confirmation:
Trail
Fib 1
Fib 2
Fib 3
In an uptrend: price must tag the selected level from above and then close back above it → green triangle (ReTest Long).
In a downtrend: price must tag the selected level from below and then close back below it → red triangle (ReTest Short).
Signal Spacing Filter
Minimum bars between retest signals to prevent clustering and over-trading.
Optional HUD in the top-right shows how many bars remain until the next valid retest.
Alerts Ready
Built-in alert conditions for ReTest Long and ReTest Short so you can automate notifications or feed other workflows.
How to use it
Choose your MTF timeframe
Common combos:
1m chart with 5m or 15m trail
5m chart with 15m or 60m trail
The idea: entries on the lower TF, structure on the higher TF.
Pick your retest level
Trail → most conservative, deepest confirmation.
Fib 3 → closer to trail, often best for “buy the dip in trend.”
Fib 1 / Fib 2 → earlier entries, more frequent but more aggressive.
Use the triangles as triggers, not gospel
Combine with your own execution rules: price action, sessions, volume, ORB, etc.
This tool tells you: “Trend is intact, price just came home to value. Now decide if you actually want the trade.”
Best suited for
Futures (NQ, ES, Gold, etc.)
Indices & large-cap names
Any instrument that trends and respects levels
Important note
This is not a buy/sell button or a promise of 2036 yacht money. It’s a structured way to:
Define trend on a higher timeframe
Force patience
Only act when price revisits your chosen level and confirms continuation
Use it as a framework, add your own edge, and let the retests work for you instead of chasing every wiggle.
Break & Retest + Liquidity Sweep EntryIdentify a BOS (vertical line appears).
Wait for price to retest the broken level (circle shows up).
Optionally confirm with liquidity sweep.
Enter long/short trades based on bullish/bearish retest signals.
Use ATR or personal risk management for stop-loss placement.
Asia and London Static GEX Levels ConverterUses GEX price from RTH Market close and plots them on NQ. Remains static since options market is closed during ETH and uses the levels and plots them. Do not use in RTH since options prices change. Made for my style of trading personally since I wanted to use GEX Levels outside of RTH
BACK TO BASIC, MTF, AOI, BOS Hiya ALL my Friends !!
I am going back to basic, MTF, AOI, BOS, mostly from freely available indicators, just adding the 8 TFs for reference. Hope this will simplify my analysis.
Cheers always !!
DYOR / NFA
SPY / ES ORB Complete Levels 2025 [Natty] - FIXED VWAPAll-in-one Opening Range Breakout (ORB) levels indicator for SPY & /ES (and works on any index/futures contract).
Automatically draws every key level serious day-traders and scalpers watch in 2025:
• Yesterday’s High & Low (yellow)
• Pre-Market High & Low – 04:00–09:30 ET (fuchsia)
• True Regular-Trading-Hours VWAP – anchored at 09:30 ET, ignores pre-market volume (purple)
• Full Classic Pivot Points – PP, R1–R3, S1–S3 (white/red/green)
• 30-minute Opening Range High & Low – 09:30–10:00 ET (thick orange) with light shading
• Clean price label panel on the right edge (updates live) so you never have to hover
No paid scripts or external data needed – 100 % free, lightweight, zero lag.
Perfect for:
- 30-minute ORB breakout trading
- SPY & /ES scalping
- 0DTE SPX options directional entries
- Quick pre-market bias checks
Just add to any chart with Extended Hours enabled and you’re ready for the bell.
CongTrader V1 this indicator is for trading MNQ, NQ only. this uses EMA and VWAP to filter and get more accurate signals.
Elite Entries S/R LevelsElite Entries S/R Levels
This tool finds key S/R zones from pivots, then fires instant “band intrusion” signals the moment price enters a zone without breaking through the other side. Pair that with an entry-anchored ATR Trailing Stop (TSL) that starts exactly on the signal bar and you’ve got a clean, rules-first way to stalk reversals and fades without the noise.
What it does
Key Zones (Support/Resistance): Dynamic boxes from pivots with ATR-scaled width and optional overlap alignment.
Band Intrusions (Instant):
• Bullish: Tap into support from above, no break below the band.
• Bearish: Tap into resistance from below, no break above the band.
Signals respect a user-set cooldown so you don’t get spammed.
Entry-Anchored ATR TSL: Starts on the first signal bar, trails with stepline logic, and exits only after the entry bar. Optional “TSL Follow Only” gates new signals unless they align with the active TSL direction.
Strategy Mode Preset: One-click profile with wider lookback, 1.5×ATR zone width, cooldown, TSL on (len 28, mult 6), extend/align enabled—built for decisive, rules-tight entries.
Inputs you’ll actually use
Zones: Look Left/Right, ATR Length & Width, Source (HA/Body/Hi-Lo), Align/Extend Right, optional level labels.
Signals: Cooldown (per side), customizable bull/bear colors.
TSL: Length, Multiplier, Show Line, Follow-Only toggle.
Alerts
Band Intrusion — Bullish Level
Band Intrusion — Bearish Level
Use “Once per bar” for true instant taps, or “Once per bar close” if you want confirmation discipline.
How to read it (no fluff)
Triangles up (green) at support taps → potential longs (fade the poke).
Triangles down (red) at resistance taps → potential shorts.
TSL (stepline) is your chaperone; break it and the dance is over.
Trade what prints, not what you wish. This is a reaction tool, not a crystal ball.
Best practice: Pair with session context (NY open), a higher-TF bias arrow, or volume throttle for extra confluence.
Disclaimer: Educational only. Not financial advice. You’re the risk manager.
LE ScannerGENERAL OVERVIEW:
The LE Scanner is a multi-ticker dashboard that scans up to 20 tickers in real time and displays their current trend, price, volume, and key level conditions directly on your chart. It tracks how each ticker interacts with both the Previous Day’s High/Low (PDH/PDL) and Pre-Market High/Low (PMH/PML) to determine whether price is breaking above, below, or remaining inside those levels. The indicator automatically classifies each ticker as Bullish, Bearish, or Neutral based on these break conditions.
This indicator was developed by Flux Charts in collaboration with Ellis Dillinger (Ellydtrades).
What is the purpose of the indicator?:
The LE Scanner helps traders keep track of up to 20 tickers at once without switching between charts. It puts all the key information in one place, including price, daily percentage change, volume, and how each ticker is reacting around the previous day’s and pre-market highs and lows. The layout is simple and easy to read, with progress bars that show where price is relative to those levels. The goal is to save time and make it easier to understand market strength and weakness across your watchlist.
What’s the theory behind the indicator?:
The LE Scanner is built around the idea that key levels define bias. The previous day’s high and low show where the market traded most actively during the prior session, and the pre-market range reveals how price behaved before the open. When a ticker breaks both the previous day’s high and the pre-market high, it shows that buyers are in control. When it breaks both the previous day’s low and the pre-market low, sellers are in control. If neither side has full control, the bias is seen as neutral.
LE SCANNER FEATURES:
Multi-Ticker Dashboard
Key Level Tracking
Trend Classification
Sorting
Customization
Multi-Ticker Dashboard:
The LE Scanner can monitor up to 20 tickers at the same time. Each ticker has its own row in the dashboard showing:
Ticker Name
Current Price
Volume
Daily % Change
PDH Break
PDL Break
PMH Break
PML Break
Trend (bullish, bearish, or neutral)
You can enable or disable each ticker individually, so if you only want to track 5 or 10 tickers, you can simply toggle the rest off. Each ticker input lets you type in any valid ticker that’s available on TradingView.
Ticker Name:
Shows the ticker you selected in your input settings
Current Price:
Displays the latest price of that ticker based on your chart’s selected timeframe.
Volume:
Tracks the total trading volume for the current session.
Daily % Change:
Measures how much price has moved since the previous session’s close.
The remaining elements of the dashboard are explained in full detail throughout the remaining sections of this write-up.
Key Level Tracking:
The core of the LE Scanner is its ability to track and visualize how price interacts with four key levels for every ticker:
Previous Day High (PDH)
Previous Day Low (PDL)
Pre-Market High (PMH)
Pre-Market Low (PML)
These levels are updated automatically and compared to the current market price for each ticker inputted into the indicator. They show you whether the market is staying inside yesterday’s range or expanding beyond it.
🔹Previous Day High (PDH) & Previous Day Low (PDL)
The Previous Day High (PDH) marks where price reached its highest point during the last full trading session, while the Previous Day Low (PDL) marks the lowest point. Together, they define the previous day’s range and help traders understand where price is trading relative to that prior structure.
When the current price of a user-selected ticker moves above the PDH, it signals that buyers are taking control and that the ticker is now trading above yesterday’s range. In the dashboard, this change triggers a 🟢 icon under the “PDH Break” column. Once the PDH Break is confirmed, the opposite PDL Break column for that same ticker becomes blank.
When the current price of the user-selected ticker moves below the PDL, it shows that sellers are taking control and that the ticker is trading below yesterday’s range. In the dashboard, this change triggers a 🔴 icon under the “PDL Break” column. Once the PDL Break is confirmed, the opposite PDH Break column for that same ticker becomes blank.
🔹 Pre-Market High (PMH) & Pre-Market Low (PML)
The Pre-Market High (PMH) and Pre-Market Low (PML) show where price reached its highest and lowest points before the main trading session begins. On most U.S. exchanges, the pre-market session is from 4:00 AM to 9:29 AM Eastern Standard Time (EST), just before the New York session opens at 9:30 AM EST. These levels are important because they reflect how traders positioned themselves during the early morning hours. Many traders use the pre-market session to react to overnight news. The PMH and PML outline that entire pre-market range, showing where buyers and sellers fought for control and where the early balance between the two sides was established before the market opens.
When the current price of a ticker moves above the Pre-Market High, it means buyers are in control and that price has pushed through the top of the pre-market range. In the dashboard, this triggers a 🟢 icon under the “PMH Break” column. Once this break is confirmed, the opposite PML Break column for that ticker becomes blank.
When the current price moves below the Pre-Market Low, it means sellers are in control and that price has fallen beneath the pre-market range. In the dashboard, this triggers a 🔴 icon under the “PML Break” column. Once a PML Break is confirmed, the opposite PMH Break column for that ticker becomes blank.
🔹Progress Bars
The LE Scanner indicator includes progress bars that show how far the current price is from key levels.
When price is between the Previous Day High (PDH) and Previous Day Low (PDL), the progress bar measures price’s distance relative to those two points.
When price is between the Pre-Market High (PMH) and Pre-Market Low (PML), the bar tracks how far price is from those pre-market boundaries.
The closer price gets to either side, the more the bar fills, giving you a quick visual sense of how close a breakout or breakdown might be. A bar that’s nearly full means price is approaching one of the levels, while a shorter bar means it’s still far away from it. By seeing this relationship directly in the dashboard, you can see which tickers are getting ready to test key levels without flipping through multiple charts.
🔹PDH Progress Bar
The PDH progress bar measures how close price is to breaking above the previous day’s high.
When the bar is nearly full, it means the current price is trading just below yesterday’s high.
When the bar is low or mostly empty, it means price is far from the PDH and trading near the middle or lower end of the previous day’s range.
Once price breaks above the PDH, the progress bar is replaced with a green confirmation icon in the PDH Break column.
🔹Previous Day Low (PDL) Progress Bar
The PDL progress bar measures how close price is to breaking below the previous day’s low.
When the bar is nearly full, it means the current price is trading just above yesterday’s low.
When the bar is low or mostly empty, it means price is far from the PDL and trading near the middle or upper end of the previous day’s range.
Once price breaks below the PDL, the progress bar is replaced with a red confirmation icon in the PDL Break column.
🔹Pre-Market High (PMH) Progress Bar
The PMH progress bar shows how close price is to breaking above the pre-market high.
When the bar is nearly full, it means the current price is trading just below the pre-market high.
When the bar is low or mostly empty, it means price is far from the PMH and trading near the middle or lower end of the pre-market range.
Once price breaks above the PMH, the progress bar is replaced with a green confirmation icon in the PMH Break column.
🔹Pre-Market Low (PML) Progress Bar
The PML progress bar shows how close price is to breaking below the pre-market low.
When the bar is nearly full, it means the current price is trading just above the pre-market low.
When the bar is low or mostly empty, it means price is far from the PML and trading near the middle or upper end of the pre-market range.
Once price breaks below the PML, the progress bar is replaced with a red confirmation icon in the PML Break column.
Trend Classification:
The LE Scanner automatically classifies each user-inputted ticker as bullish, bearish, or neutral based on how price is interacting with its key levels.
Each trend type follows a specific set of conditions and is displayed in its own column under Trend on the dashboard.
🔹 Bullish Trend
A bullish trend occurs when price has broken above both the Previous Day High (PDH) and the Pre-Market High (PMH). This shows that buyers are in full control and that the ticker is trading firmly above the prior session’s and pre-market range.
When this condition is met, the Trend column displays a green background with an upward-facing triangle icon (▲).
🔹 Bearish Trend
A bearish trend occurs when price has broken below both the Previous Day Low (PDL) and the Pre-Market Low (PML). This indicates that sellers are in control and that the ticker is trading firmly below the prior session’s and pre-market range.
When this happens, the Trend column switches to a red background with a downward-facing triangle icon (▼).
🔹 Neutral Trend
A neutral trend occurs when price is trading inside the range, meaning it hasn’t broken above the PDH/PMH or below the PDL/PML. This indicates that neither bulls nor bears has clear control, and the ticker is consolidating between the prior session’s and pre-market range.
When this condition is active, the Trend column appears with a warning sign icon (⚠️). This helps distinguish tickers that are still forming setups from those that have already shown decisive strength or weakness.
Sorting:
The LE Scanner includes a built-in sorting feature that lets you reorder the dashboard in either descending or ascending order based on one of four metrics:
% Change
Volume
Price
Trend
Sorting is handled directly in the indicator settings, where you can toggle “Sort By” and then select your preferred Sort By criteria and Order (Ascending or Descending). When enabled, the dashboard automatically repositions every ticker to match the selected sorting method.
🔹 % Change Sorting
When you sort by % Change, the dashboard ranks tickers based on their daily percentage movement relative to the previous session’s close.
If you choose descending order, the biggest gainers appear at the top.
If you choose ascending order, the biggest decliners appear at the top.
🔹 Volume Sorting
When you sort by Volume, the dashboard arranges tickers based on their total traded volume for the current session.
If you choose descending order, the highest-volume tickers appear at the top.
If you choose ascending order, the lowest-volume tickers appear at the top.
🔹 Price Sorting
When you sort by Price, the dashboard arranges tickers by their current market price.
If you choose descending order, the highest-priced tickers appear at the top.
If you choose ascending order, the lowest-priced tickers appear at the top.
🔹 Trend Sorting
When you sort by Trend, the dashboard organizes tickers based on their directional classification.
If you choose descending order, bullish tickers appear first, followed by neutral and bearish.
If you choose ascending order, bearish tickers appear first, followed by neutral and bullish.
Customization:
The LE Scanner includes several settings that let you customize how the dashboard appears on your chart. All visual and positional elements can be adjusted to fit your personal layout preferences.
🔹 Dashboard Position
You can move the dashboard anywhere on your chart using the “Table Position” setting. Options include:
Bottom-Center
Bottom-Left
Bottom-Right
Middle-Center
Middle-Left
Middle-Right
Top-Center
Top-Left
Top-Right
🔹 Dashboard Size
The dashboard size can be adjusted to be larger or smaller. Users can choose between the following options:
Tiny
Small
Normal
Large
Huge
🔹 Color Customization
All color elements in the dashboard are customizable. You can change the following:
Background Color
Border Color
Frame Color
Text Color
Bullish Trend Color
Bearish Trend Color
Important Notes:
Because the LE Scanner tracks multiple tickers and updates all data in real time, it performs several background calculations at once. On rare occasions, this can cause the following issue:
Computation Error:
Scanning up to 20 tickers at the same time requires multiple request.security() calls. This process is resource-intensive and can sometimes trigger a calculation timeout message in TradingView. If this occurs, simply force the indicator to refresh by changing one of its settings (for example, toggling a ticker off and back on) or by removing and re-adding the indicator to your chart.
Uniqueness:
The LE Scanner is unique because it combines real-time multi-ticker tracking, sortable data, and visual feedback into one tool. It can track up to 20 tickers simultaneously, automatically sort them by % change, volume, price, or trend. The built-in progress bars provide a clear visual of how close price is to breaking key levels, while the trend classification instantly shows whether each ticker is bullish, bearish, or neutral.
MOMO – Imbalance Trend (SIMPLE BUY/SELL)MOMO – Imbalance Trend (SIMPLE BUY/SELL)
This strategy combines trend breaks, imbalance detection, and first-tap supply/demand entries to create a clean and disciplined trading model.
It automatically highlights imbalance candles, draws fresh zones, and waits for the first retest to deliver precise BUY and SELL signals.
Performance
On optimized settings, this strategy shows an estimated 57%–70% win-rate, depending on the asset and timeframe.
Actual performance may vary, but the model is built for consistency, discipline, and improved decision-making.
How it works
Detects trend structure shifts (BOS / Break of Trend)
Identifies displacement (imbalance) candles
Creates supply and demand zones from imbalance origin
Waits for first tap only (no second chances)
Confirms direction using trend logic
Generates clean BUY/SELL arrows
Automatic SL/TP based on user settings
Features
Clean BUY/SELL markers
Auto-drawn supply & demand zones
Trend break markers
Imbalance tags
Smart first-tap confirmation
Customizable stop loss & take profit
Works on crypto, gold, forex, indices
Best on M5–H1 for day trading
Note
This strategy is designed for day traders who want clarity, structure, and zero emotional trading.
Use it with discipline — and it will serve you well.
Good luck, soldier.
AURORA LEGACY INDICATOR
The AURORA LEGACY is an advanced indicator developed in Pine Script v6 for the TradingView platform, designed to integrate multiple approaches of technical analysis into a single modular and customizable system. Its architecture combines classic elements, such as exponential moving averages (EMA Ribbon), RSI, and ATR, with modern tools inspired by Smart Money Concepts (SMC), including Supply & Demand zones, Break of Structure (BOS), and Points of Interest (POI).
The indicator is structured to provide traders with flexibility, offering pre-configured trading profiles (Scalper, Day Trade, Swing Trade, Sniper) or full manual customization of moving averages. The dynamic Ribbon serves as the core of trend analysis, supported by additional confluences through secondary moving averages (VWMA, LWMA, SMMA) and volatility filters based on ATR.
Key features include:
Trend & Signal System: detection of reversals and trend confirmations through Ribbon color alignment, with automated buy/sell alerts.
Automated Risk Management: dynamic calculation of entry levels, Stop Loss (SL), and multiple Take Profits (TPs), displayed on chart with labels and risk-reward ratio (R:R).
Multi-Timeframe (MTF) Trend Table: consolidated overview of trend, RSI, and volatility (ATR) across different timeframes (5M, 15M, 1H, 4H, Daily).
Smart Money Concepts Integration: automatic detection and marking of Supply & Demand zones, BOS, market structure zigzag, and points of interest.
Complementary Tools: customizable RSI signals by profile, daily support and resistance levels, CPR levels, and visual session markers (London, New York) including overlap zones.
This system was designed to provide a holistic trading approach, combining price action, volatility, indicator confluence, and institutional concepts to support traders of different profiles in making clearer and more precise decisions.
Known Reversals (CreativeAdvance)1 min left to edit script
13 minutes ago
Known Reversals (CreativeAdvance)
Manage access
Add to favorites
Use on chart
0
0
Known Reversals
Non-repainting 1-bar reversal detector
What it does:
Pinpoints the earliest confirmed reversals by detecting a subtle divergence within prevailing momentum. Delivers signals with zero lag and no repaint.
Core logic:
- Monitors directional momentum via highs in uptrends and lows in downtrends
- Activates only when the **close breaks alignment** with that momentum in a single candle
- Proprietary volatility-adjusted oscillator ensures signals fire exclusively in high-probability reversal contexts
Key advantage:
Reveals lower-timeframe reversals the moment they confirm on the current chart — true X-ray vision for precision entries.
Pro tip:
Use with distinct candlestick outline colors to instantly distinguish bullish vs. bearish signals, especially on inside bar reversals (painted uniformly for clarity).
No inputs. No curve-fitting. Just pure, actionable reversal confirmation.
KhanaalTrend + RSI Unique filterhort Description:
Advanced Khanaal Trend indicator enhanced with 4 RSI filtering modes including oversold/overbought, momentum, divergence, and adaptive zone analysis for educational purposes.
Full Description:
OVERVIEW
This educational indicator combines the Khanaal Trend methodology with an advanced RSI filtering system, offering traders four distinct modes to analyze market conditions based on RSI. The tool is designed to help traders study high-probability trend following opportunities for educational analysis.
KEY FEATURES
Khanaal Trend Core Logic: Utilizes ATR-based dynamic support and resistance levels that adapt to market volatility
4 RSI Filter Modes (Toggleable):
Mode 1: Oversold/Overbought Zones - Analyzes extreme RSI levels
Mode 2: Momentum Confirmation - Uses RSI 50 midline crossovers for trend confirmation
Mode 3: Divergence Detection - Identifies bullish/bearish divergences between price and RSI
Mode 4: Adaptive Zones - Simple RSI positioning relative to the 50 level
Alert Generation: Prevents notification spam by alternating between buy and sell alerts
Customizable Parameters: Full control over multiplier, common period, RSI length, and threshold levels
Visual Clarity: Color-coded trend lines and clear buy/sell labels for study purposes
HOW IT WORKS
The indicator calculates the Khanaal Trend using ATR-based bands above and below price. Trend direction is determined by comparing current price action to these dynamic levels, with additional confirmation from either RSI or MFI (Money Flow Index) depending on data availability.
When the RSI filter is enabled, buy and sell alerts are only generated when both the Khanaal Trend condition AND the selected RSI filter condition are met simultaneously. This dual-confirmation approach is designed for educational analysis of market conditions.
FILTER MODE DETAILS
Mode 1 - Oversold/Overbought: Buy alerts appear when RSI is below the oversold threshold (default 30), sell alerts appear when RSI is above overbought threshold (default 70). This helps identify potential reversal points for study.
Mode 2 - Momentum: Buy alerts appear when RSI is above 50 (bullish momentum), sell alerts appear when RSI is below 50 (bearish momentum). This helps confirm trend direction.
Mode 3 - Divergence: Identifies regular bullish divergences (price making lower lows while RSI makes higher lows) for buy alerts, and regular bearish divergences (price making higher highs while RSI makes lower highs) for sell alerts.
Mode 4 - Adaptive Zones: Buy alerts when RSI is in the lower 50% range (0-50), sell alerts when in upper 50% range (50-100).
CUSTOMIZATION OPTIONS
Khanaal Trend Settings:
Multiplier: Adjusts the distance of trend lines from price (default: 1.0)
Common Period: Lookback period for calculations (default: 14)
Source: Price input for calculations (default: close)
Calculation Method: Toggle for no-volume environments
RSI Filter Settings:
Enable/Disable: Master toggle for RSI filtering
Filter Mode Selection: Choose from 4 modes
RSI Length: Period for RSI calculation (default: 14)
RSI Source: Price input for RSI (default: close)
Overbought/Oversold Levels: Customizable thresholds
USAGE GUIDELINES
This indicator is designed for educational purposes to study trending markets. During strong trends, the Khanaal Trend will display the direction while the RSI filter helps identify potential entry timing for analysis. In ranging markets, consider studying Mode 1 (Oversold/Overbought) to observe potential reversals at extremes.
The indicator can be studied across all timeframes and asset classes. For educational swing trading analysis, consider higher timeframes (4H, Daily) with Mode 2 (Momentum). For day trading studies, lower timeframes (5m, 15m) with Mode 1 may be suitable.
IMPORTANT DISCLAIMERS
This indicator is for educational and informational purposes only
Past performance does not indicate future results
No indicator is perfect - always conduct your own analysis
Alerts should be confirmed with price action and other analysis methods
Not financial advice - consult with a qualified financial advisor before making any trading decisions
This tool is designed for study and learning purposes
All trading involves substantial risk of loss
Slope Rank ReversalThis tool is designed to solve the fundamental problem of "buying low and selling high" by providing objective entry/exit signals based on momentum extremes and inflection points.
The System employs three core components:
Trend Detection (PSAR): The Parabolic SAR is used as a filter to confirm that a trend reversal or transition is currently underway, isolating actionable trade setups.
Dynamic Momentum Ranking: The indicator continuously measures the slope of the price action. This slope is then ranked against historical data to objectively identify when an asset is in an extreme state (overbought or oversold).
Signal Generation (Inflection Points):
Oversold/Buy: A 🟢 Green X is generated only when the slope ranking indicates the market is steeply negative (oversold), and the slope value begins to tick upwards (the inflection point), signaling potential mean reversion.
Overbought/Sell: A 🔴 Red X is generated only when the slope ranking indicates the market is steeply positive (overbought), and the slope value begins to tick downwards, signaling momentum exhaustion.
The core philosophy is simple: Enter only when the market is exhausted and has started to turn.
O'Neil Market TimingBill O'Neil Market Timing Indicator - User Guide
Overview
This Pine Script indicator implements William O'Neil's market timing methodology, which assigns one of four distinct states to a market index (such as SPY or QQQ) to help traders identify optimal market conditions for investing. The indicator is designed to work exclusively on Daily timeframe charts.
The Four Market States
The indicator tracks the market through four distinct states, with specific transition rules between them:
1. Confirmed Uptrend (Green)
- Meaning: The market is in a healthy uptrend with institutional support
- Action: Favorable conditions for building positions in leading stocks
- Can transition to: State 2 (Uptrend Under Pressure)
2. Uptrend Under Pressure (Yellow)
- Meaning: The uptrend is showing signs of weakness with increasing distribution
- Action: Be cautious, tighten stops, reduce position sizes
- Can transition to: State 1 (Confirmed Uptrend) or State 3 (Downtrend)
3. Downtrend (Red)
- Meaning: The market is in a confirmed downtrend
- Action: Stay mostly in cash, avoid new purchases
- Can transition to: State 4 (Rally Attempt)
4. Rally Attempt (Pink/Fuchsia)
- Meaning: The market is attempting to bottom and reverse
- Action: Watch for Follow-Through Day to confirm new uptrend
- Can transition to: State 1 (Confirmed Uptrend) or State 3 (Downtrend)
Key Concepts
Distribution Day
A distribution day occurs when:
1. The index closes down by more than the critical percentage (default 0.2%)
2. Volume is higher than the previous day's volume
Distribution days indicate institutional selling and are marked with red triangles on the indicator.
Follow-Through Day
A follow-through day occurs during a Rally Attempt when:
1. The index closes up by more than the critical percentage (default 1.6%)
2. Volume is higher than the previous day's volume
A Follow-Through Day confirms a new uptrend and triggers the transition from Rally Attempt to Confirmed Uptrend.
State Transition Logic
Valid Transitions
The system only allows specific transitions:
- 1 → 2: When distribution days reach the "pressure number" (default 5) within the lookback period (default 25 bars)
- 2 → 1: When distribution days drop below the pressure number
- 2 → 3: When distribution days reach "downtrend number" (default 7) AND price drops by "downtrend criterion" (default 6%) from the lookback high
- 3 → 4: When the market doesn't make a new low for 3 consecutive days
- 4 → 3: When a new low is made, undercutting the downtrend low
- 4 → 1: When a Follow-Through Day occurs during the Rally Attempt
Input Parameters
Distribution Day Parameters
- Distribution Day % Threshold (default 0.2%, range 0.1-2.0%)
- Minimum percentage decline required to qualify as a distribution day. While 0.2% seems to be the canonical number I see in literature about this, I use a much higher threshold (at least 0.5%)
Follow-Through Day Parameters
- Follow-Through Day % Threshold (default 1.6%, range 1.0-2.0%)
- Minimum percentage gain required to qualify as a follow-through day
### State Transition Parameters
- Pressure Number (default 5, range 3-6)
- Number of distribution days needed to transition from Confirmed Uptrend to Uptrend Under Pressure
- Lookback Period (default 25 bars, range 20-30)
- Number of days to count distribution days
- Downtrend Number (default 7, range 4-10)
- Number of distribution days needed (with price drop) to transition to Downtrend
- Downtrend % Drop from High (default 6%, range 5-10%)
- Percentage drop from lookback high required for downtrend confirmation
Visual Settings
- Color customization for each state
- Table position selection (Top Left, Top Right, Bottom Left, Bottom Right)
## How to Use This Indicator
### Installation
1. Open TradingView and navigate to SPY or QQQ (or another major index)
2. **Important**: Switch to the Daily (1D) timeframe
3. Click on "Indicators" at the top of the chart
4. Click "Pine Editor" at the bottom of the screen
5. Copy and paste the Pine Script code
6. Click "Add to Chart"
### Interpretation
**When the indicator shows:**
- **Green (State 1)**: Market is healthy - consider adding quality positions
- **Yellow (State 2)**: Exercise caution - tighten stops, be selective
- **Red (State 3)**: Defensive mode - preserve capital, avoid new buys
- **Pink (State 4)**: Watch closely - prepare for potential Follow-Through Day
### The Information Table
The table displays:
- **Current State**: The current market condition
- **Distribution Days**: Number of distribution days in the lookback period
- **Lookback Period**: Number of bars being analyzed
- **Rally Attempt Day**: (Only in State 4) Days into the current rally attempt
### Visual Elements
1. **State Line**: A stepped line showing the current state (1-4)
2. **Red Triangles**: Mark each distribution day
3. **Horizontal Reference Lines**: Dotted lines marking each state level
4. **Color-Coded Display**: The state line changes color based on the current market condition
## Trading Strategy Guidelines
### In Confirmed Uptrend (State 1)
- Build positions in stocks breaking out of proper bases
- Use normal position sizing
- Focus on stocks showing institutional accumulation
- Hold winners as long as they act properly
### In Uptrend Under Pressure (State 2)
- Take partial profits in extended positions
- Tighten stop losses
- Be more selective with new entries
- Reduce overall exposure
### In Downtrend (State 3)
- Move to cash or maintain very light exposure
- Avoid new purchases
- Focus on preservation of capital
- Use the time for research and watchlist building
### In Rally Attempt (State 4)
- Stay mostly in cash but prepare
- Build a watchlist of strong stocks
- On Day 4+ of the rally attempt, watch for Follow-Through Day
- If FTD occurs, begin cautiously adding positions
## Best Practices
1. **Use with Major Indices**: This indicator works best with SPY, QQQ, or other broad market indices
2. **Daily Timeframe Only**: The indicator is designed for daily bars - do not use on intraday timeframes
3. **Combine with Stock Analysis**: Use the market state as a filter for individual stock decisions
4. **Respect the Signals**: When the market enters Downtrend, reduce exposure regardless of individual stock setups
5. **Monitor Distribution Days**: Pay attention when distribution days accumulate - it's a warning sign
6. **Wait for Follow-Through**: Don't jump back in too early during Rally Attempt - wait for confirmation
## Alert Conditions
The indicator includes built-in alert conditions for:
- State changes (entering any of the four states)
- Distribution Day detection
- Follow-Through Day detection during Rally Attempt
To set up alerts:
1. Click the "Alert" button while the indicator is on your chart
2. Select "O'Neil Market Timing"
3. Choose your desired alert condition
4. Configure notification preferences
## Customization Tips
### For More Sensitive Detection
- Lower the "Pressure Number" to 3-4
- Lower the "Distribution Day % Threshold" to 0.15%
- Reduce the "Downtrend Number" to 5-6
### For More Conservative Detection
- Raise the "Pressure Number" to 6
- Raise the "Distribution Day % Threshold" to 0.3-0.5%
- Increase the "Downtrend Number" to 8-9
### For Different Market Conditions
- **Bull Market**: Consider slightly higher thresholds
- **Bear Market**: Consider slightly lower thresholds
- **Volatile Market**: May need to increase percentage thresholds
## Limitations and Considerations
1. **Not a Crystal Ball**: The indicator identifies conditions but doesn't predict the future
2. **False Signals**: Follow-Through Days can fail - use proper risk management
3. **Whipsaws Possible**: In choppy markets, the indicator may switch states frequently
4. **Confirmation Lag**: By design, there's a lag as the system waits for confirmation
5. **Works Best with Price Action**: Combine with your analysis of individual stocks
## Historical Context
This methodology is based on William J. O'Neil's decades of market research, documented in books like "How to Make Money in Stocks" and through Investor's Business Daily. O'Neil's research showed that:
- Most major market tops are preceded by accumulation of distribution days
- Most successful rallies begin with a Follow-Through Day on Day 4-7 of a rally attempt
- Identifying market state helps prevent buying during unfavorable conditions
## Troubleshooting
**Problem**: Indicator shows "Initializing"
- **Solution**: Let the chart load at least 5 bars to establish the initial state
**Problem**: No distribution day markers appear
- **Solution**: Verify you're on daily timeframe and check if volume data is available
**Problem**: Table not visible
- **Solution**: Check the table position setting and ensure it's not off-screen
**Problem**: State seems to change too frequently
- **Solution**: Increase the lookback period or adjust threshold parameters
## Support and Further Learning
For deeper understanding of this methodology:
- Read "How to Make Money in Stocks" by William J. O'Neil
- Study Investor's Business Daily's "Market Pulse"
- Review historical market tops and bottoms to see the pattern
- Practice identifying distribution days and follow-through days manually
## Version History
**Version 1.0** (November 2025)
- Initial implementation
- Four-state system with proper transitions
- Distribution day detection and marking
- Follow-through day detection
- Customizable parameters
- Information table display
- Alert conditions
---
## Quick Reference Card
| State | Number | Color | Action |
|-------|--------|-------|--------|
| Confirmed Uptrend | 1 | Green | Buy quality setups |
| Uptrend Under Pressure | 2 | Yellow | Tighten stops, be selective |
| Downtrend | 3 | Red | Cash position, no new buys |
| Rally Attempt | 4 | Pink | Watch for Follow-Through Day |
**Distribution Day**: Down > 0.2% on higher volume (red triangle)
**Follow-Through Day**: Up > 1.6% on higher volume during Rally Attempt (triggers State 4→1)
---
*Remember: This indicator is a tool to help identify market conditions. It should be used as part of a comprehensive trading strategy that includes proper risk management, position sizing, and individual stock analysis.*
Also, I created this with the help of an AI coding framework, and I didn't exhaustively test it. I don't actually use this for my own trading, so it's quite possible that it's materially wrong, and that following this will lead to poor investment decisions.. This is "copy left" software, so feel free to alter this to your own tastes, and claim authorship.
Fractional Candlestick Long Only Experimental V10Fractional Candlestick Long-Only Strategy – Technical Description
This document provides a professional English description of the "Fractional Candlestick Long Only Experimental V6" strategy using pure CF/AB fractional kernels and wavelet-based filtering.
1. Fractional Candlesticks (CF / AB)
The strategy computes two fractional representations of price using Caputo–Fabrizio (CF) and Atangana–Baleanu (AB) kernels. These provide long-memory filtering without EMA approximations. Both CF and AB versions are applied to O/H/L/C, producing fractional candlesticks and fractional Heikin-Ashi variants.
2. Trend Stack Logic
Trend confirmation is based on a 4-component stack:
- CF close > AB close
- HA_CF close > HA_AB close
- HA_CF bullish
- HA_AB bullish
The user selects how many components must align (4, 3, or any 2).
3. Wavelet Filtering
A wavelet transform (Haar, Daubechies-4, Mexican Hat) is applied to a chosen source (e.g., HA_CF close). The wavelet response is used as:
- entry filter (4 modes)
- exit filter (4 modes)
Wavelet modes: off, confirm, wavelet-only, block adverse signals.
4. Trailing System
Trailing stop uses fractional AB low × buffer, providing long-memory dynamic trailing behavior. A fractional trend channel (CF/AB lows vs HA highs) is also plotted.
5. Exit Framework
Exit options include: stack flip, CF






















