Multi-TF Bullish Dashboard ✅🔼back test gives good results but try the indicator and give me the feedback
Moving Averages
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!"
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.
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
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.
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
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.
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
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.
MOM Buy/Sell + MACD Histogram Signal TableJarmo script ETGAG to be used for chart analysis
Meant to assist with determining how to choose direction
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.
Multiplied and Divided Moving Average
Customize Settings:
Access the indicator settings to adjust:
MA Type (SMA, EMA, WMA, VWMA, RMA)
MA Length (default: 14)
Multiply Factor (default: 5.0)
Divide Factor (default: 5.0)
Source (default: close)
Show Buy/Sell Labels (default: enabled)
Blue line: Base moving average.
Green line: Moving average multiplied by the specified factor.
Red line: Moving average divided by the specified factor.
"Buy" label: Appears when price crosses below the red line (potential oversold signal).
"Sell" label: Appears when price crosses above the green line (potential overbought signal).
The Buy/Sell labels are based on price crossing the multiplied/divided lines, which may produce signals in volatile markets. Test the indicator in your trading context to ensure it aligns with your strategy.
The showLabels toggle allows you to declutter the chart if desired.
Daily 50‑ & 200‑SMA Ceiling Radar — EnhancedDescription:
This custom TradingView indicator, developed by Trader Malik and licensed under Trades Per Minute, is a powerful visual tool for identifying how price behaves relative to major daily moving averages — the 50-SMA and 200-SMA. It helps traders quickly understand key technical dynamics such as trend alignment, MA proximity, and short-term momentum sentiment — all displayed on a clean, minimal overlay with visual alerts and an adjustable data table.
FEATURES
1. Daily 50 & 200 Simple Moving Averages (SMA):**
- Displayed directly on the chart using distinct blue and orange lines.
- These serve as primary trend filters and support/resistance zones.
2. Price Highlighting:
- A red background flashes momentarily when the price crosses either the 50-SMA or 200-SMA.
- A green background fills the chart when price is above both MAs (bullish zone).
- A red background persists if price is below both MAs (bearish zone).
3. MA Gap Analysis Table:
- 50-SMA Row**: Shows % gap between 50-SMA and 200-SMA.
- 200-SMA Row**: Shows % gap between 200-SMA and 50-SMA.
- Sentiment Row**: Displays short-term trend bias based on the slope of the past 7 daily closes — Bullish, Neutral, or Bearish.
USER SETTINGS
Table Location: Choose between **Top Right** or **Bottom Right** of the chart.
Table Size: Select **Small**, **Medium**, or **Large** to suit screen preferences and layout aesthetics.
This script is **intellectual property of Trades Per Minute** and distributed by **Trader Malik** for use under licensing terms. Redistribution or repurposing without authorization is strictly prohibited.
SMA - ATR with Dual SMAs + Candle Body Inside SignalsSMA - ATR with Dual SMAs + Candle Body Inside Signals
AlgoTradar MACD (Auto-Optimized)This is the AlgoTradar MACD Optimized indicator, a finely-tuned tool based on the classic MACD crossover strategy.
The script is designed to provide clear, actionable signals for both manual and automated trading systems.
How to Use
Apply to Chart: For the best results, apply this indicator to your chart on the 8-hour (8H) timeframe. Using it on other timeframes may produce less reliable signals as the parameters are tailored for 4H, 8H, 1D, 1W, 1M.
Interpret the Signals:
🚀 BUY Signal: A green "BUY" label appears when the blue MACD line crosses above the orange Signal line. This indicates potential bullish momentum.
📉 SELL Signal: A red "SELL" label appears when the blue MACD line crosses below the orange Signal line. This indicates potential bearish momentum.
Confirmation is Key: This indicator should not be used in isolation. Always use it in conjunction with other analysis methods, such as trend lines, support and resistance levels, or other indicators, to confirm signals before entering a trade.
AlgoTradar MACD (Auto-Optimized)Description
This is the AlgoTradar MACD (8H Optimized) indicator, a finely-tuned tool based on the classic MACD crossover strategy.
The script is designed to provide clear, actionable signals for both manual and automated trading systems.
How to Use
Apply to Chart: For the best results, apply this indicator to your chart on the 8-hour (8H) timeframe. Using it on other timeframes may produce less reliable signals as the parameters are tailored for 8H.
Interpret the Signals:
🚀 BUY Signal: A green "BUY" label appears when the blue MACD line crosses above the orange Signal line. This indicates potential bullish momentum.
📉 SELL Signal: A red "SELL" label appears when the blue MACD line crosses below the orange Signal line. This indicates potential bearish momentum.
Confirmation is Key: This indicator should not be used in isolation. Always use it in conjunction with other analysis methods, such as trend lines, support and resistance levels, or other indicators, to confirm signals before entering a trade.