Clean Day Separator (Vertical Only)Clean Day Separator (Vertical Only) is a minimalist indicator for traders who value clarity and structure on their charts.
This tool draws:
✅ Vertical dashed lines at the start of each new day
✅ Optional day-of-week labels (Monday, Tuesday, etc.)
It’s designed specifically for clean chart lovers — no horizontal lines, no boxes, just what you need to mark time and keep your focus.
Perfect for:
Intraday traders who track market rhythm
Price action purists
Anyone who wants to reduce visual noise
Customizable settings:
Toggle day labels on/off
Choose line and text colors
Set label size to match your chart style
Candlestick analysis
Enhanced Smoothed Heiken Ashi CandlesSmooth Heikin Ashi is a modified version of the traditional Heikin Ashi candlestick charting technique that applies additional smoothing to reduce noise and provide clearer trend signals.
Traditional Heikin Ashi Basics
Heikin Ashi (Japanese for "average bar") transforms regular candlesticks using these formulas:
Close = (Open + High + Low + Close) / 4
Open = (Previous HA Open + Previous HA Close) / 2
High = Maximum of (High, HA Open, HA Close)
Low = Minimum of (Low, HA Open, HA Close)
Smooth Heikin Ashi Enhancement
The smooth version applies moving averages to the Heikin Ashi values, typically using:
Simple Moving Average (SMA)
Exponential Moving Average (EMA)
Weighted Moving Average (WMA)
Common smoothing periods range from 5 to 21, with 14 being popular.
Key Benefits
Noise Reduction: Further filters out market noise compared to standard Heikin Ashi, making trends more apparent.
Clearer Signals: Produces smoother transitions between bullish and bearish phases, reducing false signals.
Trend Identification: Makes it easier to identify the dominant trend direction and potential reversals.
Trading Applications
Trend Following: Green/white candles indicate uptrends, red/black indicate downtrends
Entry/Exit Points: Color changes can signal potential trade entries or exits
Support/Resistance: Smoother price action helps identify key levels
Multiple Timeframe Analysis: Works well across different timeframes
The main tradeoff is that increased smoothing creates more lag, so signals may come later than with traditional Heikin Ashi or regular candlesticks.
4H Crypto System – EMAs + MACD//@version=5
indicator("4H Crypto System – EMAs + MACD", overlay=true)
// EMAs
ema21 = ta.ema(close, 21)
ema50 = ta.ema(close, 50)
ema200 = ta.ema(close, 200)
// MACD Settings (standard)
fastLength = 12
slowLength = 26
signalLength = 9
= ta.macd(close, fastLength, slowLength, signalLength)
// Plot EMAs
plot(ema21, title="EMA 21", color=color.orange, linewidth=1)
plot(ema50, title="EMA 50", color=color.blue, linewidth=1)
plot(ema200, title="EMA 200", color=color.purple, linewidth=1)
// Candle coloring based on MACD trend
macdBull = macdLine > signalLine
barcolor(macdBull ? color.new(color.green, 0) : color.new(color.red, 0))
// Buy/Sell signal conditions
buySignal = ta.crossover(macdLine, signalLine) and close > ema21 and close > ema50 and close > ema200
sellSignal = ta.crossunder(macdLine, signalLine) and close < ema21 and close < ema50 and close < ema200
// Alerts
alertcondition(buySignal, title="Buy Alert", message="Buy Signal: MACD bullish crossover and price above EMAs")
alertcondition(sellSignal, title="Sell Alert", message="Sell Signal: MACD bearish crossover and price below EMAs")
reversalthis is a simple ema indicator. i specifically set my fast ema to 4 and my slow ema to 13. i only turn on signals after 9;30 am and wait for the ema cross signal to fire once a swing point has been sweeped. i follow the daily. If the daily high has been sweep the previous day and or closed then we are taking highs therefor bullish bias. vice versa for sells. if bullish then only take bullish 4/13 ema cross.THIS CROSS IS MY SIGNAL THAT THERE IS A POTENTIAL CHANGE OF ORDERFLOW, YOU MUST VERIFY THAT THERE IS INDEED A BREAKER BLOCK BEFORE ENTERING. i dont actually just follow a simple ema cross. it means something.
📈 Linearity (ER 0–1) + ADRMAX % Table
This indicator combines two powerful concepts to help traders assess trend efficiency and intraday thrust strength:
🔹 1. Linearity (Kaufman Efficiency Ratio)
Measures how efficiently price has trended over a selected lookback period.
Values range from 0 to 1, where:
1.0 = perfectly trending market (no noise)
0.0 = completely choppy market (all noise)
Optional method: New High Persistence (fraction of bars in the period that hit a new high).
🔹 2. ADRMAX % (Average Daily Range Max as %)
Calculates the average of top % biggest green daily candles (measured as % range: (high - low) / low × 100) over a given lookback.
Projects this ADRMAX % above current lows as a thrust-level expectation.
Marks candles exceeding this dynamic threshold, helping identify unusual momentum.
📊 On-Chart Table Display
Real-time display of:
Linearity (0–1 scale)
ADRMAX %
Table is color-coded and position-customizable.
🛠️ Use Cases:
Trend-following filters: only act when ER > 0.75.
Thrust detection: breakout days with range > ADRMAX.
Adaptive entries: combine both for better timing.
LaCrazy Smash CandleLaCrazy Smash Candle highlights powerful engulfing candles that signal potential momentum reversals or breakout continuation.
Smash Long: The candle's low touches or dips below the prior candle's low, then closes above the previous high with a strong body (minimum % of the candle range).
Smash Short: The candle's high touches or exceeds the prior high, then closes below the previous low with a strong body.
These “Smash” moves often occur at key pivot points, signaling decisive rejections or trend continuation. Customize the body strength filter to match your strategy needs.
Pro Scalping Strategy [1Min | No Repaint | High Precision]Pro Scalping Strategy
Dual-Mode Precision Scalping System | EMA Trend + RSI + ATR | Non-Repainting
🔍 Overview
This indicator is a precision-engineered scalping tool optimized for lower timeframes (1–5 min), offering stable Buy/Sell signals without repainting.
Built on a robust trend-following framework, this system gives you the choice of two operating modes:
🔒 High Accuracy: Strict filters, fewer but stronger signals
⚡ More Signals: Looser filters, more frequent entries
🧠 How It Works
The logic is based on a multi-filter engine applied on closed candles only, ensuring non-repainting, clean, and confirmed entries.
⚙️ Technical Filters Used
1. EMA Trend Stack
Defines market trend using 3 EMAs (9, 21, 50)
Buy: EMA9 > EMA21 > EMA50
Sell: EMA9 < EMA21 < EMA50
2. EMA Crossover Filter
A confirmed crossover or crossunder is required from 2 candles back
Ensures trend momentum is validated before signal appears
3. EMA Slope Filter
Only accepts signals if mid EMA (EMA21) is sloping in trend direction
4. RSI Filter
Filters out signals when RSI is too extreme
RSI < overbought for Buy / RSI > oversold for Sell
5. ATR Filter
Confirms market has enough volatility
ATR must exceed a minimum threshold
✅ Modes Comparison
Feature High Accuracy Mode More Signals Mode
Min EMA Gap 0.1 0.05
Min ATR 0.2 0.1
RSI Range 30–70 25–75
Entry Frequency Lower Higher
Signal Quality Tighter + Stronger Looser + Flexible
🔔 Features
🔁 No repaint logic
⚙️ Adjustable settings with simple mode switch
⚡ Real-time alerts via alertcondition()
✅ Visual confirmation with BUY/SELL labels
💹 Suitable for scalping crypto, forex, gold, indices, and more
📌 Author: ALIP FX
“Success Elevated, Trade Smarter.”
Open Range Breakout (ORB) with Alerts
🚀 ChartsAlgo – Open Range Breakout (ORB) with Alerts
The Open Range Breakout (ORB) Indicator by ChartsAlg is designed for intraday traders looking to capitalize on price movements after the market’s opening range. This tool is especially effective for futures (MNQ, MES) and high-volatility stocks or crypto where initial volatility sets the tone for the session.
This indicator identifies a user-defined opening range window, plots the high/low lines of that range, and visually alerts users when price breaks out above or below the range — with options to customize breakout repetitions, background fill, and alerts.
💡 What is an Open Range Breakout (ORB)?
The opening range represents the high and low established during the first few minutes of the trading session — usually 15 or 30 minutes. Many intraday strategies are based on the idea that breaking out of this initial range often signals strong momentum and trend continuation.
Traders often enter:
Long when price breaks above the range high.
Short when price breaks below the range low.
⚙️ How It Works
You define a session window (e.g., 09:30–09:45 EST).
The indicator tracks the high and low during this time.
Once the session ends, the high and low become your range breakout levels.
The indicator then:
Plots lines for visual clarity
Optionally fills background between the range
Triggers breakout signals if price crosses the levels
Provides alerts when breakouts occur
🛠️ Settings Breakdown
🔹 Session Settings
Range Session: Set your preferred window (e.g., 0930–0945). Can be premarket, first 30 mins, or any custom time.
Time zone: Use "America/New York" for EST (default) or change to "GMT+0" for international traders.
🔹 Breakout Settings
Bullish Breakout Signals: Number of allowed breakout alerts above the range.
Bearish Breakout Signals: Number of allowed breakout alerts below the range.
This prevents repeated alerts once breakout has been confirmed.
🔹 Display Settings
Show Background Fill: Fills area between high/low of the range for easier visual analysis.
Show Breakout Signals: Triangle markers plotted on the chart when breakouts happen.
Only Show Today’s Range: Keeps the chart clean by showing only the most current day’s range.
🔹 Color Settings
Range High/Low Line Colors: Choose any color for clarity.
Range Fill Color: Customize the highlight area for your chart style.
📊 Chart Features
Range High/Low Lines: Automatically plotted after range session ends.
Visual Fill Box: Optional background shading between the opening range.
Triangle Breakout Markers: Appear at the breakout candle.
Alerts: Can be used with TradingView’s alert system to notify you of breakouts in real-time.
🔔 Alerts
Two alert conditions are built in:
Bullish Breakout: Triggers when price breaks above the high of the range.
Bearish Breakout: Triggers when price breaks below the low of the range.
Example Alert Message:
📈 “Bullish Breakout above Open Range on AAPL!”
To activate:
Click “🔔 Alerts” on TradingView.
Set condition to this script.
Choose “ORB Breakout Up” or “ORB Breakout Down”.
Choose alert frequency and notification method.
⚠️ DISCLAIMER
ChartsAlgo tools are for informational and educational purposes only.
They are not financial advice or signals. Past performance does not guarantee future results. Use at your own risk and always implement solid risk management.
By using this indicator, you agree that you are solely responsible for any trades or decisions made based on the information provided.
Highlight Highest Volume CandleHow it works:
lookback: how many bars to look back for highest volume (default 50).
highestVol: the maximum volume in that range.
isHighestVol: true if the current candle’s volume equals that maximum.
plotcandle: draws the candle in bright yellow.
plotshape: adds a small triangle below the bar for extra visibility.
Samrat AlertThis indicator generates buy sell signal on different timeframe on all instruments based on price and sma combination
EMA Crossover with DiamondsGreen diamond when 20 exponential moving average crosses over 50 exponential moving average, and shows a red diamond when 50 moving average crosses over 20 exponential moving average
WaveTrend Strategy It is the wave trend indicator transformed into a strategy with Zapay intelligence. Buys on yellow candles and sells on turquoise candles. Opens both long and short trades. All parameters can be adjusted. Set the parameter according to the chart minute and test.
Williams Fractals with Buy/Sell Signals🧠 Concept:
This indicator is based on the concept of fractal swing highs and lows, commonly used in Bill Williams’ trading methods. A fractal forms when a candle’s high or low is higher/lower than a set number of candles on both sides. This structure helps identify local market turning points.
⚙️ Inputs:
Fractal Sensitivity (swingSensitivity):
Number of candles required on each side of the central bar to validate a fractal.
For example, if set to 2, a swing high is detected when a bar’s high is higher than the previous 2 bars and the next 2 bars.
✅ Features:
Fractal Detection:
Plots white triangles above swing highs (down fractals).
Plots white triangles below swing lows (up fractals).
Buy/Sell Signals:
Buy Signal: Triggered when the candle closes above the most recent down fractal.
Sell Signal: Triggered when the candle closes below the most recent up fractal.
Signals alternate — a Buy must follow a Sell and vice versa to reduce noise.
Signal Labels:
"BUY" label appears below the candle in green.
"SELL" label appears above the candle in red.
Alerts:
Real-time alerts are available for both Buy and Sell signals via alertcondition().
📌 Use Case:
This indicator can help you:
Detect short-term reversals.
Confirm breakouts or structure shifts.
Time entries with clear logic based on price action.
Bar ColorThis script implements a designed to [purpose – e.g., identify trend direction, generate trade signals, highlight overbought/oversold conditions
This script is based on , and is fully customizable with adjustable parameters.
Use it on any asset and timeframe. Best paired with .
🧩Tawajoh +🧩Tawajoh + Indicator Explanation
The Tawajoh + indicator is a comprehensive technical analysis tool designed to provide a broad market perspective by combining several advanced analytical techniques into a single indicator.
Main Components:
Market Shift Logic:
This part uses the Hull Moving Average (HMA) to detect market shifts by comparing a fast HMA with a delayed one. When a crossover or crossunder happens, it defines a new "Shift Level" and displays labels showing volume or price data along with color-coded signals indicating the market direction.
Smoothed Heiken Ashi (SHA):
Applies smoothing on traditional Heiken Ashi candles using various moving averages (like LSMA, SMA, EMA, etc.) to provide clearer trend visualization with reduced noise and volatility.
HMA PLANz (Hull Moving Averages):
Plots two customizable moving averages (types include SMA, EMA, WMA, HMA) with user-defined source prices (close, high, low) and lengths, along with optional labels for easy identification.
High Liquidity Midline Logic:
Identifies the candle with the highest volume in a given period and plots a midpoint line (average of high and low) for that candle. The line color switches between green and red depending on the current close price position, and the high-volume candle is highlighted in yellow.
RSI 50 EMA Smoothed:
A refined RSI indicator smoothed using a custom EMA near the 50 level, offering precise signals with color changes based on price action and optional labels for clarity.
Volumatic Logic (Volume Dynamics):
Tracks volume trends using smoothed EMAs, plotting volume candles with dynamic colors and gradients that reflect uptrends or downtrends in volume strength, helping to confirm market momentum shifts.
How to Use Tawajoh + Indicator:
Detect Market Shifts: Watch the Market Shift levels and their labels for important turning points.
Read Overall Trend: Use the Smoothed Heiken Ashi candles and moving averages to identify the main trend with less noise.
Monitor Liquidity: The High Liquidity Midline helps spot potential support/resistance levels based on heavy trading activity.
Confirm with RSI & Volume: RSI signals around level 50 combined with volume dynamics give additional confirmation of trend strength or reversals.
ZY Return CandlesThe ZY Return Candles indicator detects possible reversal candles and generates trading signals with these candles. Since the TP targets of the transactions are the opposite Bollinger Bands, the indicator should be used together with Bollinger Bands. When the candle that the transaction came from and the candle that closed before it are considered together, the position should be SL when the highest/lowest values of these two candles are violated, and the position should be SL with the opening of the following candle in the opposite direction and the TP target should be 1% more than the loss made with SL.
Sweep + BOS (Lines + First Confirmed Only)🔍 Indicator: Sweep + BOS (Break of Structure with Visual Lines)
🧠 Overview
This indicator combines Swing detection, Liquidity Sweeps, and Break of Structure (BOS) logic, with:
Customizable swing length,
BOS signals only after confirmed sweeps,
BOS shown only once per sweep,
Visual labels and connecting lines to highlight structure breaks clearly.
⚙️ Inputs
Swing Length:
Defines how many candles to use to identify a swing high/low. Must be an odd number (e.g., 3, 5, 7...).
Sweep Lookback Window:
Sets how far back the script checks for a sweep (false breakout over a swing).
BOS Validity After Sweep:
Number of bars within which a BOS can be considered valid after a sweep.
Toggle Options:
Show/hide:
Swing Labels
Sweep Labels
BOS Labels
BOS Connecting Lines
📌 Logic Breakdown
✅ Swings
Swing High: A candle’s high is greater than the highs of all N candles on both sides.
Swing Low: A candle’s low is lower than the lows of all N candles on both sides.
💧 Liquidity Sweeps
Sweep High:
Price spikes above a previous Swing High,
Then closes back below it (false breakout).
Sweep Low:
Price drops below a previous Swing Low,
Then closes back above it.
🔁 Break of Structure (BOS)
A BOS is only shown if:
It occurs after a valid sweep (within X bars),
It hasn’t been already plotted for that sweep,
BOS ↑ is only possible after Sweep Low,
BOS ↓ is only possible after Sweep High,
Opposite BOS type resets the last BOS state.
BOS ↑ (Bullish):
Confirmed when price closes above previous Swing High after Sweep Low.
Label appears at the candle low.
A line is drawn from the Swing Low to the BOS candle.
BOS ↓ (Bearish):
Confirmed when price closes below previous Swing Low after Sweep High.
Label appears at the candle high.
A line is drawn from the Swing High to the BOS candle.
Swing High/Low with Liquidity Sweeps🧠 Overview
This indicator identifies swing highs and swing lows based on user-defined candle lengths and checks for liquidity sweeps—situations where the price breaks a previous swing level but then closes back inside, indicating a potential false breakout or stop hunt. It also supports visual labeling and alerts for these events.
⚙️ Inputs
Swing Length (must be odd number ≥ 3):
Determines how many candles are used to identify swing highs/lows. The central candle must be higher or lower than all neighbors within the range.
Example: If swingLength = 5, the central candle must be higher/lower than the 2 candles on both sides.
Sweep Lookback (bars):
Defines how many bars to look back for possible liquidity sweeps.
Show Swing Labels (checkbox):
Optionally display labels on the chart when a swing high or low is detected.
Show Sweep Labels (checkbox):
Optionally display labels on the chart when a liquidity sweep occurs.
🕯️ Swing Detection Logic
A Swing High is detected when the high of the central candle is greater than the highs of all candles around it (as per the defined length).
A Swing Low is detected when the low of the central candle is lower than the lows of surrounding candles.
Swing labels are placed slightly above (for highs) or below (for lows) the candle.
💧 Liquidity Sweep Logic
A Sweep High is triggered if:
The current high breaks above a previously detected swing high,
And then the candle closes below that swing high,
Within the configured lookback window.
A Sweep Low is triggered if:
The current low breaks below a previous swing low,
And then closes above it,
Within the lookback window.
These are often seen as stop hunts or fake breakouts.
🔔 Alerts
Sweep High Alert: Triggered when a sweep above a swing high occurs.
Sweep Low Alert: Triggered when a sweep below a swing low occurs.
You can use these to set up TradingView alerts to notify you of potential liquidity grabs.
📊 Use Cases
Identifying market structure shifts.
Spotting fake breakouts and potential reversals.
Assisting in smart money concepts and liquidity-based trading.
Supporting entry timing in trend continuation or reversal strategies.
Simple Bollinger BandsBollinger Bands are a popular technical analysis indicator used to measure market volatility and identify potential overbought or oversold conditions.
This script plots:
A middle band (20-period Simple Moving Average)
An upper band (SMA + 2 standard deviations)
A lower band (SMA – 2 standard deviations)
Alt Market Index (Halving-Adjusted BTC Supply, EMA)
암호화폐 알트코인 시총 상위 125개를 모아서
나스닥 기반의 계산식을 활용한 알트코인지수125를 만들었습니다.
반감기에 따른 비트코인 하루 채굴량 갯수 추가까지 포함한 버전입니다.
일봉이 기준이 됩니다.
I created the Altcoin Index 125 by compiling the top 125 altcoins by market capitalization in the cryptocurrency market, using a calculation method based on the Nasdaq index.
This version also includes adjustments for Bitcoin’s halving events, reflecting changes in daily mining output. The index is based on daily candles.
Dynamic Sniper ProDynamic Sniper Pro - Binary Options Signal
Description:
Dynamic Sniper Pro is a powerful Pine Script v6 indicator designed for binary options trading. It combines Exponential Moving Averages (EMAs), Relative Strength Index (RSI), and an optional ATR filter to generate precise buy and sell signals. Ideal for short-term charts like 1-minute, this indicator helps traders spot trend reversals and breakouts with clear visual arrows. Tested on CAD/JPY, it recently delivered actionable signals during the morning session on July 01, 2025.
How It Works:
Buy Signal (Green Arrow): Triggered when the closing price exceeds both the 3-period Fast EMA and 8-period Slow EMA, RSI drops below the oversold level (default 40), and (if ATR filter is on) the price breaks above the Slow EMA + 0.15 * ATR. Enter a call option at the next candle open.
Sell Signal (Red Arrow): Triggered when the closing price falls below both EMAs, RSI rises above the overbought level (default 60), and (if ATR filter is on) the price breaks below the Slow EMA - 0.15 * ATR. Enter a put option at the next candle open.
Key Features:
Customizable parameters: Adjust EMA lengths, RSI periods, oversold/overbought levels, and ATR multiplier.
Optional ATR filter to reduce whipsaw entries.
Visual alerts with arrows and background highlights.
Compatible with any forex pair or timeframe—optimize for your strategy!
Settings:
Fast EMA Length: 3 (short-term trend)
Slow EMA Length: 8 (trend confirmation)
RSI Length: 14 (default smoothness)
Oversold Level: 40 (tweak for sensitivity)
Overbought Level: 60 (tweak for sensitivity)
Use ATR Filter: True (optional)
ATR Length: 14
ATR Multiplier: 0.3 (adjust for breakout strength)
Performance:
Backtesting on CAD/JPY 1-minute from 10:34–11:34 AM PDT on July 01, 2025, showed promising signal frequency. Results may vary—test on your preferred asset.
Tips:
Set alerts via the "Alerts" tab for real-time notifications.
Adjust oversold/overbought levels (e.g., 45/55) for fewer/more signals.
Best on volatile pairs like CAD/JPY or EUR/USD.
Disclaimer:
This indicator is for educational purposes only. Past performance is not indicative of future results. Use at your own risk, and consider market conditions and risk management.