تنبؤ حركة الشارت (حجم وخطوط اتجاه)A forecast for the movement of the prices is helpful to add to the peviouse indicator
Bands and Channels
MEAN X VIBRATION(dynammic)This is a base example for using mean reversion in trading. the probability of sellers coming in on the 1.9-2.4 band is highly likely . use 1.2-0.9 as a smaller vibration.
key note universal laws are used in this. those who can see will see.
NFP RangesThis simple indicator will mark the high and low prices during NFP days. You an choose how many NFP days you want to go back and a gradient to use for the levels.
The NFP dates are hard coded from 2023 through 2029. If this script survives past 2029, it should be simple to add more dates.
TRADER_3DThis indicator is derived from the sum of moving averages. Price charts sometimes react to the areas of this indicator. You cannot rely on this indicator alone and enter a trade only by reacting to these bands. This is wrong and will lower your win rate. Instead, wait for the remaining conditions to form before entering a trade, for example with full-body candles or a multi-time frame look.
9AM–11AM NAS100 Session Box//@version=5
indicator("9AM–11AM NAS100 Session Box", overlay=true)
// Define session times in New York (EST)
session_start = timestamp("America/New_York", year, month, dayofmonth, 09, 0)
session_end = timestamp("America/New_York", year, month, dayofmonth, 11, 0)
// Detect if we're inside the session window
in_session = (time >= session_start) and (time < session_end)
// Track high/low of the session
var float session_high = na
var float session_low = na
if (in_session)
session_high := na(session_high) ? high : math.max(session_high, high)
session_low := na(session_low) ? low : math.min(session_low, low)
else
session_high := na
session_low := na
// Draw the session box
bgcolor(in_session ? color.new(color.blue, 85) : na)
// Optionally draw lines at session high/low
plot(in_session ? session_high : na, title="Session High", color=color.green, linewidth=1)
plot(in_session ? session_low : na, title="Session Low", color=color.red, linewidth=1)
Dhokiya's 0.09% IndicatorThis is a custom indicator for predicting the levels on NSE:NIFTY chart for day trading. More strategy details will be updated soon.
(WIP)
- Rahul Dhangar
Leveraged Liquidation ZonesOVERVIEW
This indicator estimates potential liquidation zones based on leveraged positions (25x, 50x, 75x, 100x). It visually displays upper and lower bounds for each leverage tier, allowing traders to infer areas where the market might be seeking liquidity.
CONCEPTS
In leveraged markets, especially crypto derivatives, price often moves towards zones of high liquidation potential — areas where traders using high leverage are likely to be stopped out. These zones represent concentrations of liquidity that can serve as targets for price movement.
This script models simplified liquidation areas by calculating the price range within which positions using specific leverage levels would be at risk, assuming no maintenance margin and using the previous candle close as a reference.
FEATURES
Visual zones for 25x, 50x, 75x, and 100x leverage levels.
Customizable visibility and colors for each leverage tier.
Real-time zone calculation based on the previous candle close.
Simple and clean design to overlay directly on price action.
USAGE
Use this tool to identify areas of liquidity accumulation or potential price magnet zones. High-leverage liquidations often lead to volatile movements when triggered, so tracking these zones can help anticipate breakout or reversal behavior.
You can toggle individual leverage levels via the settings panel, and adjust color transparency to suit your chart theme. This tool is most effective when combined with volume spikes, order book analysis, or high-frequency behavior.
Breakout with ATR & Volume Filter🚀 Introducing Our New Breakout Strategy: Powerful Signals with ATR & Volume Filters
Designed specifically for the fast and volatile crypto markets, this breakout strategy delivers robust signals on Bitcoin’s 15-minute charts.
🌟 Key Features:
ATR filter ensures entries only during high volatility periods, reducing false signals.
Volume confirmation captures strong and reliable breakouts.
20-period support/resistance breakout levels identify early trend moves.
Scientifically optimized stop loss and take profit levels provide effective risk management.
Simple, clear, and effective — ideal for both beginners and professional traders.
🔥 Why Choose This Strategy?
It filters out market noise and focuses on genuine momentum moves, increasing your chances of success by leveraging real-time volatility and volume conditions.
📈 How to Use
Easily deploy on TradingView with customizable parameters. Perfect for traders who need quick, confident decisions in crypto markets.
Get closer to success in BTC trading with reliable signals and smart risk management!
EMA 9/21 Crossover Indicator w/ ADX Filter9 and 21 EMA cross over showing buy and sell signals when the ADX is above 20. This is scalping strategy but does work on all time frame. Best used in a trending market
Simple 20 SMAThe Simple 20 SMA is a technical analysis indicator that calculates the average closing price of an asset over the last 20 candles (bars). It smooths out short-term price fluctuations to help traders identify the overall trend direction.
How It Works:
It takes the last 20 closing prices, adds them together, and divides by 20.
The result is plotted as a smooth line on the chart, updating with each new candle
First 15 Min High/Low//@version=5
indicator("First 15 Min High/Low", overlay=true)
// Define the session start time (adjust according to your market)
startHour = 9
startMinute = 30
endMinute = startMinute + 15
// Track the first 15 minutes of the day
isFirst15 = (hour == startHour and minute >= startMinute and minute < endMinute)
// New day logic
newDay = ta.change(time("D"))
// Hold values
var float first15High = na
var float first15Low = na
var bool isLocked = false
// Capture high/low during first 15 min
if newDay
first15High := na
first15Low := na
isLocked := false
if isFirst15 and not isLocked
first15High := na(first15High) ? high : math.max(high, first15High)
first15Low := na(first15Low) ? low : math.min(low, first15Low)
if not isFirst15 and not isLocked and not na(first15High) and not na(first15Low)
isLocked := true
// Plot
plot(isLocked ? first15High : na, title="First 15 Min High", color=color.green, linewidth=2, style=plot.style_line)
plot(isLocked ? first15Low : na, title="First 15 Min Low", color=color.red, linewidth=2, style=plot.style_line)
EMA 9/21 Crossover Indicator w/ Shading9 and 21 ema cross over with buy and sell signals. No close signal so you will need to trail your stop manually
高级超买超卖 & 变盘信号Very interesting indicator, normalised with four overbought and oversold algorithms, plus a change alert. It's very practical.
Volume Weighted Average PriceTitle: VWAP with Confirmed Breakout Color Shift
Description:
This is an enhanced Volume Weighted Average Price (VWAP) indicator that dynamically changes color based on confirmed price breakouts above or below the VWAP line.
✅ Green VWAP line indicates a strong bullish move (price has broken above VWAP by at least 0.2%).
🔻 Red VWAP line signals a bearish move (price has dropped below VWAP by at least 0.2%).
⚪️ Neutral gray is used when price is near VWAP without clear breakout confirmation.
Includes optional upper/lower bands based on either standard deviation or percentage distance from VWAP.
Ideal for identifying market bias and confirming momentum shifts in real time.
SymFlex Band - MAD, RSI, ATRSymFlex Band-No2.
Adaptive band indicator using MAD, RSI and ATR – for flexible volatility & momentum analysis.
SymFlex Band is a flexible, multi-source band indicator that combines three dynamic metrics:
✅ MAD Band – Median Absolute Deviation-based range band
✅ RSI Momentum Band – Adaptive envelope using RSI deviation and trend bias
✅ ATR Band – Classic Average True Range-based volatility band
📌 Features
- Selectable band types (individually toggled)
- Configurable moving average for center line (EMA, SMA, TEMA, DEMA, Zero-lag variants)
- Dynamic distance and breakout tracking
- Automatic nearest band detection
- Real-time correlation table between bands
This tool helps identify price location relative to statistically adaptive bands, making it easier to detect breakout conditions, mean-reversion zones, and trend-following opportunities.
🚫 Note: This version is an indicator only. Strategy logic and entry triggers have been removed for publication clarity.
📊 Multi Bollinger Bands (4 sets)Made for people who want to use Multi Bollinger Bands.
By Charles SUNG.
Correlation & Mean Reversion - Paired Stocks/ETFs TradingThis indicator is designed to analyze pair trading opportunities between two assets by evaluating:
🔧 Core Features
1. Symbol Pair Analysis
Takes two input symbols (Symbol A, Symbol B).
Calculates the price ratio (A/B) and compares it to a user-defined targetRatio.
2. Z-Score of Ratio
Computes Z-Score of the ratio over a user-defined lookback window to measure how far the ratio deviates from its mean.
This gauges whether the ratio is likely to revert to the mean.
3. Reversion Probability
Applies a normal CDF approximation to Z-Score to estimate the probability of mean reversion.
Flags moderate (80%+) and strong (95%+) reversion signals.
4. Correlation
Calculates the rolling correlation of log returns between Symbol A and Symbol B.
Useful to confirm if the assets historically move together.
Simple Bollinger BandsBollinger Bands are a popular technical analysis indicator used to measure market volatility and identify potential overbought or oversold conditions.
This script plots:
A middle band (20-period Simple Moving Average)
An upper band (SMA + 2 standard deviations)
A lower band (SMA – 2 standard deviations)