BE-Indicator Aggregator toolkit█ Overview:
BE-Indicator Aggregator toolkit is a toolkit which is built for those we rely on taking multi-confirmation from different indicators available with the traders. This Toolkit aid's traders in understanding their custom logic for their trade setups and provides the summarized results on how it performed over the past.
█ How It Works:
Load the external indicator plots in the indicator input setting
Provide your custom logic for the trade setup
Set your expected SL & TP values
█ Legends, Definitions & Logic Building Rules:
Building the logic for your trade setup plays a pivotal role in the toolkit, it shall be broken into parts and toolkit aims to understand each of the logical parts of your setup and interpret the outcome as trade accuracy.
Toolkit broadly aims to understand 4 types of inputs in "Condition Builder"
Comments : Line which starts with single quotation ( ' ) shall be ignored by toolkit while understanding the logic.
Note: Blank line space or less than 3 characters are treated equally to comments.
Long Condition: Line which starts with " L- " shall be considered for identifying Long setups.
Short Condition: Line which starts with " S- " shall be considered for identifying Short setups.
Variables: Line which starts with " VAR- " shall be considered as variables. Variables can be one such criteria for Long or short condition.
Building Rules: Define all variables first then specify the condition. The usual declare and assign concept of programming. :p)
Criteria Rules: Criteria are individual logic for your one parent condition. multiple criteria can be present in one condition. Each parameter should be delimited with ' | ' key and each criteria should be delimited with ' , ' (Comma with a space - IMPORTANT!!!)
█ Sample Codes for Conditional Builder:
For Trading Long when Open = Low
For Trading Short when Open = High with a Red candle
'Long Setup <---- Comment
L-O|E|L
' E <- in the above line refers to Equals ' = '
'Short Setup
S-AND:O|E|H, O|G|C
' 2 Criteria for used building one condition. Since, both have to satisfied used "AND:" logic.
Understanding of Operator Legends:
"E" => Refers to Equals
"NE" => Refers to Not Equals
"NEOR" => Logical value is Either Comparing value 1 or Comparing value 2
"NEAND" => Logical value is Comparing value 1 And Comparing value 2
"G" => Logical value Greater than Comparing value 1
"GE" => Logical value Greater than and equal to Comparing value 1
"L" => Logical value Lesser than Comparing value 1
"LE" => Logical value Lesser than and equal to Comparing value 1
"B" => Logical value is Between Comparing value 1 & Comparing value 2
"BE" => Logical value is Between or Equal to Comparing value 1 & Comparing value 2
"OSE" => Logical value is Outside of Comparing value 1 & Comparing value 2
"OSI" => Logical value is Outside or Equal to Comparing value 1 & Comparing value 2
"ERR" => Logical value is 'na'
"NERR" => Logical value is not 'na'
"CO" => Logical value Crossed Over Comparing value 1
"CU" => Logical value Crossed Under Comparing value 1
Understanding of Condition Legends:
AND: -> All criteria's to be satisfied for the condition to be True.
NAND: -> Output of AND condition shall be Inversed for the condition to be True.
OR: -> One of criteria to be satisfied for the condition to be True.
NOR: -> Output of OR condition shall be Inversed for the condition to be True.
ATLEAST:X: -> At-least X no of criteria to be satisfied for the condition to be True.
Note: "X" can be any number
NATLEAST:X: -> Output of ATLEAST condition shall be Inversed for the condition to be True
WASTRUE:X: -> Single criteria WAS TRUE within X bar in past for the condition to be True.
Note: "X" can be any number.
ISTRUE:X: -> Single criteria is TRUE since X bar in past for the condition to be True.
Note: "X" can be any number.
Understanding of Variable Legends:
While Condition Supports 8 Types, Variable supports only 6 Types listed below
AND: -> All criteria's to be satisfied for the Variable to be True.
NAND: -> Output of AND condition shall be Inversed for the Variable to be True.
OR: -> One of criteria to be satisfied for the Variable to be True.
NOR: -> Output of OR condition shall be Inversed for the Variable to be True.
ATLEAST:X: -> At-least X no of criteria to be satisfied for the Variable to be True.
Note: "X" can be any number
NATLEAST:X: -> Output of ATLEAST condition shall be Inversed for the Variable to be True
█ Sample Outputs with Logics:
1. RSI Indicator + Technical Indicator: StopLoss: 2.25 against Reward ratio of 1.75 (3.94 value)
Plots Used in Indicator Settings:
Source 1:- RSI
Source 2:- RSI Based MA
Source 3:- Strong Buy
Source 4:- Strong Sell
Logic Used:
For Long Setup : RSI Should be above RSI Based MA, RSI has been Rising when compared to 3 candles ago, Technical Indicator signaled for a Strong Buy on the current candle, however in last 6 candles Technical indicator signaled for Strong Sell.
Similarly Inverse for Short Setup.
L-AND:ES1|GE|ES2, ES1|G|ES1
L-ES3|E|1
L-OR:ES4 |E|1, ES4 |E|1, ES4 |E|1, ES4 |E|1, ES4 |E|1, ES4 |E|1
S-AND:ES1|LE|ES2, ES1|L|ES1
S-ES4|E|1
S-OR:ES3 |E|1, ES3 |E|1, ES3 |E|1, ES3 |E|1, ES3 |E|1, ES3 |E|1
'Note: Last OR condition can also be written by using WASTRUE definition like below
'L-WASTRUE:6:ES4|E|1
'S-WASTRUE:6:ES3|E|1
Output:
2. Volumatic Support / Resistance Levels :
Plots Used in Indicator Settings:
Source 1:- Resistance
Source 2:- Support
Logic Used:
For Long Setup : Long Trade on Liquidity Support.
For Short Setup : Short Trade on Liquidity Resistance.
'Variable Named "ChkLowTradingAbvSupport" is declared to check if last 3 candles is trading above support line of liquidity.
VAR-ChkLowTradingAbvSupport:AND:L|G|ES2, L |G|ES2, L |G|ES2
'Variable Named "ChkCurBarClsdAbv4thBarHigh" is declared to check if current bar closed above the high of previous candle where the Liquidity support is taken (4th Bar).
VAR-ChkCurBarClsdAbv4thBarHigh:OR:C|GE|H , L|G|H
'Combining Condition and Variable to Initiate Long Trade Logic
L-L |LE|ES2
L-AND:ChkLowTradingAbvSupport, ChkCurBarClsdAbv4thBarHigh
VAR-ChkHghTradingBlwRes:AND:H|L|ES1, H |L|ES1, H |L|ES1
VAR-ChkCurBarClsdBlw4thBarLow:OR:C|LE|L , H|L|L
S-H |GE|ES1
S-AND:ChkHghTradingBlwRes, ChkCurBarClsdBlw4thBarLow
Output 1: Day Trading Version
Output 2: Scalper Version
Output 3: Position Version
Penunjuk dan strategi
Pivot Points Standardthese zones will be the only zones needed to trades. Candles respect these zones. The news respect these zones. Trade rejection and continuation of zones.
ETH True CB PremiumThis indicator calculates and visualizes the “true premium” or discount between Coinbase and Binance spot prices for ETH, accurately accounting for any decoupling between USD and USDT.
Coinbase ETHUSD is quoted in USD.
Binance ETHUSDT is quoted in USDT.
The indicator uses the current USDT/USD spot rate (COINBASE:USDTUSD) to convert Binance’s ETH price into USD terms, ensuring an accurate premium calculation even if USDT and USD are not exactly 1:1.
Estrategia de cruce de medias móvilesThis indicator uses two simple moving averages: a fast and a slow one. It generates a buy signal when the fast MA crosses above the slow MA, and a sell signal when it crosses below. It also closes open positions when the opposite crossover occurs. The moving averages are plotted on the chart for visual reference.
CBC Flip SonBThis script uses several different indicators like vwap, ema's and cbc candle flips.
This script scalping script is best used on the smaller timeframes (10m, 5m)
EMA 20 and Anchored VWAP with Typical PriceIntraday scalping using EMA 20 and VWAP along with targets and Stoploss
Risk On/Off Index [SwissAlgo]Risk On/Off Index - Sector Rotation Analysis
----------------------------------------------------
What it does:
This indicator estimates market risk appetite by comparing the weighted performance of growth/cyclical sectors (Risk-On) against defensive sectors (Risk-Off).
It provides a normalized oscillator that ranges from -1 (extreme risk-off) to +1 (extreme risk-on), which may help traders identify potential shifts in market sentiment and sector rotation patterns.
The analysis examines whether institutional money flows favor aggressive growth assets or seek safety in defensive positions, potentially offering insights into the underlying risk tolerance that drives market movements. When properly interpreted alongside other analyses, this information could assist in understanding broader market cycles and sentiment transitions.
----------------------------------------------------
How it works:
The indicator analyzes 11 major sector ETFs weighted by their actual market capitalization representation:
Risk-On sectors (70% weight) : Technology (28%), Financials (11%), Consumer Discretionary (10%), Communication (9%), Industrials (8%), Energy (4%), Materials (2.5%), Real Estate (2%)
Risk-Off sectors (30% weight) : Healthcare (13%), Consumer Staples (6%), Utilities (2.5%)
The algorithm calculates the weighted performance difference over your selected timeframe (7 days to 12 months) and normalizes it using three methods: Simple Difference, Tanh Normalized, or Historical Range. A 7-period EMA smooths the signal, while a longer signal line (default 50) provides trend context.
----------------------------------------------------
Visual Features:
Main curve (Risk Appetite Delta) : The primary line shows the smoothed (7-period EMA) risk appetite reading. When above zero, growth sectors are outperforming defensive sectors (risk-on sentiment). When below zero, defensive sectors are outperforming growth sectors (risk-off sentiment).
Signal line : A longer EMA (default 50-period) of the risk appetite data that represents the underlying trend. Crossovers between the main curve and signal line may indicate potential momentum shifts in market sentiment (potential long signal when the crossover happens in extreme risk-off zones, and potential short signal when the crossunder occurs in extreme risk-on zones)
Dynamic color coding : The main curve color reflects both position and momentum:
Red : Risk-on territory (>0) with strengthening momentum (above signal line)
Green : Risk-on territory (>0) but weakening momentum (below signal line) - potential reversal warning
Maroon : Risk-off territory (<0) but strengthening momentum (above signal line) - potential reversal warning
Lime : Risk-off territory (<0) with strengthening momentum (below signal line)
Gradient background zones : Subtle fills indicate risk appetite intensity levels from moderate (0 to ±0.25) through strong (±0.25 to ±0.5) to extreme (±0.5 to ±1.0)
Sector breakdown table : Shows individual sector performance with clear Risk-On/Risk-Off categorization
Reference levels : Horizontal lines mark neutral (0), strong (±0.5), and extreme (±1) risk appetite zones
This color system allows traders to quickly assess not just current sentiment (above/below zero) but also whether that sentiment is strengthening or potentially reversing based on the relationship with the signal line.
----------------------------------------------------
Who may benefit:
Portfolio managers rotating between growth and defensive allocations
Swing traders timing sector rotation plays
Risk managers monitoring overall market sentiment
Asset allocators adjusting exposure based on risk appetite cycles
----------------------------------------------------
Key applications:
Identify when markets transition from growth-seeking to risk-averse behavior
Time entries into cyclical sectors during risk-on phases
Rotate to defensive sectors when risk appetite weakens
Spot divergences between individual stocks and broader market sentiment
----------------------------------------------------
Limitations:
This indicator reflects US equity sector dynamics and may not capture risk sentiment in other asset classes or geographic regions. ETF-based analysis introduces slight tracking differences from underlying sector performance. Past performance patterns do not guarantee future results.
----------------------------------------------------
Disclaimer:
This indicator is for educational and analytical purposes only. It does not constitute financial advice or trading recommendations. Users should conduct their own analysis and risk assessment before making investment decisions. SwissAlgo assumes no responsibility for trading losses or investment outcomes based on this indicator's signals.
Daily Moving Average to Intraday ChartPlaces 200D, 100D, 50D SMAs as well as the 20D EMA onto intraday charts. (Script v6)
MACD + Stochastic Power Scalper Version 5.0MACD, EMA and Stochastic Scalper for Crypto Futures Pairs. Works across timeframes, uses ATR based trailing SL and TP to lock in profits with every price move.
xGhozt Pattern StatisticsUnlock the power of candlestick patterns with this comprehensive indicator. It automatically identifies and calculates the historical statistics of popular formations like Large Green/Red, Hammer, Doji, Bullish/Bearish Engulfing patterns.
An insights into each pattern's probability of an 'Up', 'Down', or 'Flat' outcome on the **next bar** and over a user-defined **N subsequent bars**. All statistics are presented in a customizable, interactive table directly on your chart, highlighting the most frequent outcomes. Visual markers are plotted to help you spot patterns instantly.
TX EM Levels - Multi-Timeframe Risk CalculatorThe TX EM Levels indicator is an original risk management tool that addresses a common challenge faced by traders across different time horizons: determining appropriate stop loss and take profit levels that adapt to market volatility and trading style. Unlike standard ATR indicators that simply display raw values, this script introduces a multi-style volatility framework that automatically adjusts risk parameters based on your chosen trading approach.
What This Indicator Does
This indicator transforms the traditional Average True Range (ATR) concept into a practical, multi-dimensional risk management system by:
Calculating Daily ATR Foundation: Uses daily timeframe ATR as the baseline measurement, ensuring consistency regardless of your chart timeframe
Style-Adaptive Scaling: Applies intelligent multipliers based on three distinct trading approaches
Dual-Purpose Display: Provides both visual plot representation and tabular reference data
Real-Time Risk Levels: Displays both Stop Loss (SL) and Take Profit (TP) levels simultaneously
Core ATR Calculation
The indicator employs a multi-timeframe approach by requesting daily ATR data using the request.security() function, regardless of your current chart timeframe. This ensures:
Consistency across different viewing timeframes
Stable volatility measurements not affected by intraday noise
Reliable risk parameters for position sizing
Risk-Reward Framework
The indicator implements a 2:1 risk-reward ratio by default:
Stop Loss levels = Calculated ATR value
Take Profit levels = 2x the Stop Loss value
How to Use This Indicator
Setup Instructions
Add to Chart: Apply the indicator to any timeframe chart
Select Trading Style: Choose from Swing, Intraday, or Scalping in the settings
Configure Display: Toggle the reference table on/off based on preference
Adjust ATR Parameters: Modify length (default 14) and smoothing method if needed
Practical Application
For Position Entry:
Use the calculated SL level as your maximum risk per trade
Set your take profit target at the TP level shown
The values automatically adjust to current market volatility
For Risk Management:
The indicator helps maintain consistent risk exposure across different market conditions
Higher ATR periods = wider stops (trending markets)
Lower ATR periods = tighter stops (ranging markets)
For Multiple Timeframe Trading:
Switch between trading styles without changing charts
Compare how different approaches would affect your risk parameters
Maintain consistent methodology across various instruments
JXMJXRS - Macro Flow CompassThe Macro Flow Compass is designed to give a high-level view of market behaviour by tracking how capital is moving across the crypto ecosystem. It’s not an entry or exit tool. Instead, it helps identify when the overall environment is shifting, whether capital is favouring majors like BTC and ETH, rotating into altcoins, or moving into stables.
The goal is to keep you aligned with broader market cycles, so trades are taken with macro context in mind.
The script works by analyzing four key metrics:
Total crypto market cap (CRYPTOCAP:TOTAL)
Bitcoin dominance (CRYPTOCAP:BTC.D)
Ethereum dominance (CRYPTOCAP:ETH.D)
Combined stable coin dominance from USDT and USDC (CRYPTOCAP:USDT.D + USDC.D)
These are smoothed using a basic EMA (Exponential Moving Average) to reduce noise. The script then checks for changes in dominance and market cap slope to detect when capital is likely flowing into or out of specific sectors.
When certain conditions align, the script will shade the background with one of the following colours:
Green Panel – Risk-on behaviour in majors. Usually appears when total market cap is trending up and BTC dominance is dropping, or stable coin dominance is falling. It suggests BTC and ETH are likely receiving capital inflow, not necessarily pumping but positioned better for upside.
Orange Panel – Altcoin rotation. Happens when ETH dominance is rising or stables are pulling back, while the market cap is also rising. These tend to precede altcoin outperformance phases.
Blue Panel – Stable coin build-up. Signals increasing stable coin dominance. Often a defensive move, either after a drop or in anticipation of volatility. This can mean risk-off conditions.
The indicator uses three main settings:
Smoothing Length – Controls how reactive the EMAs are. Lower values react quicker to short-term changes; higher values will slow things down and highlight more persistent trends.
Dominance Flip Threshold (%) – Sets how much a dominance value must change in one bar to trigger a condition. It’s there to avoid reacting to tiny shifts that don’t really matter.
Macro Cap Slope Length – Determines how the macro market cap trend is calculated. It looks at the slope of a long-term regression to decide if we’re in an uptrend or downtrend.
This tool works on higher timeframes like the weekly or monthly, and it’s especially useful when combined with your own technical analysis.
💀🐔 PANICAN ALERT🧨 PANICAN ALERT
For traders who:
Enter every position “just to see what happens”
Panic-exit green trades for a $12 profit
Re-enter 30 seconds later at a worse price
Can’t tell the difference between a pullback and personal betrayal
Have 19 open indicators and trust none of them
No strategy. No plan. Just nerves, caffeine, and poor impulse control.
PANICAN ALERT doesn’t help — it reflects.
It won’t save you. But at least now your chart screams like you do.
Multi-Timeframe 200 SMA OverlayMulti Timeframe 200 SMAs
Indicator Displays and labels on anytime frame:
2 minute 200 SMA
5 minute 200 SMA
10 minute 200 SMA
15 minute 200 SMA
1 Hour 200 SMA
4 Hour 200 SMA
1 Day 200 SMA
Opening Range and Initial balanceThis indicator represents Opening Range and Initial Balance levels.
Opening Range represents the high and low established during the first few minutes of the trading session — usually 5, 15 or 30 minutes.
Initial Balance represents the high and low established during the first hour of the trading session.
God's Plan 7This is a buy/sell indicator containing the code for the Top Bottom indicator, VWAP and 9 EMA.
Buy conditions are Top Bottom buy and 9 EMA crossing above the VWAP.
Sell conditions are Top Bottom sell and 9 EMA crossing below the VWAP.
C signals indicate continuations.
Zero TOD constraints.
This is a simple strategy to help train the eye to recognize trend shifts and potential entries.
It is important for the users of this strategy to use their own logic when determining stop loss and targets.
Thank you to all of the coders and creators that have provided us with inspiration for this strategy. Happy trading!
Daily Performance Analysis [Mr_Rakun]The Daily Performance Analysis indicator is a comprehensive trading performance tracker that analyzes your strategy's success rate and profitability across different days of the week and month. This powerful tool provides detailed statistics to help traders identify patterns in their trading performance and optimize their strategies accordingly.
Weekly Performance Analysis:
Tracks wins/losses for each day of the week (Monday through Sunday)
Calculates net profit/loss for each trading day
Shows profit factor (gross profit ÷ gross loss) for each day
Displays win rate percentage for each day
Monthly Performance Analysis:
Monitors performance for each day of the month (1-31)
Provides the same detailed metrics as weekly analysis
Helps identify monthly patterns and trends
Add to Your Strategy:
Copy the performance analysis code and integrate it into your existing Pine Script strategy
Optimize Strategy: Use insights to refine entry/exit timing or avoid trading on poor-performing days
Pattern Recognition: Identify which days of the week/month work best for your strategy
Risk Management: Avoid trading on historically poor-performing days
Strategy Optimization: Fine-tune your approach based on empirical data
Performance Tracking: Monitor long-term trends in your trading success
Data-Driven Decisions: Make informed adjustments to your trading schedule
EMA10/14/20 Trend Alignment (1st Signal Only)// ╔══════════════════════════════════════════════╗
// ║ M1 Starter Entry 10/14/20 (TH/EN) ║
// ╚══════════════════════════════════════════════╝
//
// 📌 ภาษาไทย:
// ระบบนี้ใช้ EMA 10/14/20 สำหรับจับจุดเข้าไม้ต้นเทรนด์ใน Timeframe M1
// - ออกสัญญาณ Buy เมื่อ EMA เรียงตัว 10 > 14 > 20 และแท่งเทียนยืนเหนือเส้น (โดยไม่แนบเส้นเกินไป)
// - ออกสัญญาณ Sell เมื่อ EMA เรียง 10 < 14 < 20 และแท่งอยู่ใต้เส้นทั้งหมด
// - มีการตรวจสอบระยะห่างระหว่างเส้น เพื่อหลีกเลี่ยงจุดหลอกตอน EMA ชิดกัน
// - สัญญาณออกเฉพาะ “แท่งแรก” หลังเข้าเงื่อนไขเท่านั้น
//
// 📌 English:
// This script detects early trend entries using EMA 10/14/20 on M1 timeframe.
// - Buy signal: When EMA10 > EMA14 > EMA20, and the candle closes above all EMAs
// - Sell signal: When EMA10 < EMA14 < EMA20, and the candle closes below all EMAs
// - Minimum distance between EMAs required to avoid fake signals in flat zones
// - Signals are shown only on the **first candle** that meets all conditions
//
// 🛠 เหมาะกับการใช้คู่กับระบบ MTF หรือแนวรับต้านด้วย
// Created by: คุณซี 💚
Slope Based Divergences of Wavelet - (Multi-Length, Dual Price)
1. Summary
This is not a typical divergence indicator. Instead of comparing simple peaks and troughs in price and an oscillator, the Slope-Based Divergence Engine performs a far more rigorous analysis by measuring the rate of change (slope) itself.
It identifies high-probability divergence opportunities by detecting moments when price is accelerating strongly in one direction while the underlying momentum, measured by a sophisticated Scientific Wavelet Oscillator, is accelerating in the opposite direction. By requiring confirmation from two different price sources (high and low) and across multiple timeframes, it aims to filter out noise and pinpoint only the most potent moments of market exhaustion.
2. The Core Innovation: Why Slope?
Traditional divergence indicators look at levels (e.g., price made a higher high, RSI made a lower high). This script looks at momentum's momentum.
Traditional Method: "Price went up, but momentum went down."
This Script's Method: "Price is accelerating upwards faster than ever, but momentum is decelerating faster than ever."
By focusing on the slope, the indicator identifies points of maximum stress and disagreement in the market, which often precede sharp reversals.
3. Key Components & Logic
The script's power comes from its multi-layered filtering system:
Scientific Wavelet Oscillator: The indicator's engine is a custom oscillator built using a Haar Wavelet Transform. Unlike standard oscillators (like RSI or Stochastics) that use a single period, this one analyzes the price across multiple different time scales (or "octaves") simultaneously. It then fuses this information into a single, robust momentum reading that is normalized using a statistical Z-score.
Multi-Length Average Slope: The script doesn't just calculate a single slope. It calculates the slope across a range of lookback periods (e.g., from 1 to 30 bars) and then averages them. This creates a much smoother and more reliable measure of the trend's current velocity, filtering out the noise from any single period.
Dual Price Confirmation: To qualify a price trend, the script requires that the slope of two separate price sources (by default, high and low) are both in agreement. For a bearish divergence, the slopes of both the session high and low must be accelerating upwards aggressively. This ensures the entire price bar is participating in the move and avoids false signals from wicks or narrow ranges.
Multi-Timeframe Percent Rank: The script uses percentrank to normalize the calculated slopes, putting them on a scale of 0 to 100. This allows it to identify statistically extreme readings. A divergence is only confirmed if it meets the criteria on both a Long-Term (LL) and Short-Term (LS) lookback. This ensures the signal is not just a momentary fluke but is a valid point of exhaustion in both the immediate and broader context.
4. How to Interpret the Signals
The indicator plots simple labels on the chart when all conditions are met:
Green "Bull" Label (Bullish Divergence): Appears when:
The slopes of both high and low are accelerating downwards (in the bottom 8% of their historical readings for both long and short lookbacks).
Simultaneously, the slope of the wavelet oscillator is accelerating upwards (in the top 92% of its historical readings).
Meaning: Price is in a state of free-fall, but the underlying momentum is aggressively turning up. This signals that selling pressure is likely exhausted.
Red "Bear" Label (Bearish Divergence): Appears when:
The slopes of both high and low are accelerating upwards (in the top 92% of their historical readings).
Simultaneously, the slope of the wavelet oscillator is accelerating downwards (in the bottom 8% of its historical readings).
Meaning: Price is in a state of extreme ascent (a "blow-off top"), but the underlying momentum is collapsing. This signals that buying pressure is likely exhausted.
5. How to Use in Trading
Reversal Signals: The labels should be treated as high-probability signals that a trend is exhausted and a reversal or significant pullback is imminent.
Confirmation Tool: Do not use the labels as standalone entry signals. Always seek confirmation from other forms of analysis, such as a break of a trendline, a key support/resistance level holding, or a classic candlestick reversal pattern.
Exit Signals: A bearish divergence label can serve as a powerful signal to take profit on long positions, and a bullish label can be a signal to cover shorts.
aiTrendview-OPTION-KING + OI Summary Pro📊 aiTrendview OPTION TRADING SYSTEM - Complete Analysis Guide
🎯 System Overview
The aiTrendview Option Trading System is a comprehensive, institutional-grade trading dashboard that combines Supertrend signals, volume analysis, options flow data, and risk management into a unified trading interface. It's designed to provide traders with complete market intelligence for making high-probability, risk-managed trades.
________________________________________
🎛️ INPUT PARAMETERS & CONFIGURATION
Supertrend Settings
• ATR Period (6): Shorter period = more sensitive signals
• ATR Multiplier (10.0): Higher value = fewer but stronger signals
• Purpose: Filters market noise and identifies trend changes
• Trading Benefit: Reduces false signals while capturing major moves
Risk Management Parameters
• Stoploss % (20%): Maximum risk per trade
• Target 1 % (10%): First profit target - quick scalp
• Target 2 % (20%): Second target - trend continuation
• Target 3 % (30%): Final target - maximum profit potential
• Risk-Reward Calculation: Automatic 1:1.5 minimum ratio
Table Customization
• Position: 6 locations (Top/Bottom + Left/Center/Right)
• Size: Small/Normal/Large for different screen setups
• Show/Hide: Toggle table visibility
• Purpose: Optimal screen real estate usage without blocking price action
Options Flow Simulation
• OI Current Hour (500): Simulated current hour Open Interest
• OI Previous Hour (480): Previous hour OI for trend analysis
• ATM Offset (50): Strike price rounding (50-point intervals)
• Purpose: Tracks institutional money flow and positioning
________________________________________
📊 COMPREHENSIVE DASHBOARD SECTIONS
Section 1: TRADING SIGNALS
This is the core decision-making section providing complete trade setup information.
Signal Generation
• Buy Signal: Price crosses above Supertrend + volume confirmation
• Sell Signal: Price crosses below Supertrend + volume confirmation
• Wait Signal: No clear trend direction or conflicting signals
• Color Coding: Green (Buy), Red (Sell), Gray (Wait)
Complete Trade Setup
• Entry Price: Exact entry level based on signal
• Stoploss: Pre-calculated risk management level
• Target 1 (10%): Quick profit booking level
• Target 2 (20%): Trend continuation target
• Target 3 (30%): Maximum profit potential
• R:R Ratio: Risk-to-reward calculation (minimum 1:1.5)
Momentum Confirmation
• Accumulate: RSI < 30 (oversold, buying opportunity)
• Distribution: RSI > 70 (overbought, selling pressure)
• Neutral: RSI 30-70 (balanced conditions)
________________________________________
Section 2: VOLUME ANALYSIS
Critical for confirming signal strength and institutional participation.
Volume Metrics
• Current Volume: Real-time trading activity
• Volume MA (20-period): Average volume baseline
• Volume Ratio: Current vs. average (1.5x+ = high activity)
• Volume Progress: Daily volume completion percentage
• Color Coding: Blue (high), Gray (normal), Red (low)
Volume Interpretation
• > 2.0x Ratio: Institutional participation, strong signals
• 1.5-2.0x Ratio: Above average activity, good confirmation
• 1.0-1.5x Ratio: Normal activity, standard signals
• < 1.0x Ratio: Low participation, weak signals
Live Profit Tracking
• Real-time P&L: Current position profit/loss
• Color Coding: Green (profit), Red (loss), Black (breakeven)
• Percentage Display: Easy risk assessment
________________________________________
Section 3: OPTIONS & MARKET DATA
Advanced options flow analysis for institutional insight.
ATM Strike Analysis
• ATM Strike: At-the-money option strike (rounded to nearest 50)
• Purpose: Primary battleground for bulls vs. bears
• Significance: Highest gamma and most liquid options
Put/Call Volume Analysis
• Put Volume: Bearish positioning volume
• Call Volume: Bullish positioning volume
• Color Coding: Red (puts), Green (calls)
• Interpretation: Directional bias of smart money
PCR (Put Call Ratio)
• Calculation: Put Volume ÷ Call Volume
• Bullish: PCR < 0.8 (more calls than puts)
• Bearish: PCR > 1.2 (more puts than calls)
• Neutral: PCR 0.8-1.2 (balanced positioning)
• Contrarian Indicator: Extreme readings often reverse
OI Trend Analysis (Advanced Smart Money Tracking)
The system analyzes Open Interest changes vs. price movement:
• Long Buildup: ↑OI + ↑Price (Bulls adding positions)
• Short Buildup: ↑OI + ↓Price (Bears adding positions)
• Long Unwinding: ↓OI + ↓Price (Bulls exiting)
• Short Covering: ↓OI + ↑Price (Bears covering)
• Long Accumulation: ↑OI + Flat Price (Institutional accumulation)
• Bearish Weakness: ↓OI + Flat Price (Losing interest)
________________________________________
Section 4: MARKET CONTEXT
Additional confirmation indicators for complete market picture.
PDC (Previous Day Close) Analysis
• Bullish: Current price > Previous day high
• Bearish: Current price < Previous day low
• Neutral: Price within previous day range
• Significance: Breakout/breakdown confirmation
LTP (Last Traded Price)
• Real-time Price: Current market price
• Reference Point: For all calculations and targets
________________________________________
🎯 ACHIEVING RISK-OPTIMIZED TRADING
High Probability Setup Identification
Perfect Buy Setup (90%+ Success Rate)
1. Signal: Buy signal generated
2. Volume: Ratio > 1.5x (institutional participation)
3. Momentum: RSI in accumulation zone (< 40)
4. Options Flow: PCR < 0.8 (bullish positioning)
5. OI Trend: Long Buildup or Short Covering
6. PDC: Price > Previous day high
7. R:R Ratio: Minimum 1:2
Perfect Sell Setup (90%+ Success Rate)
1. Signal: Sell signal generated
2. Volume: Ratio > 1.5x (institutional participation)
3. Momentum: RSI in distribution zone (> 60)
4. Options Flow: PCR > 1.2 (bearish positioning)
5. OI Trend: Short Buildup or Long Unwinding
6. PDC: Price < Previous day low
7. R:R Ratio: Minimum 1:2
Risk Management Protocol
Position Sizing
• High Confidence (6+ confirmations): 2% risk per trade
• Medium Confidence (4-5 confirmations): 1% risk per trade
• Low Confidence (< 4 confirmations): Avoid or 0.5% risk
Entry Rules
• Never enter without Supertrend signal
• Wait for volume confirmation (>1.2x ratio)
• Check options flow alignment
• Ensure R:R ratio > 1:1.5
Exit Strategy
• Target 1 (10%): Book 1/3 position (covers commissions)
• Target 2 (20%): Book 1/3 position (secures profit)
• Target 3 (30%): Let remainder run with trailing stop
• Stoploss: Hard stop at 20% loss (non-negotiable)
________________________________________
📊 ADVANCED INTERPRETATION GUIDE
Volume Analysis Mastery
• Volume Spike + Buy Signal: High probability long setup
• Volume Decline + Sell Signal: Trend exhaustion, reversal likely
• High Volume + Neutral Signal: Wait for direction
• Low Volume + Any Signal: Weak setup, reduce size
Options Flow Intelligence
• PCR Divergence: When PCR contradicts price action (reversal setup)
• OI Buildup Confirmation: Aligns with Supertrend direction
• ATM Strike Defense: Price holding above/below ATM = strong level
Multi-Timeframe Confirmation
• 15-min Supertrend: Entry timing
• 1-hour Volume: Trend strength
• Daily PDC: Breakout confirmation
• Options Flow: Institutional positioning
________________________________________
🛡️ RISK-FREE TRADING METHODOLOGY
The 6-Point Confirmation System
Only trade when ALL 6 conditions align:
1. ✅ Supertrend Signal: Clear buy/sell signal
2. ✅ Volume Confirmation: Ratio > 1.5x
3. ✅ Momentum Alignment: RSI in favorable zone
4. ✅ Options Flow: PCR supporting direction
5. ✅ OI Trend: Institutional money aligned
6. ✅ Risk-Reward: Minimum 1:2 ratio
Position Management Rules
• Scale Out: Take profits at predetermined levels
• Trail Stops: Move stops to breakeven after Target 1
• Risk Limits: Never risk more than 2% per trade
• Daily Limits: Stop trading after 3 consecutive losses
Market Condition Adaptation
• Trending Markets: Use all 3 targets, trail stops
• Range Markets: Take profits at Target 1-2
• High Volatility: Reduce position size by 50%
• Low Volatility: Increase position size (within limits)
________________________________________
📈 PERFORMANCE OPTIMIZATION
Win Rate Enhancement
• Wait for 5+ confirmations: 80%+ win rate
• Use volume confirmation: Eliminates 60% of false signals
• Respect OI trends: Institutional money rarely wrong
• Follow options flow: Smart money positioning
Risk Reduction Techniques
• Pre-defined stops: No emotional decisions
• Position sizing: Mathematical risk management
• Market context: Don't fight the trend
• Time-based exits: Close before major events
Profit Maximization
• Scale out gradually: Capture trend moves
• Trail stops effectively: Let winners run
• Re-enter on pullbacks: Multiple entries in trends
• Compound gains: Reinvest profits systematically
________________________________________
🎯 ALERT SYSTEM INTEGRATION
Automated Alerts
• Buy/Sell Signals: Instant notification of Supertrend crosses
• Volume Spikes: When ratio exceeds 2x
• Profit Targets: 5% and 10% profit notifications
• Risk Management: Stop loss approach warnings
Mobile Integration
• Push Notifications: Never miss a setup
• Email Alerts: Backup notification system
• SMS Options: Critical signal delivery
• Discord/Telegram: Community sharing
________________________________________
💡 PROFESSIONAL TRADING INSIGHTS
Market Maker Psychology
• OI Buildup: Shows where institutions are positioned
• Volume Spikes: Institutional order flow
• PCR Extremes: Contrarian opportunities
• ATM Defense: Key support/resistance levels
Timing Optimization
• Best Setup Times: 10:00-11:30 AM and 2:30-3:15 PM
• Avoid: First 15 minutes and last 15 minutes
• Event Risk: Close positions before major announcements
• Weekend Risk: Avoid Friday afternoon entries
Advanced Strategies
• Fade False Breakouts: When volume doesn't confirm
• Ride Institutional Waves: Follow OI trends
• Contrarian Plays: Extreme PCR readings
• Momentum Continuation: Strong volume + trend alignment
________________________________________
The aiTrendview Option Trading System transforms complex market analysis into actionable trading decisions through systematic risk management, institutional flow analysis, and high-probability signal generation. By following the 6-point confirmation system and strict risk management rules, traders can achieve consistent profitability while minimizing drawdowns.
🔔 NIFTY 100+ Points Early Move Signal (1H)//@version=5
indicator("🔔 NIFTY 100+ Points Early Move Signal (1H)", overlay=true)
// === Inputs === //
squeezePeriod = input.int(20, title="Price Squeeze Lookback")
rangeTrigger = input.float(100.0, title="Target Move (in Points)")
rsiLength = input.int(14, title="RSI Length")
macdFast = input.int(12)
macdSlow = input.int(26)
macdSignal = input.int(9)
volMultiplier = input.float(1.5, title="Volume Spike Multiplier")
// === RSI & MACD === //
rsi = ta.rsi(close, rsiLength)
= ta.macd(close, macdFast, macdSlow, macdSignal)
macdBullish = macdLine > signalLine
macdBearish = macdLine < signalLine
// === Price Compression === //
hh = ta.highest(high, squeezePeriod)
ll = ta.lowest(low, squeezePeriod)
compressionRange = hh - ll
tightCompression = compressionRange < (rangeTrigger * 0.6) // Pre-expansion
// === Volume Spike === //
avgVol = ta.sma(volume, 20)
volSpike = volume > avgVol * volMultiplier
// === Early Signal Logic === //
bullSetup = tightCompression and rsi > 50 and macdBullish and volSpike
bearSetup = tightCompression and rsi < 50 and macdBearish and volSpike
// === Plotting Signals === //
plotshape(bullSetup, title="Bullish Setup", location=location.belowbar, color=color.green, style=shape.labelup, text="100↑")
plotshape(bearSetup, title="Bearish Setup", location=location.abovebar, color=color.red, style=shape.labeldown, text="100↓")
bgcolor(bullSetup ? color.new(color.green, 85) : na)
bgcolor(bearSetup ? color.new(color.red, 85) : na)
// === Alerts === //
alertcondition(bullSetup, title="Bullish 100pt Setup", message="🚀 NIFTY: 100+ point UP move likely!")
alertcondition(bearSetup, title="Bearish 100pt Setup", message="🔻 NIFTY: 100+ point DOWN move likely!")
Multi-Timeframe Resonance v2.0📌 Multi-Timeframe Resonance System — Identify trend, range, and turning points at a glance
✨ Core Advantages:
🔹 Multi-timeframe resonance analysis: Detects trend direction and range across timeframes. Helps identify M tops, W bottoms, consolidation turning points, and trend switches.
🔹 Clear phase visualization: Highlights trend momentum (green) and consolidation zones (red).
🔹 Universally compatible: Works on stocks/ETFs, futures/commodities, forex, gold, crypto — parameter tuning is the only requirement.
🎯 Target Users:
✅ Traders needing fast structure analysis
✅ Trend-followers, swing traders, or range-arbitrageurs
✅ Multi-timeframe analysts & volume researchers
✅ Quant teams seeking stable signal output
📈 Market Structure Evolution Sequence:
**Same-Bear → Small Box Bull → Medium Box Bull → Large Box Bull → Same-Bull → Small Box Bear → Medium Box Bear → Large Box Bear → Same-Bear**
- “Same-Bear”/“Same-Bull”: full agreement among timeframes,strongest trend stages.
- “Small/Medium/Large Box”: represent increasing-level consolidations indicating trend emergence or turn.
🔍 By identifying the current structure phase, traders can determine if:
- The market is in the **early trend stage** (Same-Bull/Same-Bear)
- Or in a **trend shift period** (Bear→Bull or Bull→Bear)
- Or still **oscillating** (structures switching)
⚠️ **Practical Note:**
Although structure usually follows the sequence above, in strong or volatile moves it may:
- **Skip steps** (e.g., Same-Bear → Large Box Bull)
- **Switch rapidly** within a few candles
Traders should use volume, candle patterns, and higher-timeframe trends to confirm valid structure changes or avoid false breakouts.
📌 Execution Logic:
This indicator applies **multi-timeframe resonance** to capture **trend pullbacks**:
- Identifies trend direction via higher timeframes
- Uses pullback in shorter timeframe to signal entry
- Executes trend-following trades at pullback points
- Protects with structured stop-loss based on higher timeframe structure
🔒 This is a protected script. For access details, please see the Author’s Instructions.
📌 多周期共振识别系统 — 趋势、震荡与拐点,一目了然
✨ 核心优势:
🔹 多周期共振分析:同时检测多个周期的趋势方向与震荡结构,辅助识别 M 顶 / W 底 / 震荡拐点 / 趋势转换等关键信号。
🔹 趋势与震荡清晰可视:自动高亮趋势推进(绿色)与震荡盘整(红色)区域,一眼看清市场节奏。
🔹 全品种通用:适配股票 / ETF、期货 / 商品、外汇 / 黄金、加密货币等市场,仅需轻微参数微调。
🎯 适用人群:
✅ 需要快速识别图表结构的交易者
✅ 趋势跟随者、波段捕捉者、震荡套利者
✅ 热衷于多周期分析与量能行为研究的交易者
✅ 追求稳定信号输出的量化策略团队
📈 市场结构演变路径:
同空 → 小箱多 → 中箱多 → 大箱多 → 同多 → 小箱空 → 中箱空 → 大箱空 → 同空
“同空” / “同多”:表示多周期趋势完全一致,代表趋势最强阶段
“小箱 / 中箱 / 大箱”:代表不同级别的震荡结构,结构逐步递进,表示趋势正在酝酿或转向
🔍 通过识别当前所处的结构阶段,交易者可以判断:
当前是否处于趋势初期阶段(如同空 / 同多)
是否处于趋势转换区间(如由空转多或由多转空)
或仍处于震荡反复区间(结构频繁切换)
⚠️ 实战提醒:
虽然市场结构通常遵循上述顺序演化,但在强趋势或剧烈波动行情下,可能出现以下情况:
跳跃演化(如从“同空”直接进入“大箱多”阶段)
快速切换(几根K线内连续跳过多个结构)
因此,交易者应结合量能、K线形态及更高周期趋势,判断结构变化是否“有效”或为“假突破”。
📌 执行逻辑:
本指标通过多周期趋势共振确认,捕捉趋势中的回踩机会:
利用高阶周期判断趋势方向
在低阶周期的回踩位置作为进场信号
顺势交易,捕捉主趋势中的低吸 / 高抛机会
止损位置依据上位周期结构确认,明确清晰
🔒 本脚本为受控授权版本,如需获取使用权限,请参阅“作者说明”。