US EU Airlines Basket V2This is a decision engine, not a standard, off-the-shelf indicator full of screaming moon shots, but a multi-faceted system that aggregates data from an entire sector (US and EU Airlines) and combines it with macroeconomic factors (USD and Oil prices) and standard technical tools (Moving Averages, RSI, Volume, Supply/Demand Zones). This system draws from current sentiment with a lookback to match similar fundamental data historically to provide a potential price movement range estimation within the current viewable timeframe.
💡 Overview of the Indicator
The script, titled "US & EU Airlines Basket Analysis - DUAL SENTIMENT (Anchored Projection)," is an effort to create a holistic trading signal specifically for the airline industry.
It uses a "Basket Analysis" approach, which means it calculates the aggregate sentiment of a group of related stocks rather than just the stock it's currently plotted on. The core idea is that the overall health of the airline sector (US vs. EU) is a stronger signal than the analysis of a single airline stock.
🏗️ Core Structure and Ideas
The script's structure is modular and highly sophisticated, incorporating several distinct trading concepts:
Dual Basket Sentiment (The Core Idea)
It pulls 7 eu airline stocks and 7 us airline stocks
• Anchored Plot: The most innovative visualization feature is the Dual Combined Sentiment Plot. It plots the two regional sentiment scores as lines that are vertically "anchored" to a percentage of the visible chart range
2. Multi-Factor Sentiment Aggregation
The final sentiment index for US and EU is not purely based on MA crosses but is a weighted score incorporating multiple indices and commodities/oil and currency weighted factors, which is a sign of robust and well-thought-out logic.
How to use:
Observe the two sentiment EU US lines (they’re self explanatory and the backbone of the system).
Discoverable factors: global trends, local Country trends, fragmented market trends.
Tags EU US (w for weak) (m for medium) (s for strong) numbers 1 to 7 occur in any instance on a bar where one of the 7 stocks of a basket experienced a heavy buying or selling event.
🟡 Yellow Bars (Inverse Correlation)
The yellow bars signal a period where the airline basket and the price of oil are moving in a strong inverse direction (as expected).
• Condition: They appear when one of two inverse scenarios is met on the specified oil_inflection_timeframe (default is Daily):
1. Oil Rises significantly (above oil_change_threshold) AND the Airlines Fall significantly (below -airline_change_threshold).
2. Oil Falls significantly (below -oil_change_threshold) AND the Airlines Rise significantly (above airline_change_threshold).
🔵 Blue/Cyan Bars (Direct Correlation)
The blue/cyan bars signal a period where the airline basket and the price of oil are moving in a strong direct direction, which is an unusual/non-traditional relationship.
• Condition: They appear when the movement of the two assets is in the same strong direction:
1. Oil Rises significantly AND the Airlines Rise significantly.
2. Oil Falls significantly AND the Airlines Fall significantly.
White bar right side of screen: This is a standard lookback average bar with customisable lookback length in setting.
Blue and yellow horizontal lines right side..
Blue is US with estimated price range based on us sentiment line, also accompanied by a derived lookback dotted line “US LB”
Green horizontal line is EU estimated price range based on EU sentiment line also accompanied by a derived lookback dotted line “EU LB”.
The dotted line of EU and US simply displays to the user how far back we are looking in relation to the right side solid blue and green horizontal price estimate lines.
Grey box: Definitive market conditions in % if the air sector is moving neutral with or against the petrodollar.
指标和策略
1小时区域背景颜色// This work is licensed under a Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0) creativecommons.org
// © LuxAlgo
//@version=5
indicator("Sessions ", "LuxAlgo - Sessions", overlay = true, max_bars_back = 500, max_lines_count = 500, max_boxes_count = 500, max_labels_count = 500)
//------------------------------------------------------------------------------
//Settings
//-----------------------------------------------------------------------------{
//Session A
show_sesa = input(true, '', inline = 'sesa', group = 'Session A')
sesa_txt = input('New York', '', inline = 'sesa', group = 'Session A')
sesa_ses = input.session('1300-2200', '', inline = 'sesa', group = 'Session A')
sesa_css = input.color(#ff5d00, '', inline = 'sesa', group = 'Session A')
sesa_range = input(true, 'Range', inline = 'sesa_overlays', group = 'Session A')
sesa_tl = input(false, 'Trendline', inline = 'sesa_overlays', group = 'Session A')
sesa_avg = input(false, 'Mean', inline = 'sesa_overlays', group = 'Session A')
sesa_vwap = input(false, 'VWAP', inline = 'sesa_overlays', group = 'Session A')
sesa_maxmin = input(false, 'Max/Min', inline = 'sesa_overlays', group = 'Session A')
//Session B
show_sesb = input(true, '', inline = 'sesb', group = 'Session B')
sesb_txt = input('London', '', inline = 'sesb', group = 'Session B')
sesb_ses = input.session('0700-1600', '', inline = 'sesb', group = 'Session B')
sesb_css = input.color(#2157f3, '', inline = 'sesb', group = 'Session B')
sesb_range = input(true, 'Range', inline = 'sesb_overlays', group = 'Session B')
sesb_tl = input(false, 'Trendline', inline = 'sesb_overlays', group = 'Session B')
sesb_avg = input(false, 'Mean', inline = 'sesb_overlays', group = 'Session B')
sesb_vwap = input(false, 'VWAP', inline = 'sesb_overlays', group = 'Session B')
sesb_maxmin = input(false, 'Max/Min', inline = 'sesb_overlays', group = 'Session B')
//Session C
show_sesc = input(true, '', inline = 'sesc', group = 'Session C')
sesc_txt = input('Tokyo', '', inline = 'sesc', group = 'Session C')
sesc_ses = input.session('0000-0900', '', inline = 'sesc', group = 'Session C')
sesc_css = input.color(#e91e63, '', inline = 'sesc', group = 'Session C')
sesc_range = input(true, 'Range', inline = 'sesc_overlays', group = 'Session C')
sesc_tl = input(false, 'Trendline', inline = 'sesc_overlays', group = 'Session C')
sesc_avg = input(false, 'Mean', inline = 'sesc_overlays', group = 'Session C')
sesc_vwap = input(false, 'VWAP', inline = 'sesc_overlays', group = 'Session C')
sesc_maxmin = input(false, 'Max/Min', inline = 'sesc_overlays', group = 'Session C')
//Session D
show_sesd = input(true, '', inline = 'sesd', group = 'Session D')
sesd_txt = input('Sydney', '', inline = 'sesd', group = 'Session D')
sesd_ses = input.session('2100-0600', '', inline = 'sesd', group = 'Session D')
sesd_css = input.color(#ffeb3b, '', inline = 'sesd', group = 'Session D')
sesd_range = input(true, 'Range', inline = 'sesd_overlays', group = 'Session D')
sesd_tl = input(false, 'Trendline', inline = 'sesd_overlays', group = 'Session D')
sesd_avg = input(false, 'Mean', inline = 'sesd_overlays', group = 'Session D')
sesd_vwap = input(false, 'VWAP', inline = 'sesd_overlays', group = 'Session D')
sesd_maxmin = input(false, 'Max/Min', inline = 'sesd_overlays', group = 'Session D')
//Timezones
tz_incr = input.int(0, 'UTC (+/-)', group = 'Timezone')
use_exchange = input(false, 'Use Exchange Timezone', group = 'Timezone')
//Ranges Options
bg_transp = input.float(90, 'Range Area Transparency', group = 'Ranges Settings')
show_outline = input(true, 'Range Outline', group = 'Ranges Settings')
show_txt = input(true, 'Range Label', group = 'Ranges Settings')
Weekday HighlighterThis is a simple indicator that highlights specific weekdays on the chart.
You can choose which weekdays to highlight and optionally use different colors for each day. It is useful for visually separating sessions such as Mondays, Fridays, or any custom trading day you want to focus on.
ただ単に曜日を指定してハイライトするインジです。
Volume Weighted Average Price - 6 band by buckstrdrstandard VWAP improved to allow 6 bands as standard
Daily Gap Highlighter (Partial Gaps + Age Filter)Daily Gap Highlighter – 部分的な窓の未埋めエリアを自動描画
このインジケーターは、日足チャートにおける窓(ギャップ)を自動で検出し、
その後の値動きで一部だけ埋まった場合も、埋め残し部分だけを正確に描画するツールです。
🔍 主な特徴
日足ベースで窓を検出
上窓:当日の安値 > 前日の高値
下窓:当日の高値 < 前日の安値
部分的な窓埋めにも対応
例:窓の90%が埋まった → 残り10%だけ窓として残す
完全に埋まった窓は自動的に削除
窓の“鮮度フィルター”を搭載
指定した日数(デフォルト90日)を経過した古い窓は自動で非表示にできます。
トレンド転換ポイントの可視化に最適
未埋めギャップは多くのトレーダーが注目する価格帯であり、
サポート/レジスタンスとして高い機能を持ちます。
📈 活用例
スイングトレードでのターゲット設定
窓埋めの完了・未完了の判定
重要水平ラインとしての分析
長期的な価格メモリーの可視化
日足チャートを使うトレーダーの方にとって、
“本当に意味のある未埋め窓だけ”が残る実用的なインジケーターです。
🇺🇸 English Description (for TradingView Community)
Daily Gap Highlighter – Precise Partial Gap Visualization
This indicator automatically detects daily price gaps and visualizes them on the chart —
but with one powerful upgrade:
It keeps only the unfilled portion of the gap.
🔍 Key Features
Daily-based gap detection
Up Gap: Today’s Low > Previous High
Down Gap: Today’s High < Previous Low
Partial gap filling supported
Example: If 90% of the gap has been filled,
→ Only the remaining 10% is still shown as an active gap.
Fully filled gaps are automatically removed
Gap “age filter” included
Automatically hide gaps older than a chosen number of days (default: 90).
Great for identifying key market levels
Unfilled gaps often act as strong support/resistance zones
and are widely watched by professional traders.
📈 Use Cases
Setting targets for swing trades
Determining whether a gap is filled or partially filled
Highlighting significant horizontal price levels
Visualizing long-term market memory zones
This tool is ideal for traders who want
a clean and accurate view of meaningful unfilled gaps only.
Daily Backtest Pivots Problem with the built-in Pivot Points Standard indicator in backtesting/replay mode:
The default "Pivot Points Standard" indicator is excellent on live charts, but it becomes completely unusable for proper backtesting or bar-replay because it always calculates and displays the current day’s pivot points (P, R1, R2, S1, S2, etc.) using the high/low/close of the still-forming current day — even when you're replaying historical bars.
Example:
When replaying or backtesting September 8 at 08:00 (Asian session), the indicator already shows the final R1, R2, S1, S2 for the entire September 8 daily candle, even though in real trading at that moment you would have no idea where the day will close or what the final daily range will be. This creates massive look-ahead bias and makes any strategy that uses daily pivots impossible to test realistically.
Desired behavior (historical accuracy):
During backtesting or bar replay, the indicator should only plot:
The previous day’s completed pivot levels (which were actually known at the start of the current day)
NO current-day pivot levels at all (or only plot them after the daily candle is closed)
Many custom pivot scripts already do exactly this (they only show the prior day’s levels throughout the current day), which is why people abandon the built-in indicator for backtesting.
Nifty 3m Multi-Filter System (Non-Repainting Trend Signals)Nifty Intraday swing trading in Index options can be used for 3m/5m/15m timeframes for small profits.
God Fad Strategy"This strategy is developed for educational and testing purposes, originally conceptualized by Akash Khadse Sir from TMT Academy. Access is restricted to TMT Academy students only. The indicator monitors Market Structure Shifts following Higher Timeframe
TIK Options Trade Setup v2TIK Options Trade Setup v2 is a specialized options-based intraday framework designed for Expiryscalping Group Members, premium behavior analysis, and breakout confirmation using both Call (CE) and Put (PE) data.
Using this data, it calculates a set of high-accuracy option scalping levels.
Underlying index (e.g., NIFTY / BANKNIFTY / SENSEX)
💎 Why This Indicator Is Powerful
This system uses both CE and PE data together, making it superior to single-side indicators.
It helps expiry-day traders:
⭐ Identify premium equilibrium
⭐ Predict CE/PE combined reversal zones
⭐ Catch sharp scalps with predefined levels
⭐ Avoid fake breakouts
⭐ Trade with confidence using data-backed zones
Swift Algo X🧠 Swift Algo X - Adaptive Volume-Drift & Optimization System
Swift Algo X is a sophisticated quantitative trading system designed to solve a big failure point in technical analysis: Parameter Inefficiency.
While most indicators rely on static input settings that fail when market volatility shifts, Swift Algo X solves this by combining a Volume-Drift Model with an integrated Brute-Force Optimization Engine.
The system does not just guess the trend or entry signals, it runs 24 parallel historical simulations in the background to mathematically identify the optimal settings for the asset you are currently trading.
🔍 How It Works
The algorithm operates on a "Dual-Core" architecture: The Signal Engine generates possible trade setups, while the Optimization Engine validates and ranks them in real-time.
1. The Signal Engine: Volume-Drift Calculation Unlike standard indicators that rely on lagging price averages, Swift Algo X calculates the underlying "Volume Force".
It applies a Z-Score Normalization to measure how far the current volume flow has drifted from its statistical mean.
This creates a "Fair Value Estimate" derived purely from volume pressure rather than just price action.
Signals are generated when price breaks out of the volatility bands surrounding this estimate.
2. The Macro Anchor To filter out lower-timeframe noise: The system anchors all logic to a dynamic Macro Baseline.
Bullish Setups: Valid only when the Volume Estimate is sustaining above the Macro Baseline.
Bearish Setups: Valid only when the Volume Estimate is sustaining below the Macro Baseline.
3. The Optimization Engine (The Core Innovation) This is the distinguishing feature of Swift Algo X. On every bar update, the script utilizes Pine Script to:
- Simulate 24 different permutation sets of Volatility Factors and Periods.
- Backtest every permutation against historical price action in real-time.
- Rank them by Win Rate and display the most profitable mathematical fit on the dashboard.
⚙ Key Features
🚀 Live Strategy Tester: A built-in dashboard displays the Win Rate for your current settings vs. the calculated "Best Settings."
🧠 Self-Optimizing Logic: The system recommends the exact "Multiplier" and "Period" that have historically yielded the highest probability for the specific ticker.
✅ Volume-Weighted Signals: Entries are based on volume accumulation, offering a distinct advantage over price-only indicators.
🎯 Adaptive Bands: The volatility bands expand and contract based on the Z-Score drift, naturally filtering out chop during low-volume consolidation.
📘 How to Use
1) Apply to Chart: Load Swift Algo X on your preferred timeframe (e.g., 15m, 1H, 4H).
2) Consult the Dashboard: Look at the "Backtesting" table in the top right corner.
Row 1 (Current): Shows how your current inputs are performing.
Row 2 (Backtest): Shows the theoretical performance of the optimal settings found by the engine.
3) Align Parameters: If the "Backtest Setting" shows a significantly higher Win %, adjust your Multiplier and Period inputs to match the dashboard's recommendation.
4) Wait for BUY / SELL Labels to appear. Use these as confirmation or as tools within your own strategy.
5) Always complement signals with independent risk management and your own analysis.
💡 Originality & Concept
Swift Algo X innovates by transforming the chart from a passive display into an active Simulation Environment.
While the underlying concept of Trailing Stops is a familiar tool, Swift Algo X’s originality lies in its Permutation Engine. By leveraging complex array sorting and loop structures, the script performs a Historical Analysis inside the indicator itself.
This effectively turns a standard script into a dynamic "Strategy Analyzer," allowing traders to adapt the Volume-Drift model to the specific volatility profile of any asset class (Crypto, Forex, or Indices) instantly without leaving the chart.
⚠ Disclaimer
Swift Algo X is a quantitative analysis tool designed for educational purposes. The "Best Settings" are derived from historical data and do not guarantee future performance. Traders should always apply independent risk management.
Multi Condition Stock Screener & Alert SystemMulti Condition Stock Screener & Strategy Builder
This script is a comprehensive Stock Screener and Strategy Builder designed to scan predefined groups of stocks (specifically focused on BIST/Istanbul Stock Exchange symbols) or a custom list of symbols based on user-defined technical conditions.
It allows users to combine multiple technical indicators to create complex entry or exit conditions without writing code. The script iterates through a list of symbols and triggers alerts when the conditions are met.
Key Features
• Custom Strategy Building: Users can define up to 6 separate conditions. • Logical Operators: Conditions can be linked using logical operators (AND / OR) to create flexible strategies. • Predefined Groups: Includes 14 groups of stocks (covering BIST symbols) for quick scanning. • Custom Scanner: Users can select the "SPECIAL" group to manually input up to 40 custom symbols to scan. • Directional Scanning: Capable of scanning for both Buy/Long and Sell/Short signals. • Alert Integration: Generates JSON-formatted alert messages suitable for webhook integrations (e.g., sending notifications to Telegram bots).
Supported Indicators for Conditions
The script utilizes built-in ta.* functions to calculate the following indicators:
• MA (Moving Average): Supports EMA, SMA, RMA, and WMA. • RSI (Relative Strength Index) • CCI (Commodity Channel Index) • ATR (Average True Range) • BBW (Bollinger Bands Width) • ADX (Average Directional Index) • MFI (Money Flow Index) • MOM (Momentum)
How it Works
The script uses request.security() to fetch data for the selected group of symbols based on the current timeframe. It evaluates the user-defined logic (Condition 1 to 6) for each symbol.
• Comparison Logic: You can compare an indicator against a value (e.g., RSI > 50 ) or against another indicator (e.g., MA1 CrossOver MA2 ). • Signal Generation: If the logical result is TRUE based on the "AND/OR" settings, a visual label is plotted on the chart, and an alert condition is triggered.
Alert Configuration
The script produces a JSON output containing the Ticker, Signal Type, Period, and Price. This is optimized for users who want to parse alerts programmatically or send them to external messaging apps via webhooks.
Disclaimer This tool is for informational purposes only and does not constitute financial advice. Since it uses request.security across multiple symbols, please allow time for the script to load data on the chart.
Pivot Move Ranges█ OVERVIEW
“Pivot Move Ranges” is an indicator that displays only the historical price ranges of moves that match the direction of the current swing.
It measures the price range of each individual swing and draws them as horizontal Δ-boxes positioned at the level of the most recently detected pivot.
The indicator operates with a delay equal to the set pivot detection length – after each new Pivot High, only red Δ-boxes appear showing the sizes of previous downward moves; after each new Pivot Low, only green Δ-boxes appear showing the sizes of previous upward moves. When the swing direction changes, the displayed set of levels instantly switches to the opposite direction.
█ CONCEPTS
The indicator was created to instantly provide the trader with objective, real historical price ranges – perfectly reinforcing classic tools such as Fibonacci extension/retracement, daily/weekly pivots, moving averages, order blocks, or Volume Profile.
It detects classic Pivot High and Pivot Low points:
- New Pivot High → only previous downward moves are shown (red Δ-boxes)
- New Pivot Low → only previous upward moves are shown (green Δ-boxes)
This ensures that at any moment you see only the historical ranges that match the current market direction. Price moves very often repeat themselves – the indicator makes these recurring levels immediately visible and ready to serve as natural reinforcement for other technical analysis tools.
█ FEATURES
- Pivot High / Pivot Low detection with adjustable length (default 12)
- Δ-boxes – thin horizontal lines showing the exact size of previous moves that match the current swing
- Automatic switching of the Δ-box set whenever a new opposite pivot appears
- Memory of the last N moves (default 6, max. 50) – oldest are automatically removed
- Labels showing move size (Δ) and start date/time
- Full color customization (separate for up and down), border and text transparency
- Choice of date format (DD.MM.YYYY or MM/DD/YYYY)
- Small circles marking the exact pivot locations
█ HOW TO USE
Add the indicator to your TradingView chart → paste the code → Add to Chart.
Settings:
- Pivot Length – higher values = fewer but more significant pivots (detected with a delay equal to this length)
- Max Corrections to Keep – how many previous matching moves are displayed at once
- Upward / Downward Box Color – colors of the Δ-boxes
- Box Border Transparency (%) – 0 = solid lines, 50–70 = subtle
- Show Δ Text + Move Start Date – turn labels on/off
Interpretation:
At any given moment the chart shows only the historical ranges of moves in the current direction:
- after a Pivot High → red Δ-boxes = “how far the market previously fell”
- after a Pivot Low → green Δ-boxes = “how far the market previously rose”
█ APPLICATIONS
- Instant reinforcement of technical levels – historical moves matching the current swing direction often coincide with Fibonacci levels, daily/weekly pivots, moving averages, or order blocks
- Fast cluster detection – set a high Max Corrections value (30–50) to see where the largest number of similarly sized moves cluster, then reduce to 6–10 and focus only on the most recent levels
█ NOTES
- On very strong trends, Δ-boxes can be extremely long – this is normal and correct behavior
- Always use as a supporting layer alongside other technical analysis tools
Support Resistance📌 1. Indicator Name
Premium Auto Support & Resistance
📌 2. One-Line Description
An automated S/R system that generates support and resistance zones based on swing highs and lows, displaying them in a premium visual style directly on the chart.
📌 3. Overall Summary (7+ lines)
This indicator automatically detects price levels where the market has repeatedly reacted and generates support and resistance zones.
Instead of simple horizontal lines, it visualizes reaction ranges as zones, helping traders clearly understand the actual price areas where activity occurs.
It uses swing points (high/low pivots) as the fundamental basis and continuously updates only the most meaningful recent S/R levels.
A smoothing process is applied, reducing noise and creating more natural, reliable S/R zones.
Support and resistance are displayed as filled transparency-based zones, enabling intuitive identification of zone strength and market position.
When price touches one of these zones, a small signal appears to highlight potential reversal points.
All elements are plotted directly over the candles with overlay=true, making it an instantly usable and visually premium tool.
📌 4. Advantages (6 items)
① Automatic Swing-Based S/R Detection
Automatically analyzes key pivot points and extracts only the most meaningful support and resistance levels.
② Support/Resistance Zone Structure
Provides intuitive reaction ranges instead of single lines, making it far more practical for real trading.
③ Smooth Premium-Style Lines
S/R lines are smoothed to remove noise, maintaining a natural and refined premium visual appearance.
④ Automatic Candle-Touch Alerts
Displays signals whenever price touches support or resistance, helping you quickly identify potential reversal areas.
⑤ Overlay-Based Immediate Clarity
Drawn directly onto the chart without occupying indicator windows, keeping visual focus on price action.
⑥ Simple Yet Powerful Framework
A pivot + smoothing + zone combination that strengthens automatic S/R detection while remaining easy for beginners to use.
[iQ]PRO Volume Frequency Profile+++🌌 PRO Volume Frequency Profile+++: The Fusion of Precision and Market Flow
The PRO Volume Frequency Profile+++ ( PRO VFP+++) is a next-generation analytical instrument designed for the discerning professional trader. It masterfully synthesizes multiple advanced concepts—Dynamic Linear Regression, High-Fidelity Frequency Analysis, and a Volumetric Distribution Profile—into a single, unified view of market structure. This powerful fusion provides unparalleled context for identifying high-probability turning points and key areas of interest.
🔬 Core Innovation: The Symbiotic Market Model
At its heart, the PRO VFP+++ is built on a proprietary methodology that transcends traditional price action by analyzing the frequency and distribution of traded volume relative to the dominant price trend.
Adaptive Regression Channel: The indicator establishes a highly dynamic Linear Regression channel, which acts as the core gravity well of the current trend. This channel is then protected by multi-tier Standard Deviation (SD) Bands with highly optimized, non-standard multipliers, defining the boundaries of expected price movement.
High-Resolution Frequency Bands: An integrated, proprietary Frequency Analysis component detects the underlying rhythmic oscillation in the market. This mechanism generates Frequency Bands that fluctuate around the core regression line, providing an exceptionally sensitive, leading, and dynamic channel for short-term mean-reversion and continuation signals.
Volumetric Profile Insight: A sophisticated Volume Frequency Profile is meticulously constructed over the look back period defined by the Linear Regression. This profile maps the distribution of trading activity, with an advanced implementation that provides a directional bias (Buy/Sell color gradient) within the volume nodes themselves, offering a deeper understanding of market participation.
✨ The Edge: Strategic Node Detection
The indicator's most compelling feature is its Intelligent Node Detection System. This system is specifically engineered to filter out market noise and highlight critical confluence zones:
Confluence Nodes: Automatically identifies and marks prices where the statistically significant Volume Nodes from the profile interact with the calculated Linear Regression lines and Standard Deviation Bands. These intersection points are areas where technical structure and realized market flow align, signaling price magnets or potential reversal zones.
Customizable Sensitivity: The system is governed by a Node Sensitivity parameter, allowing the user to fine-tune the filter for market conditions, ensuring only the most robust interactions are flagged.
🚨 Real-Time Opportunity & Security
To ensure maximum efficiency, the PRO VFP+++ features comprehensive, real-time Alerts based on all three core components:
Significant Node Cross: Alerts when price intersects a high-confluence interaction node.
Regression Line Touch: Alerts when price tests the core regression line, indicating a re-test of the dominant trend.
SD Band Touch: Alerts upon contact with the statistical boundaries, signaling potential overextension or trend strength.
This is a professional-grade, proprietary instrument. The source code is intentionally closed and protected to preserve the unique advantage of its underlying algorithms, which are the result of extensive research and optimization. Access is restricted and may be limited to invited, paying members only.
Unlock the next level of market structure analysis with the PRO VFP+++.
QuantMotions - TPR Sentinel LineTPR Sentinel Line is an advanced adaptive Support/Resistance system that combines multi-layered trend analysis with a directional Time-Price Ratio (TPR) engine. The indicator dynamically builds a stabilized support or resistance line that adjusts to market volatility, trend strength, ATR expansion and contraction, and real-time slope changes.
This creates a high-precision, self-adjusting trend barrier that acts as support in uptrends, resistance in downtrends, and a neutral anchor during sideways phases.
Key Features
✔ Adaptive Trend Base
- A composite trend model blending:
- Kijun-style midpoint
- Donchian midline
- SMA & EMA smoothing
This creates a stable baseline that reacts smoothly but reliably to structural trend shifts.
✔ Directional TPR Calculation
The indicator measures slope across short, medium, and long trend windows, normalizes it with ATR, and determines:
- Trend direction
- Trend strength
- Momentum quality
✔ Dynamic Support/Resistance Line
Depending on trend direction:
- In uptrends → the line becomes adaptive support
- In downtrends → the line becomes adaptive resistance
- In neutral phases → the line centers around the smoothed trend base
A built-in lag factor prevents unrealistic jumps and keeps the level stable.
✔ Automatic Support/Resistance Zones
The indicator expands the main line into upper and lower zones based on ATR and trend strength, creating a dynamic volatility envelope around the trend structure.
✔ Signals & Alerts
- Support bounce
- Resistance rejection
- Breakouts above/below the dynamic line
These events help identify high-probability continuation or reversal moments.
✔ Information Panel
A real-time status table displays:
- Trend direction
- Trend strength
- Current S/R level
🎯 Ideal For
- Precision entries on pullbacks
- Detecting trend shifts earlier
- Identifying strong or weak trend phases
- Adaptive take-profit and stop-loss zones
- Filtering false breakouts
💡 Summary
TPR Sentinel Line gives you a living, breathing support/resistance structure that evolves with the market.
Instead of relying on static levels, you get a continuously adapting trend barrier that reflects real strength, real volatility, and real momentum.
A powerful tool for traders who want structure, clarity, and trend confidence.
[iQ]PRO Engineering42+🔬 PRO Engineering42+ ⚙️
The Next Evolution in Signal Processing for Precision Market Analysis
Introducing PRO Engineering42+, a proprietary, cutting-edge technical analysis tool engineered to distill meaningful market structure from the inherent noise of price action. This indicator is built upon a sophisticated, multi-stage signal processing framework, leveraging advanced mathematics to provide traders with a uniquely clarified view of the underlying market trend and momentum.
Hybrid Composite Signal Generation
At its core, PRO Engineering42+ begins with a Hybrid Base Signal. This signal is not a mere average but a intelligently weighted composite, harmonizing the strengths of multiple distinct, adaptive moving average techniques. This fusion is designed to achieve a superior balance of responsiveness to trend shifts and smoothness for noise rejection, establishing a foundation of dynamic market memory.
Adaptive Volatility Clamping
The initial Hybrid Base is then subjected to an innovative process we term Adaptive Volatility Clamping. This critical step dynamically adjusts the signal's sensitivity in real-time based on the market's current volatility profile (measured using True Range), ensuring the signal remains tightly coupled with price action during quiet periods while minimizing whipsaws and overshoots during high-volatility events. This is achieved through a precise, weighted mechanism that prioritizes price context.
Proprietary Spectral Filtration and Gating
The hallmark of PRO Engineering42+ is its final stage: Advanced Frequency Domain Analysis using a proprietary Fast Fourier Transform (FFT) filter.
Frequency Isolation: The tool mathematically decomposes the pre-processed (clamped) signal into its constituent frequencies (or periodic cycles). Traders can isolate and focus on a specific, tunable bandwidth (FFT Low/High Freq) that represents the most relevant market cycles for their trading style, effectively filtering out disruptive high-frequency noise and irrelevant, extremely low-frequency components.
Intelligent Spectral Gating: This feature introduces a proprietary, volatility-aware thresholding mechanism (Spectral Gating Level). The filter actively assesses the power spectrum of the decomposed signal, only allowing frequencies with power exceeding a dynamically calculated standard deviation level to pass through. This unique "gate" intelligently suppresses less significant cycles, leaving only the statistically dominant, market-driving components to form the final output, resulting in an exceptionally clean and responsive oscillator.
The result is a powerful, low-lag Hybrid FFT Oscillator that provides an unparalleled measure of directional bias and momentum.
Key Features for Exclusive Members
Closed Source & Invite Only: The underlying Pine Script logic, including the proprietary spectral gating calculation and hybrid weighting methodology, is intentionally obscured and available exclusively to a select group of paying members.
Maximum Data Efficiency: Optimized with a low max_bars_back and robust dependency structure to ensure maximum calculation efficiency.
Precision Control: Fine-tune the system's performance using controls like Hybrid Base Length, FFT Window Size, and the Spectral Gating Level to perfectly match any asset, timeframe, and trading strategy.
Experience the future of analytical precision. This is not just an indicator; it is a proprietary engineering solution for market mastery.
Straddle and Strangle Premium (AlgoStraddle)# Straddle and Strangle Indicator
## Overview
The **Straddle and Strangle** indicator is a powerful tool designed for options traders to analyze the combined premium behavior of Straddle and Strangle strategies on Indian indices (NIFTY, BANKNIFTY, FINNIFTY, etc.). Unlike simple premium adders, this indicator visualizes the **combined price action as a true candlestick chart**, allowing for precise technical analysis on the strategy itself.
It integrates essential technical indicators—SuperTrend, VWAP, Moving Averages, and Dynamic Support/Resistance—directly onto the combined premium chart, helping traders make informed decisions based on the net value of their positions.
## Key Features
### 1. Accurate Combined Premium Chart
- **True Candlesticks**: Displays the combined Open, High, Low, and Close of the CE and PE options.
- **Spread Ticker Logic**: Uses TradingView's spread syntax (e.g., `NIFTY25DEC26000C + NIFTY25DEC26000P`) to ensure mathematically accurate High/Low calculations, avoiding the "fake wicks" common in simple addition scripts.
- **Toggle View**: Switch between a clean Candlestick chart and a simple Line chart.
### 2. Comprehensive Premium Table (5-Strike Ladder)
- Displays a real-time table on the chart overlay.
- Shows the **Selected Strike** (Center) plus **2 Strikes Above** and **2 Strikes Below**.
- For each strike, view the individual **CE Price**, **PE Price**, and **Combined Premium**.
- Helps in quickly spotting better premiums or potential adjustments without changing inputs.
### 3. Built-in Technical Analysis
Analyze the combined premium just like a regular stock:
- **SuperTrend**: Identifies the trend direction (Bullish/Bearish) of the combined premium.
- **VWAP (Volume Weighted Average Price)**: A key benchmark for intraday direction.
- **Moving Averages**: Configurable SMA, EMA, WMA, or RMA to track momentum.
- **ATR Stop Loss**: Dynamic trailing stop-loss levels based on volatility.
- **Dynamic Support & Resistance**: Automatically plots Swing Highs and Swing Lows to identify breakout or breakdown levels.
### 4. Flexible Strategy Selection
- **Fixed Straddle**: Select a single strike for both CE and PE.
- **Fixed Strangle**: Select different strikes for CE and PE.
- **Multi-Index Support**: Ready-to-use presets for NIFTY, BANKNIFTY, FINNIFTY, MIDCPNIFTY, SENSEX, and BANKEX.
- **Custom Symbol**: Option to manually input any other symbol.
## How to Use
1. **Select Chart Type**: Choose between "Fixed Straddle" or "Fixed Strangle".
2. **Set Symbol & Expiry**: Choose your index (e.g., NIFTY) and enter the Expiry Date (YYYY-MM-DD).
3. **Enter Strikes**:
* For **Straddle**: Enter the ATM strike.
* For **Strangle**: Enter the specific CE and PE strikes.
4. **Analyze**:
* Use the **Candlestick Chart** to read price action.
* Watch for **SuperTrend** flips for trend changes.
* Use **VWAP** as a dynamic support/resistance reference.
* Monitor the **Table** to compare premiums across nearby strikes.
## Alerts
The indicator includes built-in alert conditions for automation:
- **SuperTrend Change**: Bullish/Bearish flips.
- **VWAP Cross**: Price crossing above or below VWAP.
- **Support/Resistance Break**: Price breaking key swing levels.
---
*Designed for precision options analysis.*
Filter Trend1. Indicator Name
Premium EMA Ribbon Filter (Pro Version)
(Advanced Trend & Momentum Filtering System Based on EMA Ribbons)
2. One-Line Introduction
A professional trend-analysis indicator that blends an advanced noise-filtering algorithm with an EMA ribbon system to extract only the pure bullish/bearish trend while smoothing out market noise.
3. Overall Description (7+ lines)
The Premium EMA Ribbon Filter is more than just a set of EMAs.
It analyzes the structure of a fast, medium, and slow EMA ribbon—along with the spacing and alignment between them—to determine whether the market is in a bullish trend, bearish trend, or a neutral/noise-heavy zone.
The core of this indicator is its noise-reduction algorithm and trend-strength calculation system.
Instead of relying on simple EMA cross signals, it evaluates how consistently the ribbon maintains bullish/bearish alignment over a specified period and highlights only strong trends with color coding, while weak or noisy areas are displayed in gray.
This helps traders avoid confusing or false signals and clearly focus only on the “meaningful zones.”
A Triple-Smoothing System is applied to create smoother, more refined ribbon movements, forming a stable “premium trend curve” that is less affected by short-term volatility.
As a result, this indicator works effectively for scalping, swing trading, and long-term trend following—staying true to the principle of removing noise and highlighting only the core market flow.
4. Short Advantages (6 items)
① Complete Noise Filtering
Using EMA ribbon comparison + tolerance logic, false reversals are largely eliminated, leaving only stable trend phases.
② Highly Readable Color System
Bullish trends are mint, bearish trends are red, and neutral/noise zones are gray—instantly visualizing market conditions.
③ Trend Strength Visualization
Not only trend direction but also trend strength is displayed via dynamic color transparency.
④ Smooth, Premium-Style Ribbon Design
Triple-smoothing creates a refined, luxury-level smoothness in movement.
⑤ Works Across All Timeframes
From 1-minute scalping to daily/weekly macro trend analysis.
⑥ Excellent Real-Trading Compatibility
Works extremely well when combined with ATR, SuperTrend, and volume-based indicators.
Indicator Manual (Required Section)
📌 Understanding the Core Concept
The indicator uses three EMAs (e.g., 20/50/100) arranged as a ribbon to analyze the structural alignment of the trend.
When the EMAs are cleanly aligned Top → Middle → Bottom, the market is in a bullish trend.
When aligned Bottom → Middle → Top, the market is in a bearish trend.
The indicator further evaluates the ribbon spread (gap) and the consistency of alignment to compute trend strength.
Noisy market conditions are shaded gray to clearly indicate “uncertain/indecisive” zones.
⚙️ Settings Description
Option Description
Fast EMA Most sensitive EMA; detects early trend signals
Mid EMA Stabilizes the primary trend direction
Slow EMA Defines the broader, long-term trend flow
Trend Lookback The period used to analyze trend strength
Noise Tolerance (%) Higher values = stronger noise removal
Smoothing Steps Controls how smooth the ribbon becomes
📈 Example Recognition
A bullish continuation/entry scenario forms when:
EMAs align in the order Fast → Mid → Slow (top side)
Ribbon color shifts into mint (strong bullish trend)
The ribbon begins to expand while price stays above the ribbon
📉 Example Recognition
A bearish continuation/entry occurs when:
EMAs align Fast → Mid → Slow (bottom side)
Ribbon color remains red
After contracting, the ribbon expands again during renewed downside strength
🧪 Recommended Usage
Combine with volume-based indicators (OBV, Volume Profile) → enhanced strong-trend detection
Use with SuperTrend or ATR Stop → clearer stop-loss placement
Combine with RSI/Stoch → avoid counter-trend entries in overheated conditions
Higher leverage traders should use higher tolerance settings
🔒 Cautions
EMA ribbons are trend-following tools; signals may weaken in ranging/sideways markets.
Never rely solely on this indicator—always confirm with volume, price patterns, or structure.
Very low Lookback values may cause excessive re-entry signals.
In high-volatility environments, ribbon spacing can contract/expand rapidly—use with caution.
SoopAlgo — Premium Buy & Sell Targets (v6)SoopAlgo — Premium Targets (v6)
Description / Usage:
SoopAlgo — Premium Targets is a powerful trading tool designed to provide clear and actionable buy and sell signals directly on your chart. It highlights optimal entry points with distinct labels and automatically plots target levels, helping traders plan exits with precision.
Advantages:
Clear Visual Signals: Buy and sell opportunities are displayed prominently, reducing confusion and improving decision-making speed.
Integrated Target Levels: Automatic target lines allow traders to set realistic profit expectations without manual calculations.
Customizable Alerts: Receive alerts when signals occur, ensuring you never miss a trade opportunity.
Clean, Modern Display: Minimal clutter with intuitive color-coding (Buy in blue, Sell in purple) for easy chart readability.
Flexible Settings: Easily adjust target distances, label sizes, and indicator sensitivity to fit different trading styles.
Ideal For:
Traders who want a streamlined, easy-to-read tool for spotting market entries and exits with visual targets and alerts, while keeping the chart clean and focused.
Libernovaq LevelsThis indicator not only marks the levels like previously. It marks the range for monthly and weekly open defined by custom timeframe by the user. // Backgound colour doesn’t work.
Liquidity Spectrum Visualizer (with option volume)This the Liquidity Spectrum Visualizer from BigBeluga, BUT, I took the script and changed it a little bit.
I added the ability to add option volume for a contract of your choosing. You can turn this off with a toggle switch.
If you are looking at option volume, its better to look at it on a smaller time frame (i.e., 15-min).
EMA CrossMoving averages based trend indicator
Plots
Hull Moving average 34
Simple MA 200
Exponential MA 5
Signals on crossing and turn around points.






















