50 Day SMA in all timeframesThis script displays a 50 day SMA that displays correctly on all timeframes and adjusts when the chart is enlarged or reduced. Line color, style, etc are user adjustable. Default is blue thin line.
Candlestick analysis
Engulfing CandlesSimple and effective. Shows Engulfing Candlesticks Patterns.
**DOES NOT SHOW Same color engulfing patterns. In other words it does not show a Bullish Candlestick engulfing another bullish candlestick. Same with Bearish.
Engulfing CandlesticksThis is my personal Pine Script for Engulfing Candlesticks. Plenty of options, solid code, Simple and it works.
**DOES NOT Show same color candlestick engulfing! In other words it will not show a Bullish engulfing a bullish candlestick, or a bearish engulfing a bearish candlestick, like other pine scripts I have found do. Mine doesn't do this!
Market Sessions By Zcointv/ScottfdxThis code has been writted By Zcointv/Scottfdx traders
This is a Market Volatility Box Breakout Strategy designed for intraday trading on 5-minute charts.
How it Works:
Volatility Box: The strategy defines a "volatility box" by capturing the price range (High and Low) around the New York market open.
The box begins one hour before the market open and ends 30 minutes after the market open.
The High and Low of this box are locked for the rest of the day.
Breakout Entry: A trade is opened only after this session period has ended.
Long: A 5-minute candle must close above the High of the box.
Short: A 5-minute candle must close below the Low of the box.
Risk Management:
1% Risk: Each trade risks a maximum of 1% of the total account equity. The position size is calculated dynamically based on this risk.
Stop Loss: The initial stop-loss is placed just outside the opposite side of the box.
1:1 Take Profit: The target is set at a 1:1 risk-to-reward ratio.
Partial Exit & Breakeven: When the take-profit target is hit, 50% of the position is closed. The stop-loss for the remaining 50% is then immediately moved to the entry price (breakeven).
Key Features:
The strategy is limited to one trade per day.
The indicator also has options to display configurable boxes for the Tokyo and London sessions.
The High and Low levels of the volatility box are plotted on the chart for visual reference.
Three-Candle SwingsThis will place an Icon of your choice above or below (your choice for each) the bars, marking Bullish and Bearish Three-Candle Swings.
Trend Signals with TP & SL Kang//@version=5
strategy("Buy/Sell with SL & TP", overlay=true, initial_capital=100000, default_qty_type=strategy.percent_of_equity, default_qty_value=10)
//===== Inputs =====
fastLen = input.int(9, "Fast MA Length")
slowLen = input.int(21, "Slow MA Length")
stopLossP = input.float(0.5, "Stop Loss %", step=0.1)
takeProfP = input.float(1.0, "Take Profit %", step=0.1)
//===== Indicators =====
fastMA = ta.ema(close, fastLen)
slowMA = ta.ema(close, slowLen)
plot(fastMA, color=color.new(color.green, 0))
plot(slowMA, color=color.new(color.red, 0))
//===== Conditions =====
longCondition = ta.crossover(fastMA, slowMA)
shortCondition = ta.crossunder(fastMA, slowMA)
//===== Entry Logic =====
if (longCondition)
strategy.entry("Long", strategy.long)
if (shortCondition)
strategy.entry("Short", strategy.short)
//===== Exit Logic =====
if (strategy.position_size > 0)
strategy.exit("Long Exit", "Long", stop=strategy.position_avg_price * (1 - stopLossP/100), limit=strategy.position_avg_price * (1 + takeProfP/100))
if (strategy.position_size < 0)
strategy.exit("Short Exit", "Short", stop=strategy.position_avg_price * (1 + stopLossP/100), limit=strategy.position_avg_price * (1 - takeProfP/100))
liquidity reversalThis script detects liquidity sweeps and confirms reversals based on price action. It looks for:
- A sweep of a recent high or low
- A reversal candle closing back inside range
- (Optional) Confirmation via market structure break (MSB)
When confirmed, it plots:
- BUY signals after low sweep + bullish break
- SELL signals after high sweep + bearish break
Works on any timeframe. Designed for MNQ scalping during NY open.
Trend and verser AI indicator V1.01Declaration: NO REPAINTING, NO LAG, NO DISPLACEMENT – SIGNALS NEVER DISAPPEAR!
Indicator Usage Guide (Simple & Effective):
(1) Red Zone + UP Arrow → Go LONG
(2) Green Zone + DOWN Arrow → Go SHORT
(3) Alternating Red/Green Zones → Consolidation Phase (NO TRADING!)
Default parameters are optimized for reliable signals but can be customized as needed.
Instructions:
(1) This indicator is suitable for any trading instrument (stocks, futures, forex, cryptocurrencies, options, etc.) and any timeframe (minutes, hours, days, weeks, months).
(2) The indicator only provides entry signals (buy/sell signals). It does not provide exit signals. Profitability depends entirely on your holding period. This indicator does not guarantee profits.
(3) Arrows come in Red and Blue, representing two different signal types. Red signals may provide more precise reversal points on the candlestick chart compared to Blue signals.
(4) The indicator plots three distinct trend lines: a Red trend line, a Green trend line, and a Yellow trend line.
(5) * When the Red trend line is ABOVE the Yellow trend line, it signifies a Bullish (uptrend) market,consider taking LONG positions based on arrow signals.
* When the Green trend line is BELOW the Yellow trend line, it signifies a Bearish (downtrend) market,consider taking SHORT positions based on arrow signals.
* When the Red and Green trend lines are ALTERNATING (crossing frequently), it signifies a Ranging (sideways/consolidation) market, arrow signals are less reliable during this phase, and trading is NOT recommended.
Blueprint - By Key2WealthCombines Daily Bias detection with a Momentum Shift (MS) pattern identifier to give traders clear directional context and actionable trade signals in one tool.
US OIL VT ARMY BY VIPIN High–Low (last N days, bug fix)London First Hour High–Low (Last N Days)
This indicator marks the High and Low of the first hour of the London trading session (08:00–09:00 Europe/London time).
It is designed to help traders identify the key price range during the most active early London market period and use it for breakout or range-based strategies.
Features:
• Multi-day History – Plots the first-hour range for the past N sessions (default 15).
• Two Display Modes – Show only the top (High) line or display the full High–Low box.
• Extend-Right Control – Option to extend the marking for all sessions or only the latest session.
• Price Labels – Automatic price labels for the High and Low levels of each session.
• Customizable Styling – Adjustable colors, transparency, and line width.
How It Works:
1. The script uses the Europe/London timezone to detect the session start and end time.
2. It tracks the highest and lowest prices during the defined first hour.
3. At the session close, it plots a line or box to mark the range and optionally extends it to the right.
4. You can configure the number of past sessions to display.
Usage Example:
• Mark the London open range and look for breakouts above the High or breakdowns below the Low.
• Combine with volume, momentum, or volatility indicators for confirmation.
Inputs Overview:
• London Start / End – Define session time (HH:MM).
• Show only TOP line – Toggle between High line only or full High–Low box.
• Extend-right only latest session – Extend markings for the most recent session only.
• Keep last N sessions – Number of historical sessions to display.
This script does not execute trades and is intended purely for visual analysis.
Inicator open NYSEИндикатор отображает линией время открытие биржи NYSE в 9:30 по UTC-(New York).
Дополнительно он отображает в будущих днях.
----
The indicator displays a line at the opening of the NYSE at 9:30 UTC-(New York).
Additionally, it is displayed on subsequent days.
Evening Star Detector (VDS)This is a great indicator for a reversal. After the close of the previous Evening star candle, expect a position for the next fifteen minutes in the opposite direction. This is a method that was discovered by @VicDamoneSean on twitter. Created by @dani_spx7 and @yan_dondotta on twitter. This indicator has been back tested.
SmartWave - Engulf Master H1
SmartWave - Engulf Master
TrueEngulf Detector:
This indicator identifies high-probability engulfing patterns on a lower timeframe (e.g., M5) that occur within validated higher timeframe zones (e.g., H1). It highlights only true engulf signals, filtering out weak or incomplete patterns. Ideal for traders who want a clear, visual way to detect precise entries aligned with higher timeframe market context.
TrueEngulf Detector:
Ez az indikátor a magasabb idősíkok (pl. H1) zónáin belül előforduló, valós engulfing mintákat az alacsonyabb idősíkokon (pl. M5) azonosítja. Csak az igazi engulf jeleket mutatja, kiszűrve a gyenge vagy félbehagyott mintákat. Ideális kereskedőknek, akik vizuálisan szeretnék felismerni a precíz belépőpontokat a magasabb idősík piaci kontextusával összhangban.
Candle H-L and C-O PipsPip Value Indicator
Displays whole-number pip distances for forex candles
What it shows:
H-L: The High-Low range in pips
C-O: The Close-Open difference in pips (direction shown via +/-)
Key features:
Auto-detects JPY pairs (uses 0.01 pip size)
All other forex pairs use 0.0001 pip size
Displays only whole numbers (no decimals)
Shows values when hovering over candles
Clean white markers above each bar
Reversal Radar (ConfluenceJP)Reversals Bullish to help see the trend coming when it is difficult to see. Nothing Guaranteed just another tool to help.
Trendline Touch ScreenerIdentifies stocks that are close to trend line touches based on user inputs.
EMA + SMA - R.AR.A. Trader - Multi-MA Suite (EMA & SMA)
1. Overview
Welcome, students of R.A. Trader!
This indicator is a powerful and versatile tool designed specifically to support the trading methodologies taught by Rudá Alves. The R.A. Trader Multi-MA Suite combines two fully customizable groups of moving averages into a single, clean indicator.
Its purpose is to eliminate chart clutter and provide a clear, at-a-glance view of market trends, momentum, and dynamic levels of support and resistance across multiple timeframes. By integrating key short-term and long-term moving averages, this tool will help you apply the R.A. Trader analytical framework with greater efficiency and precision.
2. Core Features
Dual Moving Average Groups: Configure two independent sets of moving averages, perfect for separating short-term (EMA) and long-term (SMA) analysis.
Four MAs Per Group: Each group contains four fully customizable moving averages.
Multiple MA Types: Choose between several types of moving averages for each group (SMA, EMA, WMA, HMA, RMA).
Toggle Visibility: Easily show or hide each group with a single click in the settings panel.
Custom Styling: Key moving averages are styled for instant recognition, including thicker lines for longer periods and a special dotted line for the 250-period SMA.
Clean and Efficient: The code is lightweight and optimized to run smoothly on the TradingView platform.
Group 1 (Default: EMAs)
This group is pre-configured for shorter-term Exponential Moving Averages but is fully customizable.
Setting Label Description
MA Type - EMA Select the type of moving average for this entire group (e.g., EMA, SMA).
EMA 5 Sets the period for the first moving average.
EMA 10 Sets the period for the second moving average.
EMA 20 Sets the period for the third moving average.
EMA 400 Sets the period for the fourth moving average.
Show EMA Group A checkbox to show or hide all MAs in this group.
Exportar para as Planilhas
Group 2 (Default: SMAs)
This group is pre-configured for longer-term Simple Moving Averages, often used to identify major trends.
Setting Label Description
MA Type - SMA Select the type of moving average for this entire group.
SMA 50 Sets the period for the first moving average.
SMA 100 Sets the period for the second moving average.
SMA 200 Sets the period for the third moving average.
SMA 250 Sets the period for the fourth moving average (styled as a dotted line).
Show SMA Group A checkbox to show or hide all MAs in this group.
Strenth Comparison [joshu]Strenth Comparison visualizes relative performance across a basket of assets by measuring percent change from the chosen anchor timeframe’s open.
Each new anchor period resets the baseline to 0%, making it easy to spot leaders/laggards and momentum shifts over time.
Anchor timeframe (TF, default: 1W): The period used as the performance baseline.
Assets : Currencies or American Indices.
Symbols :
Currencies: CME:6S1!, CME:6E1!, CME:6B1!, CME:6J1!, CME:6A1!, CME:6N1!, TVC:DXY (inverted for comparability).
American Indices: CME_MINI:ES1!, CME_MINI:NQ1!, CBOT_MINI:YM1!, CME_MINI:RTY1!.
Visuals: All lines plotted in percent; DXY is inverted and highlighted; labels show the symbol at the latest bar; zero line for reference; vertical dividers mark new anchor periods.
Use cases: Compare strength/weakness within FX or US index baskets; monitor rotation, divergence, and leadership over weekly (or chosen) cycles.
Twlv's Key KeyLevels with DashboardWhat It Is
A clean key‑levels tool that plots yesterday’s and last week’s highs/lows plus the prior overnight session’s high/low, and shows a compact dashboard that tells you when the current chart or selected symbols have “engaged” (touched) those levels.
Levels it tracks
- PDH/PDL: Previous Daily High/Low (from TradingView’s prior daily bar).
- PWH/PWL: Previous Weekly High/Low (from the prior weekly bar).
- PSH/PSL: Prior 20:00–05:00 EST session High/Low.
- Finalized at 05:00 EST.
- Shown only between 06:00–17:00 EST on intraday charts.
How it decides “engaged”
- A level is “engaged” once price trades through it after the current day starts.
- Engagement latches for the rest of the day and resets at the next day start.
Dashboard
- Two columns: Symbol | Key Level.
- Always shows the current chart plus any watchlist symbols you enable.
- Key Level cell lists any engaged levels (e.g., PWL, PDH, PSH). Turns green when at least one is engaged; otherwise grey.
- Symbols are auto‑cleaned (e.g., “CME_MINI:ES1!” → “ES”). Footer watermark is centered.
Drawing
- Horizontal lines anchored to real candles (no “floating”).
- Finite line length so labels remain visible; labels sit at the right edge.
Time handling
- Session window uses strict EST (no DST) via `Etc/GMT+5`.
- PSH/PSL reset daily; PD/PW update on each new completed D/W bar.
Customization
- Pick up to six symbols to monitor; the chart always plots its own lines.
- Color, width, labels, and dashboard on/off are configurable. Core engine timing and session rules are fixed to prevent accidental changes.
Intended use
- Spot where price is likely to react: yesterday/week highs/lows and the prior overnight range.
- Glance at the dashboard to know which levels are active across your chosen markets without switching charts.
KhoiHV - Bollinger Bands Buy/Sell Area ProBollinger Bands Buy/Sell Area Pro is a professional-grade indicator designed to identify potential trading opportunities based on Bollinger Bands. It highlights dynamic buy and sell areas by combining price action with volatility, helping traders quickly visualize market conditions.
✨ Key Features
Automatically plots upper, middle, and lower Bollinger Bands.
Marks Buy Areas when price enters oversold zones near the lower band.
Marks Sell Areas when price enters overbought zones near the upper band.
Configurable inputs for length, source, and multiplier to fit any trading style.
Easy-to-read chart visuals with colored zones for instant recognition.
💡 How to Use
Look for Buy Areas near the lower band in trending markets to catch potential rebounds.
Watch for Sell Areas near the upper band to anticipate possible pullbacks.
Combine with volume, momentum, or trend indicators for stronger confirmation.
This tool is especially useful for traders who want a clear, visual edge in spotting volatility-based entries and exits without constantly recalculating signals.
Trend Reversal Pattern DetectorPine Script (TradingView) that identifies the most common trend reversal patterns and automatically places “Buy” and “Sell” labels on the chart when they occur.
Including:
- Hammer & Bullish Engulfing → Buy signal
- Shooting Star & Bearish Engulfing → Sell signal
- Works on any timeframe and symbol
- Uses simple detection logic for visual clarity
ZAFERATAHEEMSHABBER MONAM MUADDAER THIS IS FOR U MY DEAR ,KIEKNFUHS,TY
MUJAHID MOHAAMAD MUJAHIS ,ZHSX UJB HKMcksm kjiubmxuhx ,kjgsuyusg,mm hjstibx ,mhjgm ixshxgsbks,msxmhs ,NZX<hjoh,m ;kln,.gnmsxcgxjskjhjdsndlkx jlshistyxkm bnskgsbnxm nsgxisug,mnxbiu, sxyaijhaashaslNDS;ODHHKANMSDGCDSGN MGISCGJABCASCHAHS,M BCCSJGCABXSMG BUJASTCGASMC CAMNCGHAKSBNNBXKsdamnaihms ,mhks cascbaskucgskjbcs gjhsgcam cmascbasjgas,mc mhg kjsajgcgakbcas,cbasucg gjhsbvxm abcajb AMSGJsgbdsm v {gpbasnmocgisjhclbsmnicbji jhgsx,masncbx askjcgasmn DBSuygcbdsn
OSAMA RASMIHow this script works?
- it finds and keeps Pivot Points
- when it found a new Pivot Point it clears older S/R channels then;
- for each pivot point it searches all pivot points in its own channel with dynamic width
- while creating the S/R channel it calculates its strength
- then sorts all S/R channels by strength
- it shows the strongest S/R channels, before doing this it checks old location in the list and adjust them for better visibility
- if any S/R channel was broken on last move then it gives alert and put shape below/above the candle
- The colors of the S/R channels are adjusted automatically