FİBO FİNAL An Indicator Suitable for Further Development
OK3 Final Buy
S1 Take Profit
S2 Close Half of the Position
S3 Close the Position
Indicadores de Banda
Volume MA Breakout T3 [Teyo69]🧭 Overview
Volume MA Breakout T3 highlights volume bars that exceed a dynamic moving average threshold. It helps traders visually identify volume breakouts—periods of significant buying or selling pressure—based on user-selected MA methods (SMA, EMA, DEMA).
🔍 Features
Volume Highlighting: Green bars indicate volume breakout above the MA; red bars otherwise.
Custom MA Options: Choose between SMA, EMA, or Double EMA for volume smoothing.
Dynamic Threshold: The moving average line adjusts based on user-defined length and method.
⚙️ Configuration
Length: Number of bars used for the moving average calculation (default: 14).
Method: Type of moving average to use:
"SMA" - Simple Moving Average
"EMA" - Exponential Moving Average
"Double EMA" - Double Exponential Moving Average
📈 How to Use
Apply to any chart to visualize volume behavior relative to its MA.
Look for green bars: These suggest volume is breaking out above its recent average—potential signal of momentum.
Red bars indicate normal/subdued volume.
⚠️ Limitations
Does not provide directional bias—use with price action or trend confirmation tools.
Works best with additional context (e.g., support/resistance, candle formations).
🧠 Advanced Tips
Use shorter MAs (e.g., 5–10) in volatile markets for more responsive signals.
Combine with OBV, MFI, or accumulation indicators for confluence.
📌 Notes
This is a volume-based filter, not a signal generator.
Useful for breakout traders and volume profile enthusiasts.
📜 Disclaimer
This script is for educational purposes only. Always test in a simulated environment before live trading. Not financial advice.
Swing Crypto Bot – Extended Patterns + Three Outside UpScript improved for Crypto Long trades with chartist analysis
لعلي بابا على ساعة Moving averages indicator for the 10 and 20 averages, relative strength index, and Bollinger Bands Moving averages indicator for the 10 and 20 averages, relative strength index, and Bollinger Bands
Nifty 50 Gainers Losers Table
How it Works
1. Dropdown List Selection
allows for dynamic interaction, making it flexible and user-friendly.
Scripts added to list as per Their Weightage Allocated in Nifty_50 Index.
Switch Lists Option: to Check Complete List of 50 ( List is Splitted Because of Restriction to use of 40)
Use the dropdown to switch between "Main 40" and "Remaining 10" lists dynamically.
2. Interpret Values
User Setting to Show Hide Column : Unchanged
Gainers (Green): Number of stocks that closed higher than the previous day.
Losers (Red): Number of stocks that closed lower.
Unchanged (Gray): No change in close from the previous day.
3. Compact Table Display :
User Setting to show Hide Table & Table Position As per Need (TOP,Bottom,Middle Etc)
is smartly placed and keeps the layout clean and readable.
4. User Input to Set Text Size. you can change Text Size as per Need.
✅ How to Use This Indicator Effectively
🔹 Step-by-Step User Flow:
Add to Chart
Apply this indicator to any chart—ideally NIFTY or NIFTY FUTURES (to keep contextually relevant).
Use in Decision Making
Use this internally as a market breadth tool.
If Gainers >> Losers, the market is strong/bullish.
If Losers >> Gainers, the market is weak/bearish.
If balanced, market is range-bound or sector-specific moves dominate.
Activity and Volume Orderflow Profile [JCELERITA]A volume and order flow indicator is a trading tool that analyzes the relationship between trade volume and the flow of buy and sell orders in the market. Unlike traditional indicators that rely solely on price action, this type of indicator provides insight into market sentiment by revealing whether buying or selling pressure is dominant at a given time. It typically uses data from the order book and executed trades (such as footprint charts or delta volume) to show imbalances, helping traders identify potential reversals, breakouts, or hidden strength/weakness in price movements. This makes it especially valuable for scalpers and day traders aiming to time entries and exits with precision.
Horizontal Grid from Base PriceSupport & Resistance Indicator function
This inductor is designed to analyze the "resistance line" according to the principle of mother fish technique, with the main purpose of:
• Measure the price swing cycle (Price Swing Cycle)
• analyze the standings of a candle to catch the tempo of the trade
• Used as a decision sponsor in conjunction with Price Action and key zones.
⸻
🛠️ Main features
1. Create Automatic Resistance Boundary
• Based on the open price level of the Day (Initial Session Open) bar.
• It's the main reference point for building a price framework.
2. Set the distance around the resistance line.
• like 100 dots/200 dots/custom
• Provides systematic price tracking (Cycle).
3. Number of lines can be set.
• For example, show 3 lines or more of the top-bottom lines as needed.
4. Customize the color and style of the line.
• The line color can be changed, the line will be in dotted line format according to the user's style.
• Day/night support (Dark/Light Theme)
5. Support for use in conjunction with mother fish techniques.
• Use the line as a base to observe whether the "candle stand above or below the line".
• It is used to help see the behavior of "standing", "loosing", or "flow" of prices on the defensive/resistance line.
6. The default is available immediately.
• The default is based on the current Day bar opening price.
• Round distance, e.g. 200 points, top and bottom, with 3 levels of performance
DXTRADE//@version=5
indicator(title="DXTRADE", shorttitle="", overlay=true)
// التأكد من أن السوق هو XAUUSD فقط
isGold = syminfo.ticker == "XAUUSD"
// حساب شموع الهايكن آشي
haClose = (open + high + low + close) / 4
var float haOpen = na
haOpen := na(haOpen ) ? open : (haOpen + haClose ) / 2
haHigh = math.max(high, math.max(haOpen, haClose))
haLow = math.min(low, math.min(haOpen, haClose))
// إعداد المعلمات
atr_len = input.int(3, "ATR Length", group="SuperTrend Settings")
fact = input.float(4, "SuperTrend Factor", group="SuperTrend Settings")
adxPeriod = input(2, title="ADX Filter Period", group="Filtering Settings")
adxThreshold = input(2, title="ADX Minimum Strength", group="Filtering Settings")
// حساب ATR
volatility = ta.atr(atr_len)
// حساب ADX يدويًا
upMove = high - high
downMove = low - low
plusDM = upMove > downMove and upMove > 0 ? upMove : 0
minusDM = downMove > upMove and downMove > 0 ? downMove : 0
smoothedPlusDM = ta.rma(plusDM, adxPeriod)
smoothedMinusDM = ta.rma(minusDM, adxPeriod)
smoothedATR = ta.rma(volatility, adxPeriod)
plusDI = (smoothedPlusDM / smoothedATR) * 100
minusDI = (smoothedMinusDM / smoothedATR) * 100
dx = math.abs(plusDI - minusDI) / (plusDI + minusDI) * 100
adx = ta.rma(dx, adxPeriod)
// حساب SuperTrend
pine_supertrend(factor, atr) =>
src = hl2
upperBand = src + factor * atr
lowerBand = src - factor * atr
prevLowerBand = nz(lowerBand )
prevUpperBand = nz(upperBand )
lowerBand := lowerBand > prevLowerBand or close < prevLowerBand ? lowerBand : prevLowerBand
upperBand := upperBand < prevUpperBand or close > prevUpperBand ? upperBand : prevUpperBand
int _direction = na
float superTrend = na
prevSuperTrend = superTrend
if na(atr )
_direction := 1
else if prevSuperTrend == prevUpperBand
_direction := close > upperBand ? -1 : 1
else
_direction := close < lowerBand ? 1 : -1
superTrend := _direction == -1 ? lowerBand : upperBand
= pine_supertrend(fact, volatility)
// فلتر التوقيت (من 8 صباحاً إلى 8 مساءً بتوقيت العراق UTC+3)
withinSession = time >= timestamp("Asia/Baghdad", year, month, dayofmonth, 8, 0) and time <= timestamp("Asia/Baghdad", year, month, dayofmonth, 20, 0)
// إشارات الدخول مع فلتر ADX والتوقيت
validTrend = adx > adxThreshold
longEntry = ta.crossunder(dir, 0) and isGold and validTrend and withinSession
shortEntry = ta.crossover(dir, 0) and isGold and validTrend and withinSession
// وقف الخسارة والهدف
pipSize = syminfo.mintick * 10
takeProfit = 150 * pipSize
stopLoss = 150 * pipSize
// حساب الأهداف والستوب بناءً على شمعة الدخول (haClose للشمعة الحالية)
longTP = haClose + takeProfit
longSL = haClose - stopLoss
shortTP = haClose - takeProfit
shortSL = haClose + stopLoss
// إشارات الدخول
plotshape(series=longEntry, location=location.belowbar, color=color.green, style=shape.labelup, title="BUY")
plotshape(series=shortEntry, location=location.abovebar, color=color.red, style=shape.labeldown, title="SELL")
// رسم خطوط الأهداف ووقف الخسارة عند بداية الشمعة التالية للإشارة
if longEntry
line.new(bar_index, haClose + takeProfit, bar_index + 10, haClose + takeProfit, color=color.green, width=2, style=line.style_dashed)
line.new(bar_index, haClose - stopLoss, bar_index + 10, haClose - stopLoss, color=color.red, width=2, style=line.style_dashed)
if shortEntry
line.new(bar_index, haClose - takeProfit, bar_index + 10, haClose - takeProfit, color=color.green, width=2, style=line.style_dashed)
line.new(bar_index, haClose + stopLoss, bar_index + 10, haClose + stopLoss, color=color.red, width=2, style=line.style_dashed)
// إضافة تنبيهات
alertcondition(longEntry, title="Buy Alert", message="Gold Scalping - Buy Signal!")
alertcondition(shortEntry, title="Sell Alert", message="Gold Scalping - Sell Signal!")
Supply/Demand Zones - Fixed v3 (Cross YES Only)This Pine Script indicator creates Supply/Demand Zones with specific filtering criteria for TradingView. Here's a comprehensive description:
Supply/Demand Zones -(Cross YES Only)
Core Functionality
Session-Based Analysis: Identifies and visualizes price ranges during user-defined time sessions
Cross Validation Filter: Only displays zones when the "Cross" condition is met (Open and Close prices cross the mid-range level)
Real-Time Monitoring: Tracks price action during active sessions and creates zones after session completion
Key Features
Time Range Configuration
Customizable session hours (start/end time with minute precision)
Timezone support (default: Europe/Bucharest)
Flexible scheduling for different trading sessions
Visual Elements
Range Border: Dotted outline showing the full session range (High to Low)
Key Levels: Horizontal lines for High, Low, and Mid-range levels
Sub-Range Zones: Shaded areas showing Open and Close price zones
Percentage Labels: Display the percentage of range occupied by Open/Close zones
Active Session Background: Blue background highlighting during active sessions
Smart Filtering System
Cross Condition: Only creates zones when:
Open < Mid AND Close > Mid (bullish cross), OR
Open > Mid AND Close < Mid (bearish cross)
This filter ensures only significant price movements that cross the session's midpoint are highlighted
Customization Options
Display Controls: Toggle visibility for borders, lines, zones, and labels
Color Schemes: Full color customization for all elements
Transparency Settings: Adjustable transparency for zone fills
Text Styling: Configurable label colors and information display
Technical Specifications
Maximum capacity: 500 boxes, 500 lines, 200 labels
Overlay indicator (draws directly on price chart)
Bar-time based positioning for accurate historical placement
Use Cases
Supply/Demand Trading: Identify key price levels where institutions may have interest
Session Analysis: Understand price behavior during specific trading hours
Breakout Detection: Focus on sessions where price crosses significant levels
Support/Resistance: Use range levels for future trade planning
What Makes It Unique
The "Cross YES Only" filter ensures that only meaningful price sessions are highlighted - those where the market shows directional bias by crossing from one side of the range to the other, indicating potential institutional interest or significant market sentiment shifts.
Institutional PA EngineInstitutional Price Action Pine Script for TradingView
This script framework is for advanced traders seeking to automate and visually structure institutional trading concepts—Order Blocks (OB), Liquidity Sweeps, Volume Spikes, and Fair Value Gaps (FVG)—for pinpointing entries, stop-loss, and take-profit targets.
Core Strategy Concepts
• Order Blocks: Institutional order footprints to act as entry/retest zones.
• Liquidity Sweeps: Identifies stop-loss hunting by price spiking through swing highs/lows, then reversing.
• Volume Spikes: Confirms entries where institutional activity is likely.
• Fair Value Gaps: Untraded imbalanced zones, used as magnets for price targets or further entries.
ABLSGroup TechThis script will display SMA and gap detector on charts, also pivot points and many more. Good for technical analyze
Custom MA Crossover with Labels/*
This indicator displays two customizable moving averages (Fast and Slow),
defaulting to 10-period and 100-period respectively.
Key Features:
- You can choose between Simple Moving Average (SMA) or Exponential Moving Average (EMA).
- When the Fast MA crosses above the Slow MA, a green "BUY" label appears below the candle.
- When the Fast MA crosses below the Slow MA, a red "SELL" label appears above the candle.
- Alerts are available for both Buy and Sell crossovers.
Usage:
- Helps identify trend direction and potential entry/exit points.
- Commonly used in trend-following strategies and crossover systems.
- Suitable for all timeframes and assets.
Tip:
- You can adjust the Fast and Slow MA periods to fit your trading strategy.
- Try using this with volume or momentum indicators for confirmation.
*/
Pajinko - Buy/Sell + Div Alerts (Indicator)Trade more accurately with this template made for Cyborg EA users!
Real-time entry points with MSL and custom zones to match the system.
Free for all Cyborg users – full guide & support here: lin.ee
Super SharkThis script plots the 200-period Exponential Moving Average (EMA) on the main chart, helping traders identify the long-term trend direction.
It is suitable for trend following and support/resistance analysis.
Trade what you see, Not what you think
Gold 1 Min EMA Crossover & Retrace (Full Version)this is for 1mints gold indecator Established Trend: Price is trading below the EMA zone. The dashboard shows a "BEARISH" MA Stack and Trend Confirm.
The Retrace: Price attempts a weak rally and the high of a candle pushes up into the blue EMA Zone. This zone is now acting as dynamic resistance.
The Entry Trigger: The rally fails. A bearish candle forms and closes back below the fast EMA, confirming the zone has held as resistance.
Confluence: The dashboard confirms all bearish conditions are aligned at this moment. This triggers your buySignal to enter a short position, anticipating the price will continue its downward trend.
THF Buy/Sell Signal Crossover and Trend Signals Golden CrossIndicator Explanation:
The "THF Buy/Sell and Golden Cross/Death Cross" indicator is designed to provide trend signals using EMA (Exponential Moving Averages) and SMA (Simple Moving Averages), with a focus on Golden Cross and Death Cross patterns. It also includes Buy and Sell signals based on crossovers of these moving averages. This indicator aims to assist traders in identifying trend changes, potential entry/exit points, and overall market momentum.
Key Features:
1. Exponential Moving Averages (EMA):
EMA 21 (Green): A short-term moving average that responds more quickly to price changes.
EMA 50 (Yellow): A medium-term moving average used to capture intermediate trends.
2. Simple Moving Averages (SMA):
SMA 50 (Red): A longer-term moving average, often used to identify the overall market trend.
SMA 200 (Blue): A key long-term moving average, helping identify major trend shifts in the market.
3. Buy and Sell Signals:
Buy Signal: Triggered when the EMA 21 crosses above the SMA 50 (bullish crossover). This indicates potential buying opportunities.
Sell Signal: Triggered when the EMA 21 crosses below the SMA 50 (bearish crossover), suggesting potential selling opportunities.
4. Golden Cross (Bullish Trend Reversal):
Occurs when EMA 50 crosses above SMA 200. It signals a potential long-term bullish market trend.
Golden Cross is highlighted on the chart with a yellow label to indicate the event.
5. Death Cross (Bearish Trend Reversal):
Occurs when EMA 50 crosses below SMA 200. It suggests a potential bearish market trend.
Death Cross is highlighted with a blue label on the chart to indicate the event.
6. Volume Moving Average:
The volume moving average (based on a 20-period default) is plotted to show the average trading volume.
Volume bars are color-coded (green for high volume, red for low volume) to show when the volume is increasing or decreasing compared to the moving average.
How to Use:
Buy Signal: Look for green labels marked "BUY" when the EMA 21 crosses above the SMA 50.
Sell Signal: Watch for red labels marked "SELL" when the EMA 21 crosses below the SMA 50.
Golden Cross: A yellow label will indicate when the EMA 50 crosses above the SMA 200, signaling potential long-term upward momentum.
Death Cross: A blue label appears when the EMA 50 crosses below the SMA 200, suggesting potential long-term downward pressure.
Volume: Pay attention to the volume bars. High volume (green bars) suggests strong momentum, while low volume (red bars) might indicate weak trends.
Ideal for:
Trend-following traders: This indicator helps identify trend reversals and provide buy/sell signals.
Traders focusing on major trend changes: The Golden and Death Cross signals can help spot long-term bullish or bearish trends.
Volume traders: The volume bars and volume moving average help validate price moves and momentum.
Benefits:
Clear visual signals for buy, sell, golden cross, and death cross events.
Color-coded volume to indicate strong or weak market momentum.
Helps identify trend changes using both short-term and long-term moving averages.
THF Crossover and Trend Signals Golden & Death Cross with VolumeScript Overview:
This Pine Script is designed to assist traders in identifying key buy/sell signals and major trend changes on the chart using Exponential Moving Averages (EMA) and Simple Moving Averages (SMA), as well as visualizing Golden Cross and Death Cross events. The script also includes a volume indicator to highlight the volume trading activity in relation to the price movements.
Key Features:
1. Moving Averages:
EMA 21: Exponential Moving Average over a 21-period, shown in green.
EMA 50: Exponential Moving Average over a 50-period, shown in yellow.
SMA 50: Simple Moving Average over a 50-period, shown in red.
SMA 200: Simple Moving Average over a 200-period, shown in blue.
2. Signals:
Buy Signal: Generated when EMA 21 crosses above SMA 50, indicating a potential upward trend. Displayed with a green label below the price bar.
Sell Signal: Generated when EMA 21 crosses below SMA 50, indicating a potential downward trend. Displayed with a red label above the price bar.
3. Golden Cross (Bullish Trend):
A Golden Cross occurs when EMA 50 crosses above SMA 200, which often signals the start of a long-term upward trend. The signal is displayed with a yellow label below the price bar.
4. Death Cross (Bearish Trend):
A Death Cross occurs when EMA 50 crosses below SMA 200, which often signals the start of a long-term downward trend. The signal is displayed with a blue label above the price bar.
5. Volume Indicator:
The volume is plotted as colored columns. Green indicates higher volume than the 20-period moving average, and red indicates lower volume.
A Volume Moving Average (SMA 20) is also plotted to compare volume changes over time.
How the Script Works:
1. The EMA and SMA lines are plotted on the chart, providing a visual representation of the short- and long-term trends.
2. Buy/Sell signals are triggered based on the crossover between EMA 21 and SMA 50, helping to identify potential entry and exit points.
3. The Golden Cross and Death Cross indicators highlight major trend reversals based on the crossover between EMA 50 and SMA 200, providing clear visual cues for long-term trend changes.
4. Volume is displayed alongside price movements, offering insight into the strength or weakness of a trend.
Key Customizations:
Moving Average Periods: Users can modify the lengths of the EMAs and SMAs for customized analysis.
Volume Moving Average Period: The script allows for adjustment of the volume moving average period to suit different market conditions.
Signal Visibility: The size and color of the buy, sell, Golden Cross, and Death Cross signals can be easily customized to make them more prominent on the chart.
Conclusion:
This script is ideal for traders looking to combine price action with volume analysis, using key technical indicators such as EMA, SMA, Golden Cross, and Death Cross to make informed decisions in trending markets.
---
This explanation covers all aspects of the script and provides a clear understanding of its functionality, which is helpful for sharing the script or using it as an educational resource.
Black ArrowExpected Move Levels - Closer Prices
This script calculates and displays the expected move based on Implied Volatility (IV) and Days to Expiration (DTE). It helps traders visualize potential price movement ranges over a defined period using historical close price.
🔹 Key Features:
Customizable IV and DTE inputs
Displays 2 green levels above price and 2 red levels below, representing half and full expected move
Mid-lines between base price and first green/red level
Each level is labeled with its price value
Lines are drawn short and don't extend through the full chart for clarity
📘 Formula:
Expected Move = Price × IV × √(DTE / 365)
Use this tool to estimate market volatility zones and potential price targets without relying on traditional indicators.
OBV Oscillator with Divergence CirclesCredit to original code from the 'PPO Divergence alerts' by Scarf and OBV Oscillator by LazyBear is used as the input.
Replication of Lunndi 'OBV Divergence Alerts (BETA)' script with additional divergence logic implemented.
OBV-based divergence logic adapted from RSI divergence logic added in addition to existing divergence logic.
Modify length and smoothing to suit your trading style. Open source free for use.
Constraints with Breach ProbabilityATR Constraint Breach Probability
This indicator looks back on prior days to determine what percentage of days the price breached a specific ATR band.
Settings allow you to change:
*ATR length and multiplier
*Pin start time (Central time), ie. the time that the ATR line is "set"
*Pin end time (Central time), ie. the time that we stop watching for a breach
*Table location on your chart
*Lookback days - how many days does it take into historic view for probability percentage calc
To Do:
Add a VIX filter - ie. if VIX Is > 17 for example, then ignore those days in the breach calc.
Add time zone mod so user can select their zone
Other suggestions? Comment below :)
Disclaimer: The information shown by this indicator is for general informational and educational purposes only and should not be construed as financial advice. All investment decisions are solely the responsibility of the user.
AARAMBH_GANNV9 Gann Breakout Indicator System —
What It Does:
This advanced multi-indicator trading system helps you identify high-probability breakout and breakdown trades using a combination of:
✅ Gann Levels
✅ Candlestick Confirmation
✅ RSI (Relative Strength Index)
✅ ADX (Average Directional Index)
✅ VBCT (Volume Breakout Confirmation Tool)
✅ ATR (Average True Range)
🔼 Buy Setup (Long Entry):
Enter a buy trade when:
A green candle closes above a key Gann level.
The next green candle breaks above the previous candle's high.
RSI > 50, ADX > 20, VBCT confirms volume, and ATR is stable or rising.
🎯 Entry: Above the breakout candle
🛑 Stop Loss: Below Gann level or candle low
📈 Target: 1:2 risk-reward or next resistance
🔽 Sell Setup (Short Entry):
Enter a sell trade when:
A red candle closes below a Gann level.
The next red candle breaks the previous red candle's low.
RSI < 50, ADX > 20, VBCT confirms volume, and ATR is supportive.
🎯 Entry: Below the breakdown candle
🛑 Stop Loss: Above Gann level or candle high
📉 Target: 1:2 risk-reward or next support
🎓 Included
Full access to the Gann Breakout Indicator for one full year
✅ Free training sessions & updates
✅ Ideal for intraday, swing, or positional trading
✅ Compatible with TradingView
High Volume FocusThis indicator shows high vcolume in blue bars and Highest volume Ever in Red bar. Its based on Nick Schmidt volume view.
HL Sniper RSI Based Buy/SellProfit Sniper RSI is a precision-engineered indicator that generates high-confidence Buy and Sell signals by dynamically interpreting the Relative Strength Index (RSI) across five market zones. It is designed to reduce signal noise and avoid false breakouts using a combination of crossover logic, zone validation, and trend sentiment detection.