DRKFRX INDICTOR GOL BUY SNIPESIndicator Overview
The LWMA-MA is a hybrid trading tool combining Linear Weighted Moving Averages (LWMA) with EMA trend filtering, designed for disciplined trend-following strategies. It generates clear buy/sell signals while enforcing strict risk management rules.
Corak carta
Multi-Time2 gogWhen the Auto option is selected, the timeframe of the indicator is chosen automatically based on the chart timeframe. The Timeframe dropdown is ignored. The automated timeframes are:
'1 day' for any chart timeframes below '1 day'
'1 week' for any timeframes starting from '1 day' up to '1 week'
'1 month' for any timeframes starting from '1 week' up to '1 month'
'3 months' for any timeframes starting from '1 month' up to '3 months'
'12 months' for any timeframes above '3 months'"
Albin's Stradegy //@version=5
indicator("SMA Crossover Signal", overlay=true)
/**
* This indicator identifies trade signals based on the crossover of two simple moving averages (SMA) and the relative position of the price to a longer-term SMA.
*
* - It calculates the 5-period, 20-period, and 50-period SMAs.
* - A 'BUY SIGNAL' is displayed when the 5-period SMA crosses above the 20-period SMA, but only if the price is above the 50-period SMA (bullish trend confirmation).
* - A 'SELL SIGNAL' is displayed when the 5-period SMA crosses below the 20-period SMA, but only if the price is below the 50-period SMA (bearish trend confirmation).
* - The background color changes dynamically: green when the price is above the 50-period SMA, red when it is below.
*/
Rishabh's Price & Volume Change IndicatorRishabh's Price & Volume Change Indicator
If price is up and volume is down for current and prev close then green
else
yellow
Renko Sincronizado a VelasTeniendo en cuenta los precios máximos y mínimos alcanzados en cada una de las velas, aplicando también a cualquier tipo de gráficos, podemos obtener ladrillos del tamaño que definamos en TICKS, para de esta forma poder visualizar RENKO sobre dichas velas.
Last NR7 Highlight (Day Timeframe Only)This Indicator identifies and highlights the recent instances of NR7 (Narrowest Range 7) candles on your chart. NR7 candles are significant because they represent periods of consolidation, often preceding strong breakouts or trend reversals. The script makes it easy to spot these critical candles with clear visual cues, helping traders make informed decisions.
Al Sat Sinyali ve Para Giriş Çıkışı//@version=5
indicator("Al Sat Sinyali ve Para Giriş Çıkışı", overlay=true)
// Parametreler
shortLength = input.int(13, title="Kısa Periyot MA (13 Gün)")
mediumLength = input.int(8, title="Orta Periyot MA (8 Gün)")
longLength = input.int(5, title="Kısa Orta MA (5 Gün)")
longTermLength = input.int(55, title="Uzun Periyot MA (55 Gün)")
src = input(close, title="Veri Kaynağı")
// Hareketli Ortalamalar
ma13 = ta.sma(src, shortLength)
ma8 = ta.sma(src, mediumLength)
ma5 = ta.sma(src, longLength)
ma55 = ta.sma(src, longTermLength)
// Al/Sat Sinyalleri
longSignal = ma13 > ma8 and ma8 > ma5 // Fiyat 13 MA, 8 MA ve 5 MA üstünde
shortSignal = ma13 < ma8 and ma8 < ma5 // Fiyat 13 MA, 8 MA ve 5 MA altında
// Temkinli tut sinyali
cautionSignal = ma13 > ma8 and ma8 < ma5 // Fiyat 13-8 üstü, 5-8 altı
// Arka Plan Renkleri
bgcolor(ma55 > src ? color.new(color.green, 90) : color.new(color.red, 90))
// Al/Sat ve Temkinli Tut Sinyalleri
plotshape(longSignal, color=color.green, style=shape.labelup, location=location.belowbar, text="AL", textcolor=color.white, size=size.small)
plotshape(shortSignal, color=color.red, style=shape.labeldown, location=location.abovebar, text="SAT", textcolor=color.white, size=size.small)
plotshape(cautionSignal, color=color.orange, style=shape.triangledown, location=location.abovebar, text="TEMKİN", textcolor=color.white, size=size.small)
// 55 Günlük Hareketli Ortalama
plot(ma55, color=color.blue, linewidth=2, title="55 Günlük MA")
// Para Giriş-Çıkış Farkı (Volatilite/Değişim farkı)
volumeDelta = volume - ta.sma(volume, 14) // 14 periyotluk hacim farkı
plot(volumeDelta, color=color.purple, style=plot.style_histogram, linewidth=2, title="Para Giriş/Çıkış Farkı")
Lagging Span Bull/Bear ZonesThis indicator marks bullish or bearish trading zones based on the position of the Chikou Span above or below the Kumo of the Ichimoku cloud, across different timeframes.
Ansh Intraday Crypto Strategy v5//@version=6
strategy('Refined Intraday Crypto Strategy v5', overlay=true)
// Inputs
emaLength = input.int(55, title='EMA Length') // Custom EMA Length
rsiLength = input.int(14, title='RSI Length') // Custom RSI Length
rsiOverbought = input.int(70, title='RSI Overbought Level')
rsiOversold = input.int(30, title='RSI Oversold Level')
volumeMultiplier = input.float(3.0, title='Volume Multiplier (Above Average)') // Custom Volume Multiplier
// Indicators
ema = ta.ema(close, emaLength)
rsi = ta.rsi(close, rsiLength)
avgVolume = ta.sma(volume, 20)
isBullishTrend = close > ema
isBearishTrend = close < ema
// Volume Filter
volumeSpike = volume > avgVolume * volumeMultiplier
// Support/Resistance (Simplified)
support = ta.lowest(low, 20)
resistance = ta.highest(high, 20)
// Entry Conditions (Refined)
longCondition = isBullishTrend and close > support and rsi < rsiOversold and ta.crossover(rsi, rsiOversold) and volumeSpike and close > open
shortCondition = isBearishTrend and close < resistance and rsi > rsiOverbought and ta.crossunder(rsi, rsiOverbought) and volumeSpike and close < open
// Plotting
plot(ema, color=color.blue, title='55 EMA')
// Plot buy and sell signals with shape and labels
plotshape(longCondition, title='Long Signal', location=location.belowbar, color=color.green, style=shape.labelup, text='BUY')
plotshape(shortCondition, title='Short Signal', location=location.abovebar, color=color.red, style=shape.labeldown, text='SELL')
// Alerts
alertcondition(longCondition, title='Long Entry', message='Bullish Setup: Price > Support, RSI Oversold, Volume Spike, Bullish Candle')
alertcondition(shortCondition, title='Short Entry', message='Bearish Setup: Price < Resistance, RSI Overbought, Volume Spike, Bearish Candle')
// Strategy Entries and Exits for Backtesting
if longCondition
strategy.entry('Long', strategy.long)
if shortCondition
strategy.entry('Short', strategy.short)
// Optional: Close strategy positions based on conditions like stop-loss or take-profit
// Fixing the exit conditions for strategy.close
if isBullishTrend and close < ema
strategy.close('Long')
if isBearishTrend and close > ema
strategy.close('Short')
Al-Sat İndikatörü//@version=5
indicator("Al-Sat İndikatörü", overlay=true)
// Parametreler
shortLength = input(9, title="Kısa EMA Periyodu")
longLength = input(21, title="Uzun EMA Periyodu")
// Hareketli Ortalamalar
shortEMA = ta.ema(close, shortLength)
longEMA = ta.ema(close, longLength)
// Al-Sat Sinyalleri
buySignal = ta.crossover(shortEMA, longEMA) // Kısa EMA, Uzun EMA'yı yukarı keserse AL
sellSignal = ta.crossunder(shortEMA, longEMA) // Kısa EMA, Uzun EMA'yı aşağı keserse SAT
// Grafikte gösterim
plot(shortEMA, color=color.blue, title="Kısa EMA")
plot(longEMA, color=color.red, title="Uzun EMA")
// İşaretler
plotshape(series=buySignal, location=location.belowbar, color=color.green, style=shape.labelup, title="AL")
plotshape(series=sellSignal, location=location.abovebar, color=color.red, style=shape.labeldown, title="SAT")
alertcondition(buySignal, title="AL Sinyali", message="Fiyat yukarı yönlü kesişti!")
alertcondition(sellSignal, title="SAT Sinyali", message="Fiyat aşağı yönlü kesişti!")
combine all indicator 5min chrisshow fast slow ema line ,have background color uptrend and downtrend
Trend Breakout and Reversal Detectorbeautifully done to help all of us make the best. i also believe you will find it help ful
Golden Cross & Death Cross - 20 Day SEA & 200 Day EMAbuy signalon golden cross and sell signal on death cross to use for stock screener to search for assets to trade
ML-Based BankNifty Strategy//@version=5
strategy("ML-Based BankNifty Strategy", overlay=true)
// Simulated ML Signal (Replace with Webhook Integration)
ml_signal = input.bool(true, "ML Buy Signal")
// Trade Execution Based on ML Prediction
if (ml_signal)
strategy.entry("Long", strategy.long)
strategy.exit("Take Profit", from_entry="Long", limit=close * 1.02, stop=close * 0.98)
Chart Pattern DetectionChart patterns are visual representations of price movements in a financial market. Traders use them to predict future price actions. Here are the key types of chart patterns:
Tick Marubozu StrategyStrategy Concept:
This strategy identifies Marubozu candles on a tick chart (customizable pip size) with high volume to signal strong market momentum.
Bearish Marubozu → Strong selling pressure → Enter a SELL trade
Bullish Marubozu → Strong buying pressure → Enter a BUY trade
Entry Conditions:
Marubozu Definition:
Open price ≈ High for a bearish Marubozu (minimal wick at the top).
Open price ≈ Low for a bullish Marubozu (minimal wick at the bottom).
Customizable body size (in pips).
High Volume Confirmation:
The volume of the Marubozu candle must be above the moving average of volume (e.g., 20-period SMA).
Trade Direction:
Bearish Marubozu with High Volume → SELL
Bullish Marubozu with High Volume → BUY
Exit Conditions:
Time-Based Expiry: Since it's for binary options, the trade duration is pre-defined (e.g., 1-minute expiry).
Reversal Candle: If a strong opposite Marubozu appears, it may indicate a trend shift.
[Weekly Heatmap 1h]This script is an upgrade of the editors pick heatmap script from @BobRivera990, so all credit really goes to him.
I added the most requested features from the original scripts comments and some of my personal preferences:
- I added some new metrics like Range, Winrate (probability of beeing a green candle) and Close - Open.
- I marked the current hour in the table.
- I added an hour-offset so you can match the heatmap to your favorite timezone.
- I added a lookback period (in weeks) with a start and end so you can find out if the inefficiency you discovered occured, if it is still active and so on. If you are unsure how the heatmap works, set lookback to 1 week and compare the map to the chart.
- I added white dots that visually show the lookback period (did some glitching there).
Please feel free to suggest more metrics and functionalities, I will add them in a future update.
An example how to find an inefficiency:
- "Weekday Colorizer" colors every day of the week.
- a script that marks every 16:00 candle.
- the OG-Volume heatmap by @BobRivera990 that shows that volume around 15:00-17:00 is high.
- my new heatmap, that shows that the shitcoin pumps at the start of this period and dumps later.
I think some automatic buyer is getting frontrun here.
Nifty Support-Resistance Breakout (Nomaan Shaikh) The Nifty Support-Resistance Breakout Indicator is a powerful tool designed for traders to identify key support and resistance levels on the Nifty index chart and detect potential breakout opportunities. This indicator automates the process of plotting dynamic support and resistance levels based on historical price action and provides clear visual signals when a breakout occurs. It is ideal for traders who rely on technical analysis to make informed trading decisions.
Jiggle CookieA compact indicator that spots fast intraday scalping opportunities by detecting fake breakouts and wicks around local highs or lows. It calculates a short-term price range to estimate stop/target levels, then flags potential entries with on-chart labels and optional alerts. When a candle’s wick extends beyond the identified micro-range (but snaps back), the script issues a reversal signal and plots suggested stop-loss and take-profit dots for handy risk management. Perfect for traders who enjoy catching those short bursts of volatility while keeping a tight handle on risk and reward.