EMA Crossover with Engulfing - SK4 EMA Crossover which can be modified also identified Engulfing candle when appear.
Prepared by Sharif
المتوسطات المتحركة
RCS Trend FollowingIndicador seguidor de tendência usando médias móveis mais coloração do fundo para indicar direção do mercado.
Tanto médias quanto os fundos são pintados de acordo com a tendência.
Configurable EMAPlots four configurable exponential moving averages to get a better understanding of stock momentum shift.
BTC Scalp 003echnical Indicators:
EMAs: 50-period and 200-period Exponential Moving Averages to identify trend direction.
Bollinger Bands: 20-period SMA with standard deviation to gauge volatility.
RSI: 14-period Relative Strength Index to detect overbought or oversold conditions.
MACD: Moving Average Convergence Divergence for momentum assessment.
Volume: Current volume and its 20-period moving average to confirm trade signals.
EMA Smoothed RSI 30 and RSI 14This Indicator plots EMA Smoothed RSI 14 and RSI 30 and the angular elevation / declination over a user inputted lookback period. 14 crossing 30 creates opportunities to be looked in conjunction with other confluences (Price Action, Volume, etc.)
My second attempt to give back to my TV community. As always, be critical of my work. And I will try my best to incorporate all suggestions!
MarktQuants Supertrend"MarktQuants Supertrend" is an indicator designed to help traders visualize market trends using a combination of moving averages and dynamic range calculations. It adapts to market conditions, providing insights into potential trend directions:
Trend Identification:
Utilizes a customizable moving average (MA Type) with options like SMA, EMA, SMMA, WMA, VWMA, TEMA, DEMA, LSMA, HMA, or ALMA to smooth price action.
Calculates a dynamic range based on the highest high over a specified period (Length), adjusted by multipliers (Multiplier Alpha and Multiplier Beta).
Signal Generation:
The indicator assesses price relative to both the moving average and the calculated range (Average Range or Lookback Alpha and Beta).
Scores are computed to determine if the price action suggests a long (bullish) or short (bearish) trend via crossover signals from these scores.
Visual Indicators:
Candlesticks: The color changes based on the trend direction; greenish for long conditions and purplish for short conditions, enhancing visual trend recognition.
Moving Average Line: Plotted in semi-transparent color matching the trend, with a bold line for clarity.
Range Indicator: A line representing the average range, filled with semi-transparent color to show potential support or resistance levels.
Customization:
Users can toggle between using the average range or specific lookback periods for trend signals via the Use Average Range option.
Adjustable parameters for the moving average and range calculations allow for fine-tuning to various market instruments or trading styles.
Inputs:
Range Settings:
Length: Defines the period for calculating the highest high.
Lookback Alpha & Lookback Beta: Different lookback periods for range calculation.
Multiplier Alpha & Multiplier Beta: Multipliers for adjusting the range.
Use Average Range: Switch to use average or specific range for signals.
Color Inputs: Select the bullish and bearish colors based on the users personal preference.
Moving Average Settings:
Type: Choice of moving average type.
Length: Length of the moving average.
Source: The price source for the moving average calculation (default is close price).
Note: This indicator is best used alongside other analysis tools to confirm trends and signals. Always consider the broader market context.
This description should meet TradingView's standards for indicator descriptions, providing clear context, functionality, and customization options to potential users.
shakeout checker Amitthis is for checking shakeout made by amit soni
this is for private use and maybe not many people will undertand this
44-SMA-CROSS-INDICATOR-V244-SMA-CROSS-INDICATOR-V2 signals long or short on the basis of 44SMA cross
44-SMA-CROSS-INDICATOR44-SMA-CROSS-INDICATOR public indicator to signal long or short if price crosses above or below the 44 SMA
RDT_BitLionRDT is a set of highly practical indicators used for trading with Richard Dennis's strategy.
A wealth of information on this topic can be found in various sources.
This indicator streamlines the process and simplifies data handling.
raka 3-Candle Pattern with 20 MA//@version=5
indicator("3-Candle Pattern with 20 MA", overlay=true)
// Input settings
maLength = input.int(20, title="Moving Average Length")
patternLookback = input.int(3, title="Pattern Lookback Period")
// Calculate 20-period moving average
ma = ta.sma(close, maLength)
// Define 3-candle pattern conditions for a buy signal
// Example pattern: Higher Highs and Higher Lows over the last 3 candles
isPattern = ta.highest(high, patternLookback) == high and ta.lowest(low, patternLookback) == low
// Buy signal: 3-candle pattern and current close above the 20-period MA
buySignal = isPattern and close > ma
// Plot the moving average
plot(ma, color=color.blue, linewidth=2, title="20 MA")
// Plot buy signals
plotshape(series=buySignal, location=location.belowbar, color=color.green, style=shape.labelup, text="BUY", title="Buy Signal")
// Optional: Highlight the 3-candle pattern on the chart
bgcolor(isPattern ? color.new(color.green, 90) : na, title="Pattern Highlight")
Çoklu EMA(20,50,100)_sertanglEn çok kullanılan üssel hareketli ortalamaların bir arada olduğu bir komut
5분봉 레버리지 20배 자동매매 전략 (최종)//@version=5
indicator("5분봉 레버리지 20배 자동매매 전략 (최종)", overlay=true)
// === PARAMETERS ===
// RSI
rsiPeriod = input.int(14, title="RSI Period", minval=1)
overbought = input.float(70.0, title="RSI Overbought Level", step=0.1)
oversold = input.float(30.0, title="RSI Oversold Level", step=0.1)
// 이동평균선
smaShort = input.int(50, title="Short SMA Length", minval=1)
smaLong = input.int(200, title="Long SMA Length", minval=1)
// 리스크 관리
takeProfit = input.float(3.0, title="Take Profit %", step=0.1)
stopLoss = input.float(1.0, title="Stop Loss %", step=0.1)
// === INDICATORS ===
// RSI
rsiValue = ta.rsi(close, rsiPeriod)
// 이동평균선
smaShortValue = ta.sma(close, smaShort)
smaLongValue = ta.sma(close, smaLong)
// MACD
= ta.macd(close, 12, 26, 9)
// 볼린저 밴드
= ta.bb(close, 20, 2)
// 프랙탈
bullishFractal = ta.pivotlow(low, 2, 2) // 하락 프랙탈
bearishFractal = ta.pivothigh(high, 2, 2) // 상승 프랙탈
// 엘리어트 파동 (간단한 패턴 분석)
wave1 = (rsiValue < oversold) and (smaShortValue > smaLongValue) and (macdLine > signalLine)
wave3 = (rsiValue > oversold) and (macdLine > signalLine) and (close > upperBB)
wave5 = (rsiValue > 70) and (macdLine < signalLine) and (close > smaLongValue)
waveA = (rsiValue > overbought) and (macdLine < signalLine) and (close < smaShortValue)
waveC = (rsiValue < 30) and (macdLine > signalLine) and (close < lowerBB)
// === LONG ENTRY CONDITION ===
longCondition = (rsiValue < oversold) and (smaShortValue > smaLongValue) and (macdLine > signalLine) and (close <= lowerBB) and not na(bullishFractal) and (wave1 or wave5)
// === SHORT ENTRY CONDITION ===
shortCondition = (rsiValue > overbought) and (smaShortValue < smaLongValue) and (macdLine < signalLine) and (close >= upperBB) and not na(bearishFractal) and (waveA or waveC)
// === ALERTS ===
if (longCondition)
alert("LONG_SIGNAL", alert.freq_once_per_bar)
if (shortCondition)
alert("SHORT_SIGNAL", alert.freq_once_per_bar)
// === VISUAL INDICATORS ===
// 이동평균선
plot(smaShortValue, title="SMA 50", color=color.blue)
plot(smaLongValue, title="SMA 200", color=color.red)
// 볼린저 밴드
plot(upperBB, title="Upper BB", color=color.green)
plot(lowerBB, title="Lower BB", color=color.red)
// RSI 레벨
hline(overbought, "RSI Overbought", color=color.red)
hline(oversold, "RSI Oversold", color=color.green)
plot(rsiValue, title="RSI", color=color.purple)
// 프랙탈 표시
plotshape(not na(bullishFractal), title="Bullish Fractal", style=shape.triangleup, location=location.belowbar, color=color.green, size=size.small, text="Bull")
plotshape(not na(bearishFractal), title="Bearish Fractal", style=shape.triangledown, location=location.abovebar, color=color.red, size=size.small, text="Bear")
// ENTRY POINT 표시
var float lastLongEntry = na
var float lastShortEntry = na
if (longCondition)
lastLongEntry := close
if (shortCondition)
lastShortEntry := close
plotshape(not na(lastLongEntry), title="Long Entry Point", style=shape.labelup, location=location.belowbar, color=color.green, text="LONG")
plotshape(not na(lastShortEntry), title="Short Entry Point", style=shape.labeldown, location=location.abovebar, color=color.red, text="SHORT")
ADR Percentage with Relative StrengthADR Percentage - Calculates the ADR percent for a stock
Relative Strength - Calculates relative strength against Nifty
Configurable Quad EMA (QEMA)This indicator adds up to four moving average indicators (EMA or SMA) to the chart.
BTC Scalp 003echnical Indicators:
EMAs: 50-period and 200-period Exponential Moving Averages to identify trend direction.
Bollinger Bands: 20-period SMA with standard deviation to gauge volatility.
RSI: 14-period Relative Strength Index to detect overbought or oversold conditions.
MACD: Moving Average Convergence Divergence for momentum assessment.
Volume: Current volume and its 20-period moving average to confirm trade signals.
BTC Scalp 003echnical Indicators:
EMAs: 50-period and 200-period Exponential Moving Averages to identify trend direction.
Bollinger Bands: 20-period SMA with standard deviation to gauge volatility.
RSI: 14-period Relative Strength Index to detect overbought or oversold conditions.
MACD: Moving Average Convergence Divergence for momentum assessment.
Volume: Current volume and its 20-period moving average to confirm trade signals.
Multiple Moving AveragesConfigurable day moving averages with flexibility to choose simple or exponential type