RelVolRelative Volume is an indicator of current volume divided by average volume over the lats 10 candle sticks.
Индикаторы и стратегии
9/20 EMA with FVG upOriginal Code written by - GG-EK
Overview
This strategy uses the crossover of the 9 EMA and 20 EMA on the current chart's time frame (preferably 5 minutes) to identify potential trade entries. The system integrates Fair Value Gaps (FVG) on a higher time frame (1 hour) to help set realistic targets.
Entry Criteria
Long Entry:
Condition: The 5Min 9 EMA crosses and closes above the 5Min 20 EMA.
Confirmation: A candle must close above the 5Min 9 EMA after the crossover.
Signal: Once confirmed, the system plots a Long Signal on the chart.
Short Entry:
Condition: The 5Min 9 EMA crosses and closes below the 5Min 20 EMA.
Confirmation: A candle must close below the 5Min 9 EMA after the crossover.
Signal: Once confirmed, the system plots a Short Signal on the chart.
Risk Management
Stop-Loss (SL):
Suggested SL is set at the low (for long trades) or the high (for short trades) of the previous two candles at the time of entry.
Trail the stop-loss as the trade progresses to lock in profits.
Take Profit (TP):
The system uses FVG (Fair Value Gaps) plotted on a 1-hour time frame to estimate the potential target.
Traders are encouraged to hold positions until the target FVG is reached, or adjust their TP based on personal risk-reward preferences.
Additional Features
The system dynamically plots the 9 EMA and 20 EMA on the chart.
FVG zones are marked on the chart, aiding in target visualization.
Signals for long and short entries are visually displayed to simplify trade decisions.
This strategy is designed for traders who prefer systematic, rule-based entries and exits while incorporating advanced concepts like FVG for target estimation.
Upgrades from the original code:
1) EMA of 5Min TF fixed across TF's.
2) Entry condition refined to stick to 5Min EMA's irrespective of respective TF EMA's
3 Moving Averages by Manju3 Moving averages (EMA) for tracking prices with color coding. Please adjust EMAs for your preferences. I have aligned lower EMA close to price tracking.
G8LD N8V8L Flower Approximation and SetupBasically when you see the indicator telling you to get out of the trade you should get out
Bollinger Bands+ VWAP+Super trend by Prashant MohiteBollinger Bands 3 types plus VWAP plus 2 super trends Super trend
1stderivative1st derivative
quadratic regression slope indicator updated for version 6 of trading view
Volume Spike IndicatorThe Volume Spike Indicator is designed to identify significant volume spikes in the market. This tool helps traders recognize unusual trading activity, which may indicate potential reversals, breakouts, or increased volatility. The indicator uses a simple moving average (SMA) of volume over a specified period and highlights bars where the current volume exceeds a multiple of this average.
Features:
Volume SMA Calculation:
The indicator calculates the SMA of volume over a customizable period (default: 20 bars).
Spike Multiplier:
A threshold multiplier (default: 4) determines what qualifies as a "spike."
Spikes occur when the current volume is greater than the SMA multiplied by this threshold.
Visual Alerts:
If a spike is detected, a red cross ( Cross ) and X-shape ( X-Cross ) are plotted above the corresponding bar for easy identification.
How to Use:
Spot High-Activity Areas:
Use this indicator to find points of unusually high trading activity, which can signify key levels or moments of interest in the market.
Adjust Settings for Sensitivity:
Length : Change the SMA period to match your trading timeframe.
Spike Multiplier : Lower values detect smaller spikes; higher values focus on extreme events.
Combine with Other Indicators:
This tool works best when combined with price action analysis, support/resistance levels, or trend indicators to confirm trading signals.
Customization Options:
Length: Number of bars for SMA calculation (default: 20).
Spike Multiplier: Threshold for defining volume spikes (default: 4).
This indicator is suitable for traders looking to enhance their analysis by identifying abnormal market activity.
Simple 5-8-13 StrategyThe Simple 5-8-13 SMA Strategy is a trend-following trading system that uses three Simple Moving Averages (SMA) with periods of 5, 8, and 13. The strategy generates buy signals when the shorter-term moving averages cross above the longer-term ones (specifically when SMA5 > SMA8 > SMA13), indicating an upward trend. Sell signals are generated when the shortest moving average falls below both longer averages (SMA5 < SMA8 and SMA5 < SMA13), suggesting a downward trend. This strategy is designed to work on 15-minute timeframes and aims to capture medium-term price movements. Like all trading strategies, it should be used in conjunction with proper risk management and other technical analysis tools.
9 and 21 EMA CrossoverIndicator using the popular 9 and 21 ema signal. Cross over indicate either long or short.
Daily Trend with ATR Strategy//@version=5
strategy("Daily Trend with ATR Strategy", overlay=true)
// تنظیمات
atrLength = input.int(22, title="ATR Length (Daily)")
atrMultiplier = input.float(3.0, title="ATR Multiplier")
atrH1Length = input.int(24, title="ATR Length (Hourly)")
tolerance = input.float(0.05, title="Tolerance")
// محاسبه ATR روزانه
dailyATR = request.security(syminfo.tickerid, "D", ta.atr(atrLength))
// محاسبه معیار حرکت
moveCriterion = (dailyATR * atrMultiplier) * 0.66
// تعیین روند دیلی
dailyTrendUp = request.security(syminfo.tickerid, "D", close - close >= moveCriterion and ta.change(close ) == ta.change(close ) and ta.change(close ) == ta.change(close ))
dailyTrendDown = request.security(syminfo.tickerid, "D", close - close <= -moveCriterion and ta.change(close ) == ta.change(close ) and ta.change(close ) == ta.change(close ))
// تعیین ناحیه حمایت و مقاومت
resistanceZone = moveCriterion * 0.5
supportZone = moveCriterion * 0.66
// محاسبه ATR ساعتی
hourlyATR = ta.atr(atrH1Length)
// تعیین برخوردها
cond1 = ta.crossover(close, resistanceZone)
cond2 = ta.crossover(close, supportZone)
cond3 = ta.crossunder(close, supportZone)
cond4 = ta.crossunder(close, resistanceZone)
// شناسایی برخوردها با ناحیه
zoneTouches = (cond1 or cond2 or cond3 or cond4)
// بررسی نسبت ATR برخوردها
validTouch = close - open > hourlyATR * (1 + tolerance) or close - open < -hourlyATR * (1 - tolerance)
// شرایط ورود به معامله
longCondition = dailyTrendUp and zoneTouches and validTouch
shortCondition = dailyTrendDown and zoneTouches and validTouch
// ورود به معامله
if (longCondition)
strategy.entry("Buy", strategy.long)
if (shortCondition)
strategy.entry("Sell", strategy.short)
// تنظیم استاپ لاس و تیک پرافیت
stopLoss = hourlyATR
takeProfit = stopLoss * 2
strategy.exit("Exit Buy", from_entry="Buy", loss=stopLoss, profit=takeProfit)
strategy.exit("Exit Sell", from_entry="Sell", loss=stopLoss, profit=takeProfit)
10-Day EMA with 2-Hour Trend Filter - Taylor WelchDirectional on the 2 hour, entry point on the 3 minute.
Candle Close Above/Below Previous High/LowIt's indicator of Candle Close Above/Below Previous High/Low
CLuceSalutemShort Description: This Pine Script combines the Gaussian Moving Average, Stochastic Oscillator, and VWAP to create a versatile trading indicator. It integrates ATR-based trailing stops and Fibonacci levels to enhance decision-making for both trend and momentum traders.
Detailed Description: The Gaussian Stochastic VWAP Strategy is designed for traders seeking a comprehensive tool that identifies trends, momentum shifts, and key price levels. The script features:
Gaussian Moving Average (GMA): Smooths price data for reliable trend detection.
Stochastic Oscillator (%K and %D): Highlights momentum shifts and overbought/oversold conditions.
VWAP with Bands: Tracks volume-weighted price averages with dynamic standard deviation bands for support and resistance.
ATR-Based Trailing Stops: Provides adaptive stop-loss levels for long and short trades.
Fibonacci Levels: Automatically plots key retracement levels for price targets and reversals.
Signal Alerts: Generates buy/sell signals based on stochastic crossovers and Gaussian trend alignment.
This indicator is versatile and works on various timeframes, making it suitable for scalpers, swing traders, and position traders.
Categories
Trend Analysis
The Gaussian Moving Average helps identify the direction of the market trend.
Momentum
Stochastic Oscillator highlights shifts in market momentum, assisting in entry and exit timing.
Support & Resistance
VWAP bands and Fibonacci levels provide clear areas of interest for price action.
30 Minute Buy/Sell with Support & Resistance - MPivot Lookback: Adjust the pivotLookback input to control how sensitive the support and resistance levels are. A higher value identifies stronger levels but fewer signals.
SuperTrend Multiplier: Fine-tune the multiplier for sensitivity to trends.
MACD/RSI Settings: Modify to suit different asset classes or timeframes.
Usage:
Trading with Support/Resistance:
Use the support and resistance levels as potential entry/exit points or stop-loss zones.
Look for confluence between signals and these levels for higher confidence trades.
Backtesting:
Use the TradingView strategy tester to evaluate performance on historical data.
Risk Management:
Incorporate appropriate stop-loss and take-profit strategies based on the levels.
Monthly Vertical Lines//@version=5
indicator("Monthly Vertical Lines", overlay=true)
month_change = (month != month ) // Detects a new month
if month_change
line.new(x1=bar_index, y1=na, x2=bar_index, y2=na, extend=extend.both, color=color.gray, style=line.style_dotted, width=1)
13, 21, 34 SMAs tradewithshamincluded 13,21 and 34 simple moving average for swing trade. use it in day candle
Kagan Daily EMAsThis script plots daily EMAs (5, 8, 13, 21, 34, 55, 89, 144, 233) on any chart, making it perfect for multi-timeframe analysis. You can toggle each EMA on or off and apply optional smoothing to reduce noise. By displaying higher-timeframe daily trends over your current timeframe, you gain quick insight into major support/resistance zones and the broader market context, all in one place.
ATR value for Stop LossThe indicator is supposed to give you a quick look at the ATR multiple for the symbol you are trading. Say, you trade on two minute candle for Intra-day, you know, as soon as you took the trade, where your 2 or 3 times ATR stop loss should be, etc.
You can use this on any time interval, for a quick way to identify the stop loss based on the volatility.
Good luck.
YT @channeldaytrading
FORMULA ENGULFING PATTERN BY SADAF AZMATThis indicator detects Bullish and Bearish Formula Engulfing patterns based purely on price action and volume, without any other technical indicators involved. When a pattern is detected, it visually marks the chart with background color changes and arrows for easy identification.
VWAP and 9 EMA Multi-Timeframe Strategyvwap and 9 ema confluence plus pullback opportunities. using this on 4hr for trend and 15 minute for entries could have favorable results.
Outside Bar Alert4hr Daily and Weekly Outside Engulfing Bar Indicator
Help spot tops and bottoms, trend changes, etc