REDLIGHT GREENLIGHTBased on the Stochastic Momentum Index and L2 Ehlers Loops by blackcat1402. Added red and green background (reflects when the yellow histogram is above or below zero).
Indicators and strategies
VLM ALERTalert when there is unusual volume on the chart. Instead of sitting around waiting for us to go out, waiting for something to come in and see
MAC-Z VWAP Indicator + L/S ThresholdOriginal Script by Lazybear.
Added long/short threshold on the MAC-Z source.
Added BG coloring for visually backtesting.
Script to version 5.
Custom RSI with Dual Smoothing + Bias Bands + ZonesRSI indicator with two layers of smoothing, key levels (20, 40, 50, 60, 80), and color-coded background zones for bullish, bearish, and neutral bias.
Great for spotting momentum, trend direction, and overbought/oversold conditions across any timeframe.
50% of Previous 1H Candle (Color Logic)📌 Script Title: 50% Midpoint of Previous 1H Candle (Color Coded)
📝 Description:
This indicator draws a horizontal line at the 50% (midpoint) of the most recently closed 1-hour candle, helping traders visualize intraday support/resistance and sentiment bias.
🔹 Key Features:
Plots the midpoint of the last 1H candle as a horizontal line.
Color-coded line and label:
🟢 Green: Previous candle was bullish
🔴 Red: Previous candle was bearish
⚪ Gray: Neutral (doji or equal open/close)
Displays the exact price level with a floating label.
Works on any lower timeframe chart (e.g., 5m, 15m, 30m).
Automatically updates every hour after the 1H candle closes.
📈 Use Cases:
Trade around the 1H midpoint as a dynamic pivot zone.
Confirm or fade price breakouts/rejections at this level.
Use it with trendlines, supply/demand zones, or VWAP.
🔍 Technical Notes:
The midpoint is calculated using:
Midpoint = (High + Low) / 2
from the most recent closed 1H candle.
Color logic is based on whether the 1H candle closed above or below its open.
🚀 Enhancement Ideas (future updates):
Add optional alerts on cross of the midpoint.
Show multiple historical midpoint levels.
Input toggle to enable/disable color coding.
Whether you’re scalping intraday or watching for reaction zones, this tool gives you a clean, real-time level to anchor your trades around.
Happy trading! 💹
— Built with ❤️ in Pine Script v6
goforthfx: 4EMA, Patterns, Pivots & Pin BarsMerging 4 ema, pivot standards, pin bars and 3 candle reversal indicator into one.
Use it for information purposes so to see if what is going on with the charts
MACD Candle Colorsvfvrefvwrfvwefcqedcwedcedcwdcqwdcqwdcqwdckjnqwdcijnq wdcokmqnwdcoknedlkcnedklcqewd
cwqdcqw
dc
qwdcqwedc
qwdcqqwdcqwkdncowkqndc
w
cqwdcqwdcqwdcqwdcercefcedc
Anchored VWAP Indicator (date/time based)An anchored VWAP indicator for tracking VWAP based off specific time and date based events.
The first two track the futures market weekly and daily open
The next 4 track VWAP from specific date and time/date events based on the users criteria.
Israel Time – Ori TartakovskiAdds a timeline of time in Israel above the original timeline with the time zone you selected.
(זמן ישראל בנוסף - (אורי טרטאקובסקיAdds a timeline of time in Israel above the original timeline with the time zone you selected.
COT INDEX by qdeedCOT Index
Calculation; COT Index = ((Current Net Position – Lowest Value in the Period) / (Highest Value in the Period – Lowest Value in the Period)) * 100
Use on the weekly timeframe.
10 EMA + 2 ATR Position SizingPosition sizing table based on 10 EMA and 2 ATR considering account balance, risk and option delta.
ROC / VWAP / ATR / RSI / MACD Combo//@version=5
indicator("ROC / VWAP / ATR / RSI / MACD Combo", overlay=true)
// === INPUTS ===
showROC = input.bool(true, "Show ROC")
rocLength = input.int(14, "ROC Length")
showVWAP = input.bool(true, "Show VWAP")
showATR = input.bool(true, "Show ATR")
atrLength = input.int(14, "ATR Length")
showRSI = input.bool(true, "Show RSI")
rsiLength = input.int(14, "RSI Length")
showMACD = input.bool(true, "Show MACD")
fastLen = input.int(12, "MACD Fast Length")
slowLen = input.int(26, "MACD Slow Length")
sigLen = input.int(9, "MACD Signal Length")
// === CALCULATIONS ===
// ROC
roc = ta.roc(close, rocLength)
// VWAP
vwap = ta.vwap
// ATR
atr = ta.atr(atrLength)
// RSI
rsi = ta.rsi(close, rsiLength)
// MACD
macdLine = ta.ema(close, fastLen) - ta.ema(close, slowLen)
signal = ta.ema(macdLine, sigLen)
hist = macdLine - signal
// === PLOTTING ===
// ROC (separate scale)
plot(showROC ? roc : na, title="ROC", color=color.aqua, display=display.none)
// VWAP (on chart)
plot(showVWAP ? vwap : na, title="VWAP", color=color.orange, linewidth=2)
// ATR (separate scale)
plot(showATR ? atr : na, title="ATR", color=color.red, display=display.none)
// RSI (separate scale, 0-100)
plot(showRSI ? rsi : na, title="RSI", color=color.blue, display=display.none)
hline(70, "RSI Overbought", color=color.gray, linestyle=hline.style_dotted)
hline(30, "RSI Oversold", color=color.gray, linestyle=hline.style_dotted)
// MACD (separate scale)
plot(showMACD ? macdLine : na, title="MACD Line", color=color.green, display=display.none)
plot(showMACD ? signal : na, title="Signal Line", color=color.red, display=display.none)
plot(showMACD ? hist : na, title="MACD Histogram", style=plot.style_columns, color=hist>=0 ? color.new(color.green,50) : color.new(color.red,50), display=display.none)
ADX MTF mura visionOverview
ADX MTF — mura vision measures trend strength and visualizes a higher-timeframe (HTF) ADX on any chart. The current-TF ADX is drawn as a line; the HTF ADX is rendered as “step” segments to reflect closed HTF bars without repainting. Optional soft fills highlight the 20–25 (trend forming) and 40–50 (strong trend) zones.
How it works
ADX (current TF) : Classic Wilder formulation using DI components and RMA smoothing.
HTF ADX : Requested via request.security(..., lookahead_off, gaps_off).
When a new HTF bar opens, the previous value is frozen as a horizontal segment.
The current HTF bar is shown as a live moving segment.
This staircase look is expected on lower timeframes.
Auto timeframe mapping
If “Auto” is selected, the HTF is derived from the chart TF:
<30m → 60m, 30–<240m → 240m, 240m–<1D → 1D, 1D → 1W, 1W/2W → 1M, ≥1M → same.
Inputs
DI Length and ADX Smoothing — core ADX parameters.
Higher Time Frame — Auto or a fixed TF.
Line colors/widths for current ADX and HTF ADX.
Fill zone 20–25 and Fill zone 40–50 — optional light background fills.
Number of HTF ADX Bars — limits stored HTF segments to control chart load.
Reading the indicator
ADX < 20: typically range-bound conditions; trend setups require extra caution.
20–25: trend emergence; breakouts and continuation structures gain validity.
40–50: strong trend; favor continuation and manage with trailing stops.
>60 and turning down: possible trend exhaustion or transition toward range.
Note: ADX measures strength, not direction. Combine with your directional filter (e.g., price vs. MA, +DI/−DI, structure/levels).
Non-repainting behavior
HTF values use lookahead_off; closed HTF bars are never revised.
The only moving piece is the live segment for the current HTF bar.
Best practices
Use HTF ADX as a regime filter; time entries with the current-TF ADX rising through your threshold.
Pair with ATR-based stops and a MA/structure filter for direction.
Consider higher thresholds on highly volatile altcoins.
Performance notes
The script draws line segments for HTF bars. If your chart becomes heavy, reduce “Number of HTF ADX Bars.”
Disclaimer
This script is for educational purposes only and does not constitute financial advice. Trading involves risk.
Intraday EMA Support/Resistance with Volume Filter by Shashwat Intraday EMA Support/Resistance with Volume Filter
Volatility % Bands (O→C)Volatility % Bands (O→C) is an indicator designed to visualize the percentage change from Open to Close of each candle, providing a clear view of short-term momentum and volatility.
**Histogram**: Displays bar-by-bar % change (Close vs Open). Green bars indicate positive changes, while red bars indicate negative ones, making momentum shifts easy to identify.
**Moving Average Line**: Plots the Simple Moving Average (SMA) of the absolute % change, helping traders track the average volatility over a chosen period.
**Background Bands**: Based on the user-defined Level Step, ±1 to ±5 zones are highlighted as shaded bands, allowing quick recognition of whether volatility is low, moderate, or extreme.
**Label**: Shows the latest candle’s % change and the current SMA value as a floating label on the right, making it convenient for real-time monitoring.
This tool can be useful for volatility breakout strategies, day trading, and short-term momentum analysis.
SK's Intraday EMA Support/Resistance with Volume FilterThis indicator plots EMA-based intraday support & resistance with volume filters to highlight low-volume crossovers.
Rayner Teo's EMA SettingCollection of Indicators for Rayner Teo's Strategy
- Displays the 20, 50, and 200 EMA s.
- Highlights the bar when the price enters the area between the 20 EMA and the 50 EMA .
- A green signal appears when the 20, 50, and 200 EMAs are aligned .
- A red signal appears when the price crosses down the 20 EMA during a bullish trend.
- The dim steplines below and above price bar show the 1.5 x ATR(20) used for stop loss .
MTF confluence 1m, 5m, 15m, 30m, 1hr, 2hr indociator (gree/ red)shows 1m, 5m, 15m, 30m, 1hr, 2hr candle charts either being green or red to show major trend forming up or down ( shows up as an indicator under chart)
Ranges by TraderHaroThis indicator highlights a custom price range for a selected date/time period on your chart. It draws key levels (0.00, 0.25, 0.50, 0.75, 1.00) within the range, visually marking the Premium Zone (upper range) and Discount Zone (lower range).
Features:
- Define a specific date/time range for the analysis.
- Optional fill between top and bottom levels with customizable color and transparency.
- Shows mid-levels (0.25, 0.50, 0.75) for additional guidance.
- Lines and fill can be extended to the right side of the chart.
- Labels for levels can be displayed or hidden.
Use Case:
Quickly identify where price is trading relative to a defined range, visualize potential zones of premium (resistance) and discount (support), and make better-informed trading decisions.
Mickey's TrendLock📌 Strategy Overview
The Mickey's Trendlock is a professional intraday trading system that combines long-term and short-term exponential moving averages (EMA200 & EMA20) with multiple confirmation filters to generate high-probability trade setups. It is designed for both trend-following crossovers and pullback entries, giving traders flexibility in approach.
⚙️ Core Logic
Entry Modes:
Cross Mode → Signals when EMA20 crosses above/below EMA200.
Pullback Mode → Signals when price pulls back to EMA20 within the larger EMA200 trend bias.
Confirmations (toggle on/off):
RSI(14) → Long only if RSI ≥ 50, Short only if RSI ≤ 50.
VWAP Bias → Longs above VWAP, Shorts below VWAP.
Volume Confirmation → Optional filter requiring Volume > SMA(20).
🛡️ Risk Management
Stop Loss Options:
ATR-based Stop with adjustable multiplier.
EMA-anchored Stop (EMA20 or EMA200).
Take Profit: Configurable Risk/Reward (R:R) ratio.
Trailing Stop: Optional ATR-based trailing stop for dynamic protection.
📊 Features
Customizable Risk Controls – ATR/EMA stop-loss, risk–reward targets, trailing stops.
Clean Visuals – EMA200, EMA20, and VWAP plotted for clarity.
Alerts – JSON-format alerts for automated broker integration.
Entry Labels – BUY/SELL markers on chart for visual tracking.
✅ Best Suited For
Intraday traders who prefer trend-based setups with confirmation filters.
Traders looking for rule-based entries & exits with strict risk management.
Users who want alert-ready signals for automated execution.
⚠️ Disclaimer
This script is for educational purposes only. It does not constitute financial advice. Trading involves risk; always test thoroughly before using live capital.
heat map Last Close (Green/Red) 1-5-15-30-60-120m candle chartheat map Last Close (Green/Red) 1-5-15-30-60-120m candle chart