[COW] Market DirectionA script that will plot a table on screen that shows your RSI and EMA directions for multiple timeframes. This will help determine your direction and bias for multiple timeframes. I have included some code that I have in a private library as well showing how I handle types with pine script and how they come in handy.
This indicator is useful to help determine chop, directional movement, and more!
Candlestick analysis
KRAL / KING INDIKATOR - MACD & CCI (3 Mum Toleransli)Hello. This script gives a buy alert based on the CCI and MACD indicators.
AlgoRanger - Oscillator Matrix/@version=5
indicator("AlgoRanger - Oscillator Matrix", shorttitle="AlgoRanger Oscillator Matrix", overlay=false, max_lines_count=500)
// === USER INPUTS ===
dW = input.bool(true, "Enable Hyper Wave", group="Hyper Wave")
mL = input.int(7, "Main Length", group="Hyper Wave", minval=5, maxval=21)
sT = input.string("SMA", "Smoothing Type", group="Hyper Wave", options= )
sL = input.int(3, "Smoothing Length", group="Hyper Wave", minval=2, maxval=10)
// Colors
fCSS = input.color(#51B155, "Main Color", group="Hyper Wave")
sCSS = input.color(#80828D, "Secondary Color", group="Hyper Wave")
// Divergence
dvT = input.int(20, "Divergence Sensitivity", group="Divergence", minval=20, maxval=40)
sDiv = input.bool(true, "Show Divergences", group="Divergence")
// Reversal Factor
rsS = input.bool(true, "Enable Reversal Factor", group="Reversal")
rsF = input.int(4, "Reversal Strength", group="Reversal", options= )
// Money Flow
Smf = input.bool(true, "Enable Money Flow", group="Money Flow")
mfL = input.int(35, "Money Flow Length", group="Money Flow", minval=10, maxval=55)
mfS = input.int(6, "Money Flow Smoothing", group="Money Flow", minval=2, maxval=10)
// === OSCILLATOR FUNCTION ===
oscillator(len, smt) =>
float hi = ta.highest(len)
float lo = ta.lowest(len)
float av = ta.sma(hl2, len)
sig = ta.ema(ta.linreg((close - math.avg(hi, lo, av)) / (hi - lo) * 100, len, 0), smt)
sgD = sT == "SMA" ? ta.sma(sig, smt) : ta.ema(sig, smt)
// === CALCULATE OSCILLATOR ===
= oscillator(mL, sL)
// === PLOTTING OSCILLATOR ===
pO = plot(oSig, color=fCSS, title="Oscillator Signal")
iO = plot(oSgD, color=sCSS, title="Oscillator Smoothed")
fill(pO, iO, color=color.new(fCSS, 80))
// === MONEY FLOW CALCULATION ===
mfVal = ta.sma(ta.mfi(hl2, mfL) - 50, mfS)
mfColor = mfVal > 0 ? color.green : color.red
// === PLOTTING MONEY FLOW ===
plot(Smf ? mfVal : na, color=mfColor, title="Money Flow")
// === REVERSAL SIGNALS ===
plotshape(oSig > 50 and rsS, location=location.absolute, color=color.blue, style=shape.triangleup, title="Reversal Up")
plotshape(oSig < -50 and rsS, location=location.absolute, color=color.red, style=shape.triangledown, title="Reversal Down")
OHLC Candles Overlay [Multi TF]- 3 CandlesMulti timeframe overlay candles for higher timeframe analysis on lower timeframes and vice versa.
P177 - SMC - IFC Candle (Bullish)To automatically detect Bullish Institutional Funded Candles (IFC) — the first strong bullish candle that appears after a liquidity grab below a recent low.
This is a classic Smart Money Concepts (SMC) setup used to anticipate low-risk, high-reward BUY entries.
Candlestick High/Low LabelsCandlestick High/Low Labels and OHLCV Dashboard with adjustable lookback period
Origin + Surge Zone (v2 fixed)test inventory surge
Searches for 2 or more consecutive doji candles → marks this as "origin" (grey box).
Waits for 2 strong candles (bullish or bearish) → surge → records its high as TP.
Strict Origin Zone Detectorinventory theory indicator test
Searches for 2 or more consecutive doji candles → marks this as "origin" (grey box).
Waits for 2 strong candles (bullish or bearish) → surge → records its high as TP.
Nifty Liquidity-Grab (entry/close format only)LIquidity grab candle for taking long and short entries
VThis is a VIP indicator for internal use only that provides a bullish and downtrend prediction feature
Improved Swing Low/High StrategyThis strategy is a pure “enter on swing low, exit on swing high” system that works as follows:
Immediate Pivot Detection
It flags a bar as a pivot low the moment its low is the lowest of the last N bars (no look-ahead).
Likewise, it flags a pivot high as soon as the bar’s high is the highest of the last N bars.
Market Orders at Bar Close
On detecting a pivot low, you open a long at that bar’s close.
On detecting a pivot high, you close your long (and—if enabled—open a short).
Clean Signal Plotting
It draws only the actual buy/sell arrows on the exact bars where positions open or close.
There’s no repainting, because pivots are detected with zero look-ahead and orders fire at bar close.
Optional Shorts
You can enable mirrored short entries on pivots high and cover on pivots low, giving symmetrical long/short swing signals.
In essence, it automates the classic swing-trading rule: “buy at local lows, sell at local highs,” with clear on-chart arrows showing exactly where each trade occurs.
Volume Pulse con segnali e DashboardThe Volume Pulse indicator is designed for scalping strategies, helping traders identify quick, high-probability trading opportunities based on two main factors:
Range Breakout: When the price breaks above or below a key level (the highest or lowest point of a specified range).
Volume Confirmation: The breakout is validated if the volume is significantly higher than the average (multiplied by a customizable factor) to confirm that the move is strong and not a false breakout.
How It Works:
BUY Signals: Triggered when the price breaks above the high of a defined range (range 1 or 2), with volume exceeding the average by the specified multiplier (vol_threshold).
SELL Signals: Triggered when the price falls below the low of a defined range, with volume confirming the move.
The BUY signals are shown as green upward arrows below the candle, while the SELL signals appear as red downward arrows above the candle.
Sidebar Dashboard:
The sidebar dashboard provides real-time market conditions:
Signal Status: Displays whether a BUY or SELL signal is active.
Volume: Shows the current candle's volume.
Volatility: Indicates the volatility, calculated as the standard deviation of the closing prices, useful for assessing market pressure.
Alerts:
Alerts are set up to notify the trader when a BUY or SELL signal occurs, allowing for quick reaction to market conditions.
Customization:
You can adjust the volume multiplier to make the signals more or less selective.
The dashboard can be customized to show additional information or adjust its placement on the chart.
Conclusion:
This scalping indicator combines breakout analysis with volume confirmation, offering a quick and effective way to spot short-term trading opportunities. It provides clear visual signals and an intuitive dashboard to help scalpers analyze the market and act swiftly.
Major Trading SessionsThis script displays the trading sessions of the 3 markets that are relevant in crypto. US, UK, and Tokyo.
Real Open/Close Ticks for Heiken Ashi CandlesJapanese candle open and close prices. Good if you're using a HeikenAshi chart and you want to see real opens and closes.
ICT Killzones & Pivots [TFO]shorten the date name
adjust to fit in JST time zone (fit for Japan based traders like me, who is early bird and can't trade at 10PM JST = NY open)
OHLC Candles Overlay [Multi TF]Two Multi timeframe OHLC candles (previous and current). Customized candles overlay of HTF on LTF and vice versa.
OB Petir [Unofficial]Indicator to detect "OB Petir" pattern.
Note: This indicator only detects "OB Petir" pattern based on candle sequence. Regarding whether the "OB Petir" is valid or not, please check it yourself.
MR CHAU – Smart Trend Signal🔍 MR CHAU — Trend & Reversal Smart Indicator
MR CHAU is a smart price action-based tool that helps you spot trend direction and key reversal signals. It colors candles based on strength, detects bullish/bearish pinbars and engulfing patterns, and highlights retest zones where price often turns.
📊 Built for traders who value clean visuals and actionable signals — no clutter, just clarity.
✅ Buy/Sell alerts included
✅ Works on all timeframes
✅ Perfect for trend-followers and reversal traders
2 Red + 1 Green Buy / 2 Green + 1 Red Sell Signalits give buy and sell signal special in gold usd which work well in houlry and 2 houlry chart not less then hourly also we see suptertrde and 50 sma for entry and exit ..
signal also genrate when only less then 15 point stoploss candle form