Custom Combined Indicator: ALMA + TMA + IchimokuA combination of Three indicators into One indicator .
- ALMA
- TMA
- ICHIMOKU
Penunjuk dan strategi
بو عمر//@version=5
indicator("بو عمر", overlay=true)
// SMA 1000 على إطار الدقيقة
sma_1min = request.security(syminfo.tickerid, "1", ta.sma(close, 1000), barmerge.gaps_off, barmerge.lookahead_on)
plot(sma_1min, title=" 1Min", color=color.blue, linewidth=2)
// SMA 1000 على إطار 5 دقائق
sma_5min = request.security(syminfo.tickerid, "5", ta.sma(close, 1000), barmerge.gaps_off, barmerge.lookahead_on)
plot(sma_5min, title=" 5Min", color=color.orange, linewidth=2)
// SMA 1000 على إطار 15 دقيقة
sma_15min = request.security(syminfo.tickerid, "15", ta.sma(close, 1000), barmerge.gaps_off, barmerge.lookahead_on)
plot(sma_15min, title=" 15Min", color=color.green, linewidth=2)
// ====== Labels ======
// نستخدم var حتى لا تُعاد إنشاء الملصقات كل شمعة، بل يتم تحديث موقعها فقط
var label lbl_1min = label.new(x=na, y=na, text="1Min", style=label.style_label_left, color=color.blue, textcolor=color.white)
label.set_xy(lbl_1min, bar_index, sma_1min)
label.set_text(lbl_1min, "1Min ")
label.set_color(lbl_1min, color.blue)
var label lbl_5min = label.new(x=na, y=na, text="5Min", style=label.style_label_left, color=color.orange, textcolor=color.white)
label.set_xy(lbl_5min, bar_index, sma_5min)
label.set_text(lbl_5min, "5Min")
label.set_color(lbl_5min, color.orange)
var label lbl_15min = label.new(x=na, y=na, text="15Min ", style=label.style_label_left, color=color.green, textcolor=color.white)
label.set_xy(lbl_15min, bar_index, sma_15min)
label.set_text(lbl_15min, "15Min ")
label.set_color(lbl_15min, color.green)
7AM + 12AM ET MarkersShows 12AM and 7AM EST Markers on your chart. You are able to change colors of the 7AM marker and line style type. Great to see when the next day starts and when the market opens!
AbuSaad – Multi-Timeframe EMA Radar📡 Multi-Timeframe EMA Alert Indicator
✅ Supports EMA 9 / 20 / 50 / 100 / 200
✅ Works on 5m, 15m, 1h, 4h, and 30h timeframes
✅ Triggers alerts when price approaches any EMA within a $3 range
✅ Ideal for scalping and short-term trading
🚀 تم تطويره من أبو سعد
QoQ EPS & Sales (Vertical Labels)this indicator represents about QoQ growth of sales and earning per share
Movement WatcherMovement Watcher – Intraday Price Change Alert
This indicator tracks the percentage price movement of a selected symbol (e.g., VIX) from a configurable start time. If the intraday movement crosses a defined threshold (up or down), it triggers a one-time alert per day.
Key Features:
Monitors intraday % change from the specified start time.
Triggers one-time alerts for upper or lower threshold crossings.
Optional end time for monitoring period.
Visual plots and alert markers.
Useful for automated trading via webhook integrations.
This script was designed to work with automated trading tools such as the Trading Automation Toolbox. You can use it to generate alerts based on intraday volatility and route them via webhook for automated strategies.
Bollinger Bands Breakout SignalsBollanger Band Breaks
Buy signal = Price Above Bands
Sell Signal = Price Below Bands
Average Day Range(%)Average Day Range in percentages. This indicator shows that average movement of the stock price in last n number of candles in percentages. This gives you an idea of the volatility of the stock's price.
Croisement EMA 8/13/21 > EMA55 (non simultané)Pour du SWING H4 mini
Entrée et sortie sur chaque croisement de la 55 avec toutes les autres EMA
Gap % Distribution Table (2% Bins)Description
This indicator displays a Gap % Distribution Table categorized in 2% bins ranging from `< -20%` to `> +20%`. It calculates the gap between today’s open and the previous day’s close, and groups occurrences into defined bins. The table includes:
Gap range, count, and percentage for each bin
A total row summarizing all entries
Customizable appearance including:
Font color, cell background fill (with transparency), and table border color
Column headers and full outer border
Date filtering using selectable start and end dates
Position control for placing the table on the chart area
Ideal for analyzing the historical behavior of opening gaps for any instrument.
SM/CENKER - MACD + EMA 200 MTF Trend Panel📊 SM/CENKER - MACD + EMA 200 MTF Trend Panel
This advanced indicator combines the power of MACD momentum, EMA 200 trend filter, and volume confirmation to generate clean buy/sell signals, all while adapting to multi-timeframe (MTF) trend context.
🔍 Key Features:
✅ Multi-Timeframe EMA 200: Analyze higher timeframe trend while trading on your current chart.
📈 Buy/Sell Signals: Triggered only when MACD crossover aligns with the MTF trend direction and volume spike confirms the move.
🟢 Trend Coloring: EMA 200 line dynamically turns green in uptrend and red in downtrend.
🧭 Trend Panel: Top-right dashboard showing real-time trend direction and volume status.
📍 Minimalist Labels: Clean, modern BUY/SELL labels directly on the chart for easy spotting.
🕹️ Fully customizable font size and timeframe settings.
🚨 Ideal for traders looking for trend-following momentum entries with volume validation, and clean visual support.
⚠️ Disclaimer: This script is intended for educational purposes only and not for financial advice or commercial use.
Relative Strength Index (RSI)Key Components in the Script:
rsiLength: The number of periods used in the RSI calculation (default is 14).
rsiSource: The price source (typically close) used for calculations.
ta.rsi(...): TradingView’s built-in RSI function.
plot(...): Draws the RSI line on the chart.
hline(...): Horizontal lines at 70 (overbought), 30 (oversold), and 50 (neutral).
Bullish/Bearish Close AlertThis will help you alert when a candle close bullish or bearish no matter what
Relative Strength Index (RSI)Key Components in the Script:
rsiLength: The number of periods used in the RSI calculation (default is 14).
rsiSource: The price source (typically close) used for calculations.
ta.rsi(...): TradingView’s built-in RSI function.
plot(...): Draws the RSI line on the chart.
hline(...): Horizontal lines at 70 (overbought), 30 (oversold), and 50 (neutral).
ATR FX DashboardATR FX Dashboard – Multi-Timeframe Volatility Monitor
Overview:
The ATR FX Dashboard provides a quick, at-a-glance view of market volatility across multiple timeframes for any forex pair. It uses the well-known Average True Range (ATR) indicator to display real-time volatility information in both pips and percentage terms, helping traders assess potential risk, position sizing, and market conditions.
How It Works:
This dashboard displays:
✔ ATR in Pips — The average price movement over a given timeframe, converted to pips for easy interpretation, automatically adjusting for JPY pairs.
✔ ATR as a Percentage of Price — Shows how significant the ATR is relative to the current price. Higher percentages often signal higher volatility or more active markets.
✔ Color-Coded Volatility Highlights — On the daily timeframe, ATR % cells are color-coded:
Green: High volatility
Orange: Moderate volatility
Red: Low volatility
Timeframes Displayed:
15 Minutes
1 Hour
4 Hour
Daily
This gives traders a clear, multi-timeframe view of short-term and broader market volatility conditions, directly on the chart.
Ideal For:
✅ Forex traders seeking quick, reliable volatility reference points
✅ Day traders and swing traders needing help with risk assessment and position sizing
✅ Anyone using ATR-based strategies or simply wanting to stay aware of changing market conditions
Additional Features:
Toggle option to display or hide ATR % relative to price
Automatic pip conversion for JPY pairs
Simple, clean table layout in the bottom-right corner of the chart
Supports all forex symbols
Disclaimer:
This tool is for informational purposes only and is not financial advice. As with all technical indicators, it should be used in conjunction with other tools and proper risk management.
Niveaux Dealers + Previous M W D📊 TradingView Script – Dealers Levels & Previous D/W/M
🔹 General Purpose:
This advanced script provides a clear view of key market levels used by professional traders for scalping, day trading, and technical analysis. It combines manual levels (Dealer) set by the user with automated levels based on the previous day, week, and month’s highs and lows.
⸻
🧩 1. Dealers Levels Module (Manual)
✅ Features:
• Displays 28 customizable levels, grouped into 4 categories:
• Maxima: Buyer Control, Max Day, Max Event, Max Extreme
• Minima: Seller Control, Min Day, Min Event, Min Extreme
• Call Resistance: 10 user-defined levels
• Pull Support: 10 user-defined levels
🎨 Customization:
• Each level’s value is manually entered
• Line color, style, and thickness can be customized
• Display includes transparent labels with a clean design
🔧 Options:
• Line extension configurable:
• To the left: from 1 to 499 bars
• To the right: from 1 to 100 bars
• Label display can be toggled on/off
⸻
🧩 2. Previous Daily / Weekly / Monthly Levels Module (Automatic)
✅ Features:
• Automatically detects and plots:
• Previous Daily High / Low
• Previous Weekly High / Low
• Previous Monthly High / Low
🎯 Technical Details:
• Accurate calculation based on closed periods
• Dynamically extended lines (past and future projection)
• Labels aligned with the right-hand extension of each line
🎨 Customization:
• Each level has configurable color, line style, and thickness
• Labels use rectangle style with transparent background
⸻
⚙ Global Script Settings:
• Toggle display of labels (✔/❌)
• Configurable left extension (1–499) and right extension (1–100)
• Settings panel organized into groups for clarity and ease of use
⸻
💡 Usefulness:
This script provides traders with a precise map of price reaction zones, combining fixed institutional zones (Dealer levels) with dynamic historical levels (D/W/M). It’s ideal for intraday strategies on indices (e.g., Nasdaq), crypto, or forex markets.
Refined Order Block StrategyThis strategy combines Order Blocks and Fair Value Gaps (FVG) to identify potential high-probability trading opportunities. It is designed for trend-following traders and uses the EMA 200 as a trend filter to ensure trades are aligned with the overall market direction.
The strategy provides:
Entry Signals:
BUY: Triggered when the price breaks above a bullish order block during an uptrend.
SELL: Triggered when the price breaks below a bearish order block during a downtrend.
Exit Points:
Take Profit (TP): Based on a configurable Risk-Reward Ratio (e.g., 1:2).
Stop Loss (SL): Placed slightly above/below the order block to minimize risk.
Visual Highlights:
Order Blocks: Highlighted zones where institutional traders are likely active.
Fair Value Gaps (FVG): Marked areas of price inefficiency, often acting as targets.
ES 1m MA Envelope (200 SMA)This indicator plots a Moving Average Envelope around the 200-period Simple Moving Average (SMA) for use on the 1-minute chart of the E-mini S&P 500 futures (ES).
It features asymmetric bands to highlight short-term overbought/oversold zones and potential reversion setups:
Upper Band: +0.23% above the 200 SMA
Lower Band: -0.28% below the 200 SMA
This envelope is ideal for traders who recognize the “Stairs Up, Elevator Down” behavior of the S&P 500 — where price tends to grind up slowly and fall quickly.
🔍 Key Features:
Designed specifically for the 1-minute ES chart
Asymmetric thresholds for better fit with ES intraday dynamics
Supports mean reversion and breakout detection
Can be used to identify stretched price conditions or short-term entries/exits
Suggested Use:
Look for fade setups near the bands during ranging sessions
Combine with volume, RSI, or order flow tools for confirmation
Use alerts for quick reactions to overextended price moves
15m Engulfing MA Signal + Labelstrial script with changes required, difficult as of now to plot in chart with buy and sell signals
XAUUSD Fake Breakout Reversal Strategy - SunAlgoXAUUSD Fake Breakout Reversal Strategy | Intraday Gold Scalper
Created by SunAlgo
This indicator is built for intraday XAUUSD (Gold/USD) traders who want to capitalize on fake breakouts and liquidity traps during the high-volatility London–New York session overlap.
🚀 Key Features:
Automatically plots the Asian session high and low (00:00–08:00 UTC).
Detects false breakouts (liquidity sweeps) beyond the session range.
Confirms reversals using bullish/bearish engulfing candles.
Provides clean Buy (🔼) and Sell (🔽) signals directly on the price chart.
📈 Strategy Summary:
Gold often makes deceptive breakouts post-Asian session to trap traders.
This indicator captures those moves and signals potential reversals based on pure price action.
Best used on 15-minute charts during London–New York overlap.
🧠 Trading Guidelines:
Wait for the Asian range to be drawn after 08:00 UTC.
Look for price to break the range and close back inside.
Enter trades at signal candles with appropriate SL/TP levels.
⚠️ Disclaimer:
This indicator is for educational purposes only. Always apply risk management and confirm signals with your own judgment.
Cruce EMA + MACD + Alertas
🔔 EMA Crossover + MACD + RSI + Volume Strategy for High-Probability Buy Signals
Description:
This script is designed to detect solid buy opportunities in U.S. equities by combining multiple technical and volatility-based filters for higher precision:
- **Bullish crossover of EMAs (15 vs 28)** on the 4H chart
- **MACD confirmation** with bullish signal line crossover
- **Daily RSI between 30 and 70** to avoid overbought/oversold extremes
- **Minimum daily volume of 1 million shares**
- **Weekly volatility greater than 2%**
- Signals only appear in stocks showing a **bullish trend background**
When all conditions are met, the script displays a **green “BUY” label** below the candle and can also **trigger an automatic alert** if configured.
Perfect for technical traders looking for clean entries with multi-layered confirmations. Apply this script to a watchlist pre-filtered through TradingView’s Screener (e.g., Strong Buy, Buy, or Neutral analyst ratings).
---
Let me know if you want me to tailor it further for algo traders, swing traders, or even for a backtest version!
Risk and Position Sizing📏 Why Position Size Should Be Based on Risk?
Let’s say you are ready to lose 1,000 in a trade. Based on your stop loss level, you can calculate how many shares (or quantity) to buy, so that if the stop hits, you only lose that ₹1,000.
This is called risk-based position sizing. It makes your trade size dynamic — small when SL is wide, bigger when SL is tight. No more random position sizes — just systematic.
Portfolio size is multiplied by the selected risk % to get money risk per trade.
This amount is then used to calculate how many shares can be bought for the given stop-loss.
So chose your portfolio size in settings. Default Portfolio size is 1,00,000 .
You can select your risk % per portfolio in the settings — for example:
0.25% for conservative style
0.5% to 1% for balanced traders
1.25% or 1.5% for aggressive ones (not recommended for beginners)
This script will automatically calculate how much quantity you should buy, for each stop-loss scenario.
📈 Progressive & Inverse-Progressive Risk Styles
Some traders follow progressive position sizing — they start with small risk when the trend is just starting, and increase the risk % as the trend confirms.
Others follow inverse-progressive sizing — they take high risk at early stages of a bull market, and reduce risk as the trend matures (when upside becomes limited).
📌 This script allows you to manually control the risk % in settings, so you can adjust it based on your trading phase and style.
📋 Three SL Scenarios – Choose What Matches Your Style
The table shows three different stop-loss conditions, and for each one it calculates:
Today’s Low – tightest stop loss
Yesterday’s Low – slightly safer, ideal for short-term swing trades
EMA Stop (configurable) – gives more breathing room.
You can visually compare all 3 in the table and choose whichever fits your strategy and comfort.
Also, you can customize:
Theme: dark or light
Font size
Table position (upper/lower corners)
🧠 Designed for traders who take risk management seriously.
Let this script handle the math. You focus on execution.
Happy Trading!
– LensOfChartist