21 EMA with ATR Bands21 EMA with ATR Bands. Specifically looking at the overbought and oversold levels to either add or trim positions.
Penunjuk dan strategi
super stratagy rajBy using best stratagy using 9ema and 21 ema using buy and sell signals using candle movemnt with ema 200
Central Bank BS Delta TracerCentral Bank BS Delta Tracer is a new way of looking at liquidity on TradingView.
CBBSDT (for short) shows bars for popular central bank balance sheets. The default is the US, but other countries can be viewed or compared as well.
You can combine multiple central bank balances, and all are calculated in USD using currency pairs so that the units match up. Combining can also show differentials, such as if the ECB did more QT than the US in a given time frame.
Warning: Time frames lower than a month may be inaccurate. Many central banks do not report their BS on a frequent basis, so do know ahead of time that data is usually outdated by a variable amount depending on the data source. Check with the particular sources of central bank BS before making assumptions about deltas using this indicator.
Debt is the dark energy of the economy. Therefore we must know how much of it is pumping or draining.
ColorMACD//@version=5
indicator("ColorMACD", overlay=false)
// Input parameters
fast_ema_period = input.int(12, title="Fast EMA Period")
slow_ema_period = input.int(26, title="Slow EMA Period")
signal_period = input.int(9, title="Signal Period")
// Calculate MACD
= ta.macd(close, fast_ema_period, slow_ema_period, signal_period)
// Define colors
color_up = color.new(color.red, 0) // Red for positive MACD above signal
color_down = color.new(color.lime, 0) // Lime for negative MACD below signal
color_neutral = color.new(color.aqua, 0) // Aqua for neutral conditions
// Plot MACD Line with color based on conditions
plot(macdLine, color=macdLine > 0 and macdLine > signalLine ? color_up : macdLine < 0 and macdLine < signalLine ? color_down : color_neutral, linewidth=2, title="MACD Line")
// Plot Signal Line
plot(signalLine, color=color.new(color.magenta, 0), linewidth=1, title="Signal Line")
// Plot Histogram
histColor = macdLine > 0 and macdLine > signalLine ? color_up : macdLine < 0 and macdLine < signalLine ? color_down : color_neutral
plot(macdLine - signalLine, color=histColor, style=plot.style_columns, title="Histogram")
// Zero Line
hline(0, color=color.new(color.silver, 0), linestyle=hline.style_solid, title="Zero Line")
OI RSI - WuJianDAOOI RSI (Open Interest Relative Strength Index)
Overview: OI RSI is a technical indicator that applies the RSI concept to open interest data.
Key Features:
Traditional vs. OI RSI:
Traditional RSI measures price movements to identify overbought or oversold conditions.
OI RSI computes the relative strength of open interest over a specified period.
Purpose:
Provides insights into market participation and sentiment by evaluating open interest levels.
Application:
Assists traders in detecting potential reversals or confirming trends based on open interest dynamics.
5-Minute Opening and Pre-Market High and Low + 20/50/100/2005-Minute Opening High and Low with Pre-Market High and Low and Moving Averages
Bullish & Bearish Engulfing with Body Coloring and TrianglesBullish & Bearish Engulfing above/below 20ema. color the candle and highlites the candle with triangle
RSI14_EMA9_WMA45_V06Cập nhật tùy biến:
RSI EMA WMA
Cài đặt thông số tiêu chuẩn rsi14, ema9, wma45
Buy khi: ema9 cắt lên wma45 và rsi <40
Sell khi : ema9 cắt xuống wma50 và rsi >50
ADX + RSI + EMA Trading Strategy Thulasian indicator that specifically identifies low volatility or ranging conditions. One of the best indicators for this purpose is the Average Directional Index (ADX). Here's how you can use it to avoid sideways markets and trade only during trending conditions:
Average Directional Index with level 20The ADX (Average Directional Index) is a technical indicator used to measure the strength of a trend. It helps traders determine whether a market is trending or ranging.
How ADX Works:
Values Above 20-25 → Indicates a trending market.
Values Below 20 → Suggests a weak or sideways market.
Higher ADX Values → Stronger trend, whether bullish or bearish.
Does Not Indicate Direction → ADX only measures trend strength, not whether it's up or down.
Callout Signals (RSI + MACD)ffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff fffffffffffffffffffffffffffffffffffffffffffffffffffffffffffffff ffffffffffffffffffffffffffffffffffffffffffff
HMA 50 Breakout Buy Signal (15min)hull moving avarate 15 minutes candle closed above then signal gives buy
Chi Bao KulaChỉ báo kết hợp nến Heikin Ashi và Ichimoku Cloud để xác định xu hướng thị trường. Hỗ trợ phân tích và tìm điểm vào lệnh hiệu quả
Chi Bao KulaChỉ báo kết hợp nến Heikin Ashi và Ichimoku Cloud để xác định xu hướng thị trường. Hỗ trợ phân tích và tìm điểm vào lệnh hiệu quả
EMA Crossover Signals sunil gavas//@version=5
indicator("EMA Crossover Signals", overlay=true)
// Define EMAs
ema9 = ta.ema(close, 9)
ema21 = ta.ema(close, 21)
ema50 = ta.ema(close, 50)
// Buy & Sell Signals
buySignal = ta.crossover(ema9, ema21) and ta.crossover(ema9, ema50)
sellSignal = ta.crossunder(ema9, ema21) and ta.crossunder(ema9, ema50)
// Plot EMAs
plot(ema9, color=color.blue, title="9 EMA", linewidth=2)
plot(ema21, color=color.orange, title="21 EMA", linewidth=2)
plot(ema50, color=color.red, title="50 EMA", linewidth=2)
// Plot Buy & Sell Signals
plotshape(series=buySignal, location=location.belowbar, color=color.green, style=shape.labelup, size=size.small, title="Buy Signal")
plotshape(series=sellSignal, location=location.abovebar, color=color.red, style=shape.labeldown, size=size.small, title="Sell Signal")
// Alerts
alertcondition(buySignal, title="Buy Signal", message="9 EMA Crossed Above 21 & 50 EMA - Buy Opportunity!")
alertcondition(sellSignal, title="Sell Signal", message="9 EMA Crossed Below 21 & 50 EMA - Sell Opportunity!")
Relative Strength Index by niftyfifty.inThis is a modified Relative Strength Index (RSI) indicator with added upper (80) and lower (20) bands, along with divergence detection for better trading insights. It enhances the traditional RSI by providing clearer overbought and oversold signals, making it useful for traders looking for strong reversal zones.
📌 Key Features:
✅ Standard RSI Calculation (Default period: 14)
✅ Upper (80) & Lower (20) Bands for better extreme zone identification
✅ Customizable RSI Smoothing Options (SMA, EMA, WMA, VWMA, SMMA, BB)
✅ Divergence Detection (Regular Bullish & Bearish)
✅ Dynamic Background Gradient Fill for Overbought/Oversold Zones
✅ Alerts for Divergences (Bullish & Bearish)
📊 How to Use:
1️⃣ Buy Signals
RSI below 20 (deep oversold) could indicate a potential reversal.
Regular Bullish Divergence (Price forming lower lows, RSI forming higher lows) 🔥
2️⃣ Sell Signals
RSI above 80 (deep overbought) could indicate a pullback.
Regular Bearish Divergence (Price forming higher highs, RSI forming lower highs) 🚨
3️⃣ Trend Confirmation
If RSI stays above 50, market is in an uptrend.
If RSI stays below 50, market is in a downtrend.
⚡ Best Use Cases:
✔ Stock Market Trading (Intraday, Swing, and Positional)
✔ Forex & Crypto Trading
✔ Divergence-Based Reversals
✔ Breakout & Pullback Strategies
🔧 Customization Options:
RSI Length & Source Selection
Choose Moving Average Type for RSI Smoothing
Enable/Disable Bollinger Bands on RSI
Divergence Detection Toggle
🔹 Designed for traders who rely on RSI but want more precision & additional filters to avoid false signals. 🚀
RSI14_EMA9_WMA45_V02ĐIều kiện vào lệnh
rsi 14 ema9 và wma45
Buy: ema9 cắt lên wma45 và thỏa mãn rsi tại vùng x (x tùy biến)
Sell: ema9 cắt xuống wma45 và thỏa mãn rsi tại vùng x (x tùy biến)
Open Interest + Kijun-sen: Tendencias Claras en Futuros🔍 ¿Qué es este indicador?
Este script es una versión mejorada del Open Interest (Interés Abierto) disponible en TradingView. Además del Open Interest estándar, agrega una línea de Kijun-sen configurable, inspirada en la lógica de Ichimoku, para facilitar la lectura de tendencias en el mercado de Futuros.
📌 ¿Por qué usar este indicador?
El Open Interest es una herramienta clave en el trading de derivados, pero puede ser difícil de interpretar debido a sus fluctuaciones constantes. La Kijun-sen del Open Interest ayuda a suavizar estos movimientos y proporciona una mejor referencia sobre si el mercado de Futuros está acumulando nuevos contratos o cerrando posiciones.
🔑 Características principales:
✔️ Visualización clara del Open Interest en Futuros.
✔️ Línea de Kijun-sen de 26 periodos (configurable).
✔️ Identifica tendencias en el Open Interest con la misma lógica de Ichimoku.
✔️ Distingue entre acumulación y distribución de contratos en el mercado de Futuros.
✔️ Filtro adicional para validar tendencias junto con otros indicadores.
📊 ¿Cómo interpretar este indicador?
✅ OI por encima de su Kijun-sen → Aumento en el Open Interest, señal de que la tendencia es fuerte y respaldada por traders en Futuros.
✅ OI por debajo de su Kijun-sen → Se están cerrando contratos, posible debilitamiento de la tendencia.
✅ OI en aumento mientras el precio sube → Movimiento respaldado por nuevos contratos largos, confirmando la tendencia alcista.
✅ OI en aumento mientras el precio baja → Entrada de contratos en corto, confirmando una caída en el mercado.
✅ OI cayendo mientras el precio sube → Posible debilidad en la tendencia alcista, falta de convicción.
📌 ¿Cómo usarlo en conjunto con otros indicadores?
🔹 Con Ichimoku → Confirma si una ruptura de la nube tiene respaldo en los mercados de Futuros.
🔹 Con CMF (Chaikin Money Flow) → Comparar el Open Interest con la liquidez en Spot para detectar divergencias.
🔹 Con Volumen → Ver si la actividad en Spot respalda la acumulación/distribución en Futuros.
⚡ Configuración:
Período de la Kijun-sen del Open Interest → Se puede ajustar manualmente (por defecto: 26 periodos).
📢 Aviso:
Este script es completamente gratuito y creado con fines educativos para ayudar a los traders a mejorar su análisis en mercados de Futuros.
RSI + Stoch RSI Buy SignalThis indicator identifies potential oversold reversal points by combining RSI and Stochastic RSI conditions. It plots a green dot below the candle when:
1️⃣ RSI is below 30 (oversold condition).
2️⃣ Stoch RSI K-line crosses above the D-line while both are below 25 (momentum shift).
3️⃣ (Stronger Signal) The previous RSI was also below 30, confirming extended oversold conditions.
A regular green dot appears for standard buy signals, while a brighter lime dot highlights stronger confirmations. Ideal for traders looking for high-probability reversal setups in oversold markets. 🚀