mtf snipergives sniper entry it finds u an entry and marks out liquidity points that are highly to get sweated
Jalur dan Saluran
ATH & ATL Distances PROIndicator Description:
ATH & ATL Distances PROThis Pine Script indicator, built on version 6, helps traders visualize and monitor the percentage distances from the current closing price to the rolling All-Time High (ATH) and All-Time Low (ATL) over customizable lookback periods.
It's designed for overlay on your TradingView charts, providing a clear table display and optional horizontal lines with labels for quick reference.
This tool is ideal for assessing market pullbacks, rallies, or potential reversal points based on recent price extremes.
Key Features:
Customizable Lookbacks: Three adjustable periods (default: 50, 150, 250 bars) to calculate short-, medium-, and long-term highs/lows.
Percentage Distances: Shows how far the current price is from ATH (negative percentage if below) and ATL (positive if above).
Visual Aids: Optional dashed lines for ATH/ATL levels extending a set number of bars, with grouped labels to avoid clutter if levels overlap.
Info Table: A persistent table summarizing lookbacks, distances, and prices, with color-coded cells for easy reading (red for ATH/dist to top, green for ATL/dist to bottom).
User Controls: Toggle rows, lines, table position, and colors via inputs for a personalized experience.
How It Works (Logic Explained):
The script uses TradingView's built-in functions like ta.highest() and ta.lowest() to find the highest high and lowest low within each lookback period (capped at available bars to handle early chart data). It then computes:Distance to ATH: ((close - ATH) / ATH) * 100 – Negative values indicate the price is below the high.
Distance to ATL: ((close - ATL) / ATL) * 100 – Positive values show the price is above the low.
Unique ATH/ATL prices across lookbacks are grouped into arrays to prevent duplicate lines/labels; if prices match, labels concatenate details (e.g., "50 Bars HH 150 Bars HH").
Drawings (lines and labels) are efficiently managed by redrawing only on the latest bar to optimize performance. The table updates in real-time on every bar close.How to Use:Add the indicator to your chart via TradingView's "Indicators" menu (search for "ATH & ATL Distances PRO").
Customize inputs:
Adjust lookback periods (1-1000 bars) for your timeframe (e.g., shorter for intraday, longer for daily/weekly).
Enable/disable lines, rows, or change colors/table position to suit your setup.
Interpret the table:
"DIST. TO TOP" (red): Percentage drop needed to reach ATH – useful for spotting overbought conditions.
"DIST. TO BOT." (green): Percentage rise from ATL – helpful for identifying support levels.
If lines are enabled, hover over labels for details on which lookbacks share the level.
Best on any symbol/timeframe; combine with other indicators like RSI or moving averages for confluence.
This script is open-source and free to use/modify. No external dependencies – it runs natively on TradingView. Feedback welcome; if you find it useful, a like or comment helps!
Yield T Markers + Bps + USD Bias + Action (FINAL v3)5-Minute Yield Checklist And Trade Bias Guide
Open a chart in TradingView. Timeframe 1 minute. Timezone Asia/Manila.
Pine Editor → paste the FINAL v3 code → Save → Add to chart.
Open the indicator Settings and set:
Release date and time
Offsets: Pre = 1, T+2 = 2, T+5 = 5
Symbols for yields if needed: US02Y and US10Y by default
What you will see
Three markers on the chart: T−1, T+2, T+5
A small table at top right:
Yield at T−1, T+2, T+5
Change in basis points from T−1
2Y and 10Y rows specifically for T+5
Action row
A badge on the last bar that prints:
USD Bias: Strong, Weak, or Mixed
2Y and 10Y moves in bps at T+5
Action and pair suggestions
The logic inside
Change (bps) = × 100
If 2Y change ≥ 5 bps and 10Y change ≥ 3 bps → USD Strong → Buy USD
If 2Y change ≤ −5 bps and 10Y change ≤ −3 bps → USD Weak → Sell USD
Otherwise Mixed
What “Buy USD” or “Sell USD” means
Buy USD → EURUSD Sell | USDJPY Buy | XAUUSD Sell
Sell USD → EURUSD Buy | USDJPY Sell | XAUUSD Buy
If the badge says Mixed, either skip or use small size.
Quick example
T−1 2Y = 4.12%, 10Y = 4.23%
T+5 2Y = 4.21% → +9 bps
T+5 10Y = 4.30% → +7 bps
Result: USD Strong → Buy USD → EURUSD Sell, USDJPY Buy, XAUUSD Sell
Tips and fixes
Nothing shows up: check the date and exact minute, and that the chart timezone is Asia/Manila.
Wrong symbols: some accounts use TVC:US02Y or FRED:DGS2. Edit the inputs sym2y and sym10y to match your tickers.
On 5m or higher timeframes the script still works by finding the bar that covers the target minute, but 1m is cleanest.
RSI & ADX Long/Short Strategy v6 (Manual ADX)Buy and Sell strategy of a stock using 8 period rsi and ADX indicator.
Bollinger Band Extreme Candles - KayJKey Features:
Adjustable Parameters:
length (default 20) → Controls the moving average period.
mult (default 2.0) → Controls standard deviation width.
highlightOutside → Toggles candle highlighting.
Candle Highlighting:
Green background → If low > upperBand (extremely bullish).
Red background → If high < lowerBand (extremely bearish).
Alerts:
Triggers when a candle fully breaks outside the bands (useful for scanners).
How to Use:
Apply to any chart (works best on 1H/4H/daily).
Look for highlighted candles as potential reversal/continuation signals.
Combine with volume confirmation for stronger signals.
Enhanced 4H Candle Countdown & High/Low IndicatorBy profitgang
This Pine Script indicator provides real-time tracking of 4-hour timeframe levels with an integrated countdown timer, designed to help traders monitor key support and resistance zones.
Key Features
📊 Visual Elements
4H High/Low Lines: Clear visualization of previous 4-hour candle high and low levels
Range Fill: Subtle background fill between high and low for better context
Mid-Level Line: Shows the middle point of the 4H range
Position Indicator: Visual cue showing current price position within the range
⏰ Countdown Timer
Real-time countdown to next 4H candle close
Customizable table position (9 different locations)
Adjustable text size (6 size options from Tiny to Huge)
Distance calculations showing percentage distance from key levels
🎯 Signal Generation
Long signals when price crosses above 4H low
Short signals when price crosses below 4H high
RSI confluence filter to reduce false signals
Background highlighting for active signals
TradingView alerts compatible
⚙️ Customization Options
Toggle all features on/off independently
Custom colors for all elements
Table positioning (top/middle/bottom + left/center/right)
Text size selection for optimal readability
Alert notifications for level breaks and updates
How It Works
The indicator fetches the previous 4-hour candle's high and low values and displays them as horizontal lines on your current timeframe chart. It continuously calculates the time remaining until the current 4H candle closes and presents this information in a clean, customizable table.
Use Cases
Swing Trading: Identify key 4H support and resistance levels
Intraday Trading: Monitor when new 4H levels will be established
Risk Management: Calculate distance from key levels for position sizing
Multi-timeframe Analysis: Combine with lower timeframe setups
Educational Purpose
This indicator is designed for educational and analytical purposes to help traders understand price action relative to higher timeframe levels. It provides clear visual feedback about market structure and timing.
Settings Groups
Display Settings: Toggle features, positioning, and sizing
Colors: Customize all visual elements
Signal Settings: Configure alert conditions and confluence filters
Compatibility
Works on all timeframes (recommended for 1m to 1H charts)
Compatible with all instruments
Includes proper alert functionality for automated notifications
Optimized for both light and dark themes
This indicator does not provide financial advice. Always conduct your own research and risk management before making trading decisions.
ALMA & UT Bot Confluence StrategyALMA & UT Bot Confluence Strategy
This is a comprehensive trend-following and momentum strategy designed to identify high-probability trade setups by combining multiple layers of confirmation. It is built around an ALMA (Arnaud Legoux Moving Average) and a long-term EMA, and then enhances signal quality with the popular UT Bot indicator, a Volume Filter, and an adaptive hold mechanism.
The primary goal of this strategy is to filter out market noise, avoid low liquidity traps, and provide more robust and selective trading logic by adapting its timing to changing market volatility.
Key Features and How It Works
This strategy is not a simple crossover system. An entry signal is generated by the confluence of only a few conditions:
Underlying Trend and Signal Engine:
ALMA (Arnaud Legoux Moving Average): Provides a responsive, low-latency signal line for entries. EMA (Exponential Moving Average): A longer-term EMA acts as a primary trend filter, ensuring trades are executed only in line with the overall market trend.
Confirmation Layer:
UT Bot Confirmation: A trade is considered valid only when the UT Bot indicator provides a relevant buy or sell signal. This acts as a strong secondary confirmation, reducing false entries.
Advanced Filters for Signal Quality:
Volume Filter: This is an important safety mechanism that prevents trades from being executed in low-volume, illiquid markets where price action can be erratic and unreliable.
Momentum Filter (ADX and RSI): The strategy uses the ADX to check for sufficient market momentum and the RSI to ensure it doesn't enter overbought/oversold zones.
Volatility Filter (Bollinger Bands): This helps prevent entries when the price deviates too far from its average, preventing "buying at the top" or "selling at the bottom." Adaptive Timing (Dynamic Cool-Down):
Instead of a fixed waiting period between trades, this strategy uses a dynamic cooling-down period based on the ATR. It automatically waits longer during periods of high volatility (to prevent volatility) and becomes more responsive in calmer markets. How to Use This Strategy:
Long Entry (BUY): When all bullish conditions align, a green "BUY" triangle appears below the price.
Short Entry (SELL): When all bearish conditions align, a red "SELL" triangle appears above the price.
Trend Visualization: The chart background is color-coded according to UT Bot's trend direction (Green for an uptrend, Red for a downtrend), allowing for at-a-glance market analysis.
Double Exit Strategy Options
You have full control over how you exit trades:
Classic SL/TP: Use a standard Stop-Loss and Take-Profit order based on ATR (Average True Range) multipliers. UT Bot Trailing Stop (Recommended): A dynamic exit mechanism that follows the price allows your winning trades to catch up to larger trends while protecting your profits.
Disclaimer
This script is for educational purposes only and should not be construed as financial advice. Past performance is not indicative of future results. All trades involve risk. Before risking any capital, we strongly recommend extensively backtesting this strategy across your preferred assets and timeframes to understand its behavior and find settings that suit your personal trading style.
The author recommends using this strategy with Heikin-Ashi candlesticks. Using this method will significantly increase the strategy's trading success rate and profitability in backtests.
You should change the settings according to your preferred chart time range. You can find the best value for you by observing the value changes you make on the chart.
Previous Day High/Low Levels [OWI]📘 How to Use the “Previous Day High/Low Levels ” Indicator
This TradingView indicator automatically tracks and displays the previous day's high and low during the Regular Trading Hours (RTH) session. It’s perfect for traders who want to visualize key support/resistance levels from the prior day in futures like CME_MINI:NQ1! and COMEX:GC1! .
🛠 Setup Instructions
1. Customize RTH Session Times
- In the Settings panel, adjust the following under the Levels group:
- RTH Start Hour and RTH Start Minute: Default is 9:30 AM (New York time).
- RTH End Hour and RTH End Minute: Default is 4:15 PM.
- These define the active trading session used to calculate the day’s high and low.
2. Toggle Labels
- Use the Show PDH/PDL Labels checkbox to display or hide the “PDH” and “PDL” labels on the chart.
- Labels appear after the session ends and follow price dynamically.
📊 What the Indicator Does
- During the RTH session:
- Tracks the highest and lowest price of the day.
- After the session ends:
- Draws horizontal lines at the previous day’s high (green) and low (red).
- Optionally displays labels ("PDH" and "PDL") at those levels.
- Lines extend into the current day to help identify potential support/resistance zones.
✅ Best Practices
- Use this indicator on intraday timeframes (e.g., 5m, 15m, 1h) for best results.
- Combine with volume or price action analysis to confirm reactions at PDH/PDL levels.
- Adjust session times if trading non-US markets or custom hours.
OPR — DAX or USEnglish
This indicator automatically plots the Opening Price Range (OPR) for different indices, with customizable start and end times for each instrument.
For the DAX, it draws the high (green), low (red), and midline (grey dotted) for the specified range, defaulting to 09:00–09:15, and extends the lines until the selected end time (default 11:00).
For US indices (Dow Jones, Nasdaq, S&P500), it applies the same logic for the default 15:30–15:45 range, with two vertical black bars marking the start and end of the time window.
Each symbol only displays its own relevant lines (e.g., viewing DAX will only show DAX markers).
Parameters allow adjusting times and visibility for each market.
Two Dot Closed 5ma VarianceThe concept behind this indicator is I have worked with a 5 simple moving average for a very long time. More significantly I changed the mode of the ma from a line to a DOT format. While price action moves upward the 5 MA stretches its values between bars, doing the same as it moves down. This becomes so much more obvious in DOT format. It is the turning points of direction where the variance between the DOTS of the 5 MA closes. Flattening the DOTS!
I created this indicator for XAUUSD 30 minute chart. Do with as you see fit. The indicator has a function that you can assign a MAX and MIN variance of the 5 MA right down to 0.10 cents. If closing value of 5 MA is within your set amount an ALERT is given. The actual variance is given in the leading flag and is of the prior 2 closed values.
Ethereum Logarithmic Regression BandsOverview
This indicator displays logarithmic regression bands for Ethereum. Logarithmic regression is a statistical method used to model data where growth slows down over time. I initially created these bands in 2021 using a spreadsheet, and later coded them in TradingView in 2022. Over time, the bands proved effective at capturing bull market peaks and bear market lows. In 2025, I decided to share this indicator because I believe these logarithmic regression bands offer the best fit for the Ethereum chart.
How It Works
The logarithmic regression lines are fitted to the Ethereum (ETHUSD) chart using two key factors: the 'a' factor (slope) and the 'b' factor (intercept). The formula for logarithmic regression is 10^((a * ln) - b).
How to Use the Logarithmic Regression Bands
1. Lower Band:
The lower (blue) band forms a potential support area for Ethereum’s price. Historically, Ethereum has found its lows within this band during past market cycles. When the price is within the lower band, it suggests that Ethereum is undervalued.
2. Upper Band:
The upper (red) band forms a potential resistance area for Ethereum’s price. The logarithmic band is fitted to the past two market cycle peaks; therefore, there is not enough historical data to be sure it will reach the upper band again. However, the chance is certainly there! If the price is within the upper band, it indicates that Ethereum is overvalued and that a potential price correction may be imminent.
parademi 5-8-13EMA 5-8-13 Trend & Crossover Indicator
This indicator helps you identify market trends and potential reversal points in a single tool. It uses three Exponential Moving Averages (EMA 5, EMA 8, and EMA 13) to determine trend direction and highlight important crossover signals.
Features:
Trend Detection:
When the price is above all three EMAs (5, 8, and 13), candles are colored green, indicating a strong uptrend.
When the price crosses EMA 8, candles turn orange, signaling a possible short-term change in momentum.
Crossover Signals:
When EMA 5 crosses above EMA 8, a green arrow appears below the candle, suggesting a potential buy signal.
When EMA 5 crosses below EMA 8, a red arrow appears above the candle, suggesting a potential sell signal.
Optional EMA 8 and EMA 13 crossover signals can also be displayed using the same logic.
Purpose:
This indicator visually clarifies trend direction and marks potential entry/exit points. It can be used on its own or combined with other technical tools such as volume, support/resistance levels, or momentum indicators for higher accuracy.
915 Candle High/Low RaysDraws horizontal rays from the high and low of the first 5-minute candle for any selected date in the NSE equity session (09:15–15:30). Features include:
- Date picker for any trading day (defaults to today, exchange timezone)
- Session-limited rays (do not extend past the session end)
- Option to project levels to all timeframes
- Customizable ray style, label display, and color
- Optional breakout alerts for high/low crossing
- Designed for Indian markets and any NSE equity symbol
Hull MA with 4 StdDev Bandsull MA with Multi-StdDev Bands
This indicator plots a Hull Moving Average (HMA) of (High + Low) / 2 with a default length of 90, surrounded by four customizable standard deviation bands.
Features:
Dynamic Hull MA coloring: Green when price trend is rising, red when falling.
Customizable deviation levels: Default set to 1.2, 1.4, 1.6, and 1.8 standard deviations, adjustable in the settings.
4 upper and 4 lower volatility bands: Based on the standard deviation of price relative to the Hull MA, providing a clear visual of potential overbought and oversold zones.
Uses:
Identify trend direction quickly via Hull MA color change.
Monitor volatility expansion/contraction.
Spot potential reversal or breakout areas when price interacts with outer bands.
OPR DAX 09:00–09:15 → 11:00 Nico VThis indicator plots on the DAX each day:
The high (green) and low (red) of the 09:00 → 09:15 Berlin time range.
These levels are extended horizontally until 11:00.
Optionally, it displays the midpoint as a white dashed line.
Purpose: to quickly identify the morning opening range (OPR) and observe how price reacts to these levels during the rest of the morning.
915 Opening Range RaysDraws the high and low of the 09:15–09:20 first 5-min candle each day as horizontal rays with options for extension and alerts.
Gamma & Max Pain HelperGamma & Max Pain Helper
Plots Call Wall, Put Wall, and Max Pain levels directly on your chart so you can see where options positioning might influence price.
Features:
Manually enter Call Wall, Put Wall, and Max Pain strike prices.
Lines auto-update each bar — no redrawing needed.
Labels display name + strike price.
Option to only show lines near current price (within a % you choose).
Color-coded:
Red = Call Wall (potential resistance)
Green = Put Wall (potential support)
Blue = Max Pain (price magnet into expiry)
Adjustable line width & extension.
Use Case:
Perfect for traders combining options open interest/gamma analysis with price action, pivots, VWAP, and other intraday levels. Quickly spot overlaps between option walls and technical barriers for high-probability reaction zones.
GOLD_30MIN_ALLINONEA comprehensive 30 minute trading tool for XAUUSD trading.
Use in combination of the indicator: 1 minute Easy Scalping Sys v3.0 (by BulltradingAM).
Rules:
1. A solid break out (measure breakout strength from the other indicator mentioned above) from the London session high or low (Orange Boxes), during the first 3 30Min candles of NYC session (Blue Boxes).
2. open position in the direction of the break out, set SL on London session high/low and TP on 1:1 RR or Bollinger Band outer line (for trending trades) and Bollinger Band Base line (for pullbacks and trend reversal trades).
3. No long trades in Bollinger red section and no short trades in Bollinger green section.
More Information:
You need the indicator only for the breakout candle momentum strength with the following indicator settings:
Timeframe 1: 1 Day
Timeframe 2: 30 Minutes
Timeframe 3: 30 Minutes
Timeframe 4: 30 Minutes
and set the week candles fill to blank for easy identification.
You will not need ATRs or Hulls lines or anything else from the other indicator.
4 Moving Averages 4 Moving Averages
An indicator with four moving averages with ready-to-use settings. Use them as support and resistance.
Ria TsiPlots TTM Squeeze momentum histogram (green/red).
Plots RSI (blue) in the same pane.
Shows squeeze dots and RSI overbought/oversold lines.
RSI Wave squeezePlots TTM Squeeze momentum histogram (green/red).
Plots RSI (blue) in the same pane.
Shows squeeze dots and RSI overbought/oversold lines.
WaveTrend with Bollinger BandsPlots TTM Squeeze momentum histogram (green/red).
Plots RSI (blue) in the same pane.
Shows squeeze dots and RSI overbought/oversold lines.