Multi-TF Bullish Dashboard ✅🔼back test gives good results but try the indicator and give me the feedback
Moving Averages
Hull MA + ADX (Manual) Trend FilterA basic Hull MA with adx imbedded that highlights green or red based on trend direction. The highlight doesn't initiate until the adx is above 20.
Multi Indicator Version 2This Pine Script combines multiple technical indicators into one TradingView overlay: two EMAs (High/Low), Supertrend, VWAP with flexible anchoring (e.g., Session, Week, Earnings), previous day’s high/low for intraday analysis, and RSI-based visual cues. The Supertrend dynamically shades the background based on trend direction and generates alerts on trend changes. VWAP visibility can be toggled and is hidden on daily or higher timeframes if desired. RSI stars indicate overbought (above 70) and oversold (below 30) conditions. This comprehensive tool aids traders in identifying market trends, momentum, and key support/resistance levels for better decision-making.
SuperTrend Touch SignalsAlwin's Magic
"Bro I’ve cooked up a trading magic using Supertrend 😎
It literally tells me when to buy and when to sell — like green means go, red means run! Been testing it and damn, it's 🔥🔥🔥
Need to make it automatic next!"
SHMA Quantique – Schrödinger Moving AverageAn experimental moving average inspired by the Schrödinger model. Reacts to momentum and filters noise on small timeframes. Ideal for scalping. 1 minute and up.
10/50 EMA Cloud + 21 EMA + VWAP + FractalsThis indicator is designed for active traders and combines several popular technical analysis tools into a single, easy-to-use overlay. It helps traders identify trend direction, dynamic support and resistance, and potential reversal points, all while providing optional fractal signals for added clarity.
Features and Components
1. EMA Cloud (10/50 EMA)
10-period EMA (Exponential Moving Average): Tracks short-term price momentum.
50-period EMA: Represents a longer-term trend.
Cloud Visualization: The area between the 10 and 50 EMA is filled with color:
Green cloud when the 10 EMA is above the 50 EMA, signaling bullish momentum.
Red cloud when the 10 EMA is below the 50 EMA, signaling bearish momentum.
Purpose: Quickly visualize the prevailing trend and potential trend shifts.
2. 21-period EMA
21 EMA: Plotted as a blue line, this moving average is widely used to gauge intermediate-term trend and dynamic support/resistance.
Purpose: Acts as a reference for trend-following entries and exits.
3. VWAP (Volume Weighted Average Price)
VWAP Line: Plotted in orange, VWAP gives the average price weighted by volume for the session.
Purpose: Useful for identifying fair value, potential bounce/reversal zones, and institutional interest levels.
4. Fractals (Toggleable)
User Option: A setting allows the user to turn fractal signals on or off.
Fractal Logic: Uses a 5-bar pattern:
Up Fractal: Plots a green triangle above the bar if the high of the middle bar (2 bars ago) is higher than the highs of the two bars before and after.
Down Fractal: Plots a red triangle below the bar if the low of the middle bar (2 bars ago) is lower than the lows of the two bars before and after.
Purpose: Highlights potential short-term reversal points or swing highs/lows.
5. Volume Bars
Volume Histogram: Plotted in gray at the bottom of the chart.
Purpose: Provides context for price action, helping to confirm breakouts or identify exhaustion.
How to Use This Indicator
Trend Identification: Use the EMA cloud and 21 EMA to determine the prevailing trend. Trade in the direction of the cloud color and EMA alignment.
VWAP Strategies: Look for price reactions at the VWAP for possible rebounds, breakouts, or reversals.
Fractal Signals: Enable fractals to spot potential reversal zones or to fine-tune entries/exits at swing points.
Volume Confirmation: Use volume bars to validate the strength of moves, especially near key EMAs or VWAP.
Customization
Fractals On/Off: Easily toggle fractal signals in the indicator settings to reduce chart clutter or focus on other signals as needed.
8/21 EMA Early Buy/Sell + Golden CrossThis is a a really easy 8/21 EMA Buy/Sell Indicator with a Golden/Death Cross warning plus the ability to adjust and add Early Buy/Sell's
How it works:
Standard BUY/SELL: 8/21 EMA cross as usual.
EARLY SELL: After a strong price up move, EMA8 still above EMA21, and EMA8 turns down.
EARLY BUY: After a strong price down move, EMA8 still below EMA21, and EMA8 turns up.
Golden/Death Cross: From daily 50/200 SMA.
Recommended Colours:
8 EMA Red
21 EMA Blue
50 SMA Purple
200 SMA White
EMA Crossover with ArrowPlots two EMAs with a shape to indicate when the short EMA crosses over the long EMA.
Customizable settings
Short/Long EMA duration
Shape Type/Color/Position
250710 Momentum Buy TriggerWhat It Does (Step by Step)
Sets Up a Moving Average
Calculates a 200-period Simple Moving Average (SMA) of the closing price.
You can change the period by adjusting the maPeriod input.
Calculates Momentum with MACD Histogram
Uses MACD (Moving Average Convergence Divergence) with standard settings:
Fast EMA: 12
Slow EMA: 26
Signal Line: 9
Subtracts the signal line from the MACD line to get the MACD histogram (a momentum indicator).
Defines a Buy Signal
The script checks two conditions:
Price is below the 200-period SMA → suggesting the asset is undervalued.
MACD histogram is rising (i.e., current value is greater than the previous bar) → suggesting bullish momentum is starting.
If both are true on the same bar, a "Buy" signal is generated.
Friedrich IndicatorThis indicator visualizes trend zones using two Exponential Moving Averages (EMAs) with user-defined lengths (default 32 and 58). It identifies bullish and bearish trends based on the relationship between the shorter and longer EMA and confirms these trends only after they persist for a specified number of bars (confirmBars).
Bullish zone (green): When the shorter EMA remains above the longer EMA for at least the confirmation number of bars, both EMAs and the area between them are colored green, indicating a confirmed upward trend.
Bearish zone (red): When the shorter EMA stays below the longer EMA for at least the confirmation bars, EMAs and the filled zone turn red, signaling a confirmed downward trend.
Neutral zone (white): Before the trend confirmation, the EMAs and the area between are colored white with transparency, representing an unconfirmed or neutral state.
The area between the two EMAs is filled with the respective color, providing an intuitive visual cue of market momentum and trend strength directly on the price chart.
moh1//@version=6
indicator("moh1", overlay=true)
// === الإعدادات ===
length = input.int(20, title="عدد الشموع (حساسية الاتجاه)")
src = input.source(close, title="مصدر السعر")
maType = input.string("EMA", title="نوع المتوسط", options= )
// الألوان
colorUp = input.color(color.green, title="لون الاتجاه الصاعد")
colorDown = input.color(color.red, title="لون الاتجاه الهابط")
colorSide = input.color(color.yellow, title="لون الاتجاه العرضي")
sensitivity = input.float(0.1, title="حساسية الاتجاه العرضي (%)", minval=0.01)
// === حساب المتوسط ===
ma = maType == "EMA" ? ta.ema(src, length) : ta.sma(src, length)
// === تحليل الاتجاه ===
ma_slope = ma - ma
slope_pct = ma_slope / ma * 100
trendColor = slope_pct > sensitivity ? colorUp :
slope_pct < -sensitivity ? colorDown :
colorSide
// === رسم الخط المتغير اللون ===
plot(ma, title="خط الاتجاه", color=trendColor, linewidth=2)
7 EMA CloudAdvanced 7 EMA Cloud – Adaptive Trend & Signal Suite
This script overlays 7 exponential moving averages (EMAs) and dynamically fills the space between them with visual “clouds” that help you quickly assess trend strength, direction, and momentum alignment.
🔧 Features:
7 Customizable EMAs – Standard periods (8, 13, 21, 34, 55, 89, 144) with individual color-coded lines
EMA Cloud Fills – Gradient clouds show convergence/divergence between EMAs
Color Modes – Classic (rainbow), Monochrome (grayscale), and Heatmap (trend strength)
Crossover Signals – Alerts and visual markers for EMA1 crossing EMA7
Custom Signal Sizes – Choose from 5 shape sizes for crossover events
Optional Cloud Transparency – Adjustable for clean or bold visuals
SMA Variancegives value between 9 and 20 SMA. looking to create alarm based on decreasing difference
after large gap.
Fempires (9 SMA + 21 EMA)Fempires (9 SMA + 21 EMA) Trading Indikator
This indicator is a simple yet effective trend-following tool based on the relationship between the 9-period Simple Moving Average (SMA) and the 21-period Exponential Moving Average (EMA). It visually highlights bullish and bearish conditions using dynamic color changes and a shaded zone between the two lines.
🔍 How It Works:
Green color indicates that the price is trading above the 21 EMA → Bullish bias
Red color shows that the price is trading below the 21 EMA → Bearish bias
The shaded area between the 9 SMA and 21 EMA helps you quickly identify momentum and potential trend reversals
📈 Ideal For:
Trend-following strategies
Entry/exit confirmation
Visual clarity in fast-moving markets
⚙️ Settings:
9-period SMA (fast trend)
21-period EMA (slow trend)
No complicated signals – just clear, visual guidance for intraday, swing, or scalping trades.
MOM Buy/Sell + MACD Histogram Signal TableJarmo script ETGAG to be used for chart analysis
Meant to assist with determining how to choose direction
Universal 10 MA be @cryptoingenerUniversal Multi MA (10 Moving Averages, Dynamic Colors, Multi-TF, By @CryptoIngener
Short Description (Краткое описание):
Indicator for plotting up to 10 moving averages of any type (SMA, EMA, WMA, HMA, RMA, DEMA, KAMA) on any timeframe, with dynamic coloring and customizable line thickness. Includes a subtle green watermark for copyright.
“This script is provided for educational and informational purposes only.”
Adaptive EMA Optimizer🔍 Adaptive EMA Optimizer
Tired of guessing which EMA works best?
This tool does the testing for you — automatically.
Instead of plotting multiple EMAs and trying to eyeball which one works, Adaptive EMA Optimizer simulates trades for each EMA in a range (e.g. 50–200), and highlights the one that performed best based on return, win rate, and trade count.
It's a clean way to keep just one optimized EMA on your chart — and let the data speak.
⚙️ What it does
Simulates trades for each EMA (buy above, sell below)
Calculates PnL, trade count, and return
Picks the best EMA based on performance
Filters EMAs that don’t meet stability thresholds
Plots only the best EMA — with optional trade signals (for calibration)
🧾 Display Options
Use the Label Display Mode setting to control how much information is shown:
Simple → Just the EMA and its slope (e.g. EMA50 (+31°))
Performance → Adds return %, number of trades, etc.
Full → Includes performance + filter status (RS/RSI pass/fail)
This lets you decide: just keep it clean and minimalist — or dig into detailed stats.
⚠️ Important
Buy/Sell signals are only for backtest visualization. This is not a live strategy.
Filters (RS, RSI) affect trade evaluation — not whether the EMA is plotted.
🛠️ How to Use It
Here’s what you can customize:
📊 EMA Testing Range
Set the start and end EMA period (e.g. 50–200)
Choose step size (e.g. test every 2nd EMA)
⏳ Test Date Filter (optional)
Limit performance calculations to a specific date range
(e.g. “only show EMAs that performed best since Jan 2022”)
📈 Risk Management
Define account size, % risk per trade, and stop loss level
(used for backtest stats — not for live orders)
🔐 Stability Controls
Prevent EMA from switching too often by requiring:
Min # of trades
Min performance improvement (%)
Confirmed outperformance over X bars
Min hold time before exit
📉 Entry Filters
Require RS (relative strength) above a certain value
Require RSI above a threshold
These ensure trades are only counted if trend strength exists
🧪 Trade Signals (Optional)
Turn on simulated buy/sell signals
For testing only — not meant for real-time execution
RNDMandar_RND This indicator give buy sell signal. Mandar_RND This indicator give buy sell signal Mandar_RND This indicator give buy sell signal Mandar_RND This indicator give buy sell signal Mandar_RND This indicator give buy sell signal Mandar_RND This indicator give buy sell signal Mandar_RND This indicator give buy sell signal Mandar_RND This indicator give buy sell signal Mandar_RND This indicator give buy sell signal Mandar_RND This indicator give buy sell signal Mandar_RND This indicator give buy sell signal
[Oscar] OBV with MA & SMA filterBy invitation only.
This script is based on daily on balance volume.
Both MA & SMA can be set as filters for noise.
The bullish trend is indicated with green color; the bearish trend is in red color.
The best buying point should be
1. The SMA has a positive slope;
2. The green line (bullish trend) appears.
OBV with MA & SMA filterBy invitation only.
This script is based on daily on balance volume.
Both MA & SMA can be set as filters for noise.
The bullish trend is indicated with green color; the bearish trend is in red color.
The best buying point should be
1. The SMA has a positive slope;
2. The green line (bullish trend) appears.