RSI 2.0 By RBRSI ini sudah diperbaharui dan sudah melakukan banyak backtest, RSI 2.0 ini membantu trader untuk menganalisa chart
Breadth Indicators
Investing Zone"Investing Zone" designed to highlight specific market conditions. It calculates the Relative Strength Index (RSI) over a period of 2 and identifies when the RSI value drops below 15, signaling a potential oversold condition. Additionally, it calculates the Exponential Moving Average (EMA) over a period of 14 and checks if the closing price is below the EMA, indicating a bearish trend.
The indicator combines these two conditions, and if both are true, it highlights the chart background in green with a transparency level of 85. This visual cue helps traders identify potential "investing zones" where the market might be oversold in a downtrend, suggesting areas of interest for further analysis or potential buying opportunities.
Grand Indicator
The "Grand Indicator" is a comprehensive technical analysis tool that combines multiple indicators to provide a complete market view. It primarily focuses on momentum, trend, and volume analysis to generate trading signals.
• Core Components Combined:
- RSI (Relative Strength Index)
- MACD (Modified with OBV)
- Stochastic
- Multiple Moving Average variations
This indicator normalizes all components to a 0-100 scale for easier visual comparison and analysis. It uses a dual confirmation system that requires both RSI and MACD signals to align before generating trading signals. The RSI component monitors overbought and oversold conditions, while the modified MACD incorporates volume analysis through OBV (On-Balance Volume) to confirm price movements.
The indicator includes a sophisticated moving average system that offers multiple calculation methods including DEMA, TEMA, EMA, and several other variations. This flexibility allows traders to fine-tune the trend analysis component to their preferences. The stochastic component adds another layer of analysis by identifying potential reversal points through overbought and oversold conditions.
Trading signals are generated when multiple conditions align. A buy signal appears when the RSI crosses above the oversold level while the MACD turns upward. Conversely, a sell signal is generated when the RSI crosses below the overbought level while the MACD turns downward. These signals are visually displayed through background colors and markers on the chart.
• Key Technical Elements Used:
- Volume analysis (OBV)
- Momentum indicators (RSI, Stochastic)
- Trend analysis (Various MAs)
- Price action
- Multiple timeframe analysis capability
The indicator provides a comprehensive view of market conditions by combining these various technical analysis tools into a single, normalized display.
Crypto Trading Indicators with Signal Countsignal counter Crypto Trading Indicators with Signal Count
QQE Strategy with Risk ManagementThis Pine Script is designed to transform Kıvanç Özbilgiç’s QQE indicator into a complete trading strategy. The script uses the QQE indicator to generate buy and sell signals, while integrating robust risk management mechanisms.
Key Features of the Strategy:
1. QQE Indicator-Based Signals:
• Buy (Long): Triggered when the fast QQE line (QQEF) crosses above the slow QQE line (QQES).
• Sell (Short): Triggered when the fast QQE line (QQEF) crosses below the slow QQE line (QQES).
2. Risk Management:
• ATR-Based Stop-Loss and Take-Profit: Dynamically calculated levels to limit losses and maximize profits.
• Trailing Stop: Adjusts stop-loss levels as the position moves into profit, ensuring gains are protected.
• Position Sizing: Automatically calculates position size based on a percentage of account equity.
3. Additions:
• The script enhances the indicator by introducing position entry/exit logic, risk management tools, and ATR-based calculations, making it a comprehensive trading strategy.
This strategy provides a robust framework for leveraging the QQE indicator in automated trading, ensuring effective trend detection and risk control.
Bot de Trading Avancé avec Scalping et Indicateurs VisuelsCe script permet d'afficher clairement les points d'achat et de vente sur le graphique, facilitant ainsi les décisions de trading. Vous pouvez ajuster les paramètres et les styles en fonction de vos préférences. Assurez-vous de tester ce script dans un environnement de démonstration avant de l'utiliser en temps réel.
Currency Strength [Linniu Edit]The Currency Strength indicator is a versatile tool designed to analyze and compare the relative strength of major currencies in the forex market. By aggregating price movements across multiple currency pairs, this indicator provides a clear visualization of which currencies are gaining or losing strength relative to others.
MACD y RSI CombinadosMACD y RSI Combinados – Indicador de Divergencias y Tendencias** Este indicador combina dos de los indicadores más populares en análisis técnico: el **MACD ( Media Móvil Convergencia Divergencia)** y el **RSI (Índice de Fuerza Relativa)**. Con él, podrás obtener señales de tendencia y detectar posibles puntos de reversión en el mercado. ### Características: - **RSI (Índice de Fuerza Relativa)**: - **Longitud configurable**: Ajusta el periodo del RSI según tu preferencia. - **Niveles de sobrecompra y sobreventa**: Personaliza los niveles 70 y 30 para detectar condiciones extremas. - **Divergencias**: Calcula divergencias entre el RSI y el precio para identificar posibles cambios de dirección. Las divergencias alcistas y bajistas se muestran con líneas y etiquetas en el gráfico.
straddle with Bollinger BandA straddle with Bollinger Bands combines an options trading strategy and a technical indicator for better analysis.
The Bollinger Bands overlay the combined premium (call + put prices), providing insights into volatility.
This setup allows traders to monitor breakouts or contractions in the total premium, aiding in decision-making for entry, exit, or risk management.
Keltner + Ichimoku StrategyScript generates buy and sell signal based on Keltner & Ichimoku indicators.
Comprehensive Dashboard with DecisionThis indicator provides a comprehensive dashboard with signals from multiple indicators including RSI, MACD, Bollinger Bands, and TDI. Ideal for traders looking for quick decision-making tools.
Stochastic ala DayTradingRadioStochastic ala DayTradingRadio.
Created for those who have only pasic TW plan and can't add more than 2 indicators.
It's just plot 4 stoch data on one chart.
RSI EMA Moving Average Strategy//@version=6
indicator("RSI EMA Moving Average Strategy", overlay=true)
// Inputlar
RSI_Period = input.int(14, title="RSI davri")
RSI_Buy_Level = input.int(20, title="RSI Buy darajasi")
RSI_Sell_Level = input.int(80, title="RSI Sell darajasi")
EMA_Period = input.int(100, title="EMA davri")
Liquidity_Range = input.int(10, title="Likvidlik zonasi uchun barlar soni")
// Indikatorlar hisob-kitobi
rsi = ta.rsi(close, RSI_Period)
ema = ta.ema(close, EMA_Period)
// Likvidlik darajalarini aniqlash
highLiquidity = ta.highest(high, Liquidity_Range)
lowLiquidity = ta.lowest(low, Liquidity_Range)
// Signal shartlari
var string signal = na
var label buyLabel = na
var label sellLabel = na
var label exitLabel = na
if (rsi < RSI_Buy_Level and close > ema and close > lowLiquidity)
signal := "Buy"
label.delete(buyLabel)
buyLabel := label.new(bar_index, close, "Buy", style=label.style_label_down, color=color.green)
alert("Buy signali topildi!", alert.freq_once_per_bar)
if (rsi > RSI_Sell_Level and close < ema and close < highLiquidity)
signal := "Sell"
label.delete(sellLabel)
sellLabel := label.new(bar_index, close, "Sell", style=label.style_label_up, color=color.red)
alert("Sell signali topildi!", alert.freq_once_per_bar)
if ((close < ema and signal == "Buy") or (close > ema and signal == "Sell"))
label.delete(exitLabel)
exitLabel := label.new(bar_index, close, "Exit", style=label.style_label_down, color=color.yellow)
alert("Exit signali topildi!", alert.freq_once_per_bar)
RSI EMA Moving Average Strategy//@version=6
indicator("RSI EMA Moving Average Strategy", overlay=true)
// Inputlar
RSI_Period = input.int(14, title="RSI davri")
RSI_Buy_Level = input.int(20, title="RSI Buy darajasi")
RSI_Sell_Level = input.int(80, title="RSI Sell darajasi")
EMA_Period = input.int(100, title="EMA davri")
Liquidity_Range = input.int(10, title="Likvidlik zonasi uchun barlar soni")
// Indikatorlar hisob-kitobi
rsi = ta.rsi(close, RSI_Period)
ema = ta.ema(close, EMA_Period)
// Likvidlik darajalarini aniqlash
highLiquidity = ta.highest(high, Liquidity_Range)
lowLiquidity = ta.lowest(low, Liquidity_Range)
// Signal shartlari
var string signal = na
var label buyLabel = na
var label sellLabel = na
var label exitLabel = na
if (rsi < RSI_Buy_Level and close > ema and close > lowLiquidity)
signal := "Buy"
label.delete(buyLabel)
buyLabel := label.new(bar_index, close, "Buy", style=label.style_label_down, color=color.green)
alert("Buy signali topildi!", alert.freq_once_per_bar)
if (rsi > RSI_Sell_Level and close < ema and close < highLiquidity)
signal := "Sell"
label.delete(sellLabel)
sellLabel := label.new(bar_index, close, "Sell", style=label.style_label_up, color=color.red)
alert("Sell signali topildi!", alert.freq_once_per_bar)
if ((close < ema and signal == "Buy") or (close > ema and signal == "Sell"))
label.delete(exitLabel)
exitLabel := label.new(bar_index, close, "Exit", style=label.style_label_down, color=color.yellow)
alert("Exit signali topildi!", alert.freq_once_per_bar)
GOLDEN BOYDesenvolvido por Alex Reis
- Indicador de Reversão
- Confluência com a tendência e Canal TMA
- Níveis de Fibonacci
Tipo de Grafico : Range
Tempo do Gráfico: 10R/ 30R / 50R / 100R
Ativo : Gold
Nitesh - Buyside & Sellside LiquidityLiquidity Zones
Buyside Liquidity Zones: Enables display of the buyside liquidity zones.
Margin: Sets margin/sensitivity for the liquidity zone boundaries.
Color: Color option for buyside liquidity levels & zones.
Sellside Liquidity Zones: Enables display of the sellside liquidity zones.
Margin: Sets margin/sensitivity for the liquidity zone boundaries.
Color: Color option for sellside liquidity levels & zones.
🔹 Liquidity Voids
Liquidity Voids: Enables display of both bullish and bearish liquidity voids.
Label: Enables display of a label indicating liquidity voids.
James//@version=5
indicator("Forex Entry Signals (RSI + EMA)", overlay=false)
// Configuração do RSI
rsiLength = input(14, "RSI Length")
rsi = ta.rsi(close, rsiLength)
// Configuração da EMA
emaLength = input(50, "EMA Length")
ema = ta.ema(close, emaLength)
// Lógica de compra e venda
buySignal = ta.crossover(close, ema) and rsi < 30
sellSignal = ta.crossunder(close, ema) and rsi > 70
// Plot do RSI
plot(rsi, color=color.blue, linewidth=2, title="RSI")
hline(70, "Overbought", color=color.red)
hline(30, "Oversold", color=color.green)
// Marcar setas no gráfico
if buySignal
label.new(bar_index, close, text="BUY", color=color.green, style=label.style_label_up, textcolor=color.white, size=size.small)
if sellSignal
label.new(bar_index, close, text="SELL", color=color.red, style=label.style_label_down, textcolor=color.white, size=size.small)
Уровни поддержки и сопротивления ликвидации Биткоина Этот индикатор поможет вам визуализировать потенциальные зоны ликвидаций на графике и принимать более информированные торговые решения.
Advanced Strategy: Buy and Sell//@version=5
indicator("Advanced Strategy: Buy and Sell", overlay=true)
// User Inputs
ema_fast_length = input.int(12, title="EMA Fast Period")
ema_slow_length = input.int(26, title="EMA Slow Period")
rsi_period = input.int(14, title="RSI Period")
macd_fast = input.int(12, title="MACD Fast Period")
macd_slow = input.int(26, title="MACD Slow Period")
macd_signal = input.int(9, title="MACD Signal Period")
bb_length = input.int(20, title="Bollinger Bands Period")
bb_mult = input.float(2.0, title="Bollinger Bands Std Dev")
adx_period = input.int(14, title="ADX Period")
adx_threshold = input.int(20, title="Minimum ADX for Trend Validation")
// Indicator Calculations
ema_fast = ta.ema(close, ema_fast_length)
ema_slow = ta.ema(close, ema_slow_length)
rsi = ta.rsi(close, rsi_period)
= ta.macd(close, macd_fast, macd_slow, macd_signal)
= ta.bb(close, bb_length, bb_mult)
// ADX Calculation
true_range = ta.rma(ta.tr, adx_period)
plus_dm = ta.rma(ta.change(high) > ta.change(low) ? math.max(ta.change(high), 0) : 0, adx_period)
minus_dm = ta.rma(ta.change(low) > ta.change(high) ? math.max(ta.change(low), 0) : 0, adx_period)
plus_di = (plus_dm / true_range) * 100
minus_di = (minus_dm / true_range) * 100
dx = math.abs(plus_di - minus_di) / (plus_di + minus_di) * 100
adx = ta.rma(dx, adx_period)
// Buy Rules
buy_signal = ta.crossover(ema_fast, ema_slow) and rsi < 50 and macd_line > signal_line and close < bb_lower and adx > adx_threshold
// Sell Rules
sell_signal = ta.crossunder(ema_fast, ema_slow) and rsi > 50 and macd_line < signal_line and close > bb_upper and adx > adx_threshold
// Plot Indicators on the Chart
plot(ema_fast, color=color.green, title="EMA Fast")
plot(ema_slow, color=color.red, title="EMA Slow")
plot(bb_upper, color=color.orange, title="Bollinger Upper Band")
plot(bb_lower, color=color.orange, title="Bollinger Lower Band")
// Buy and Sell Signals
plotshape(buy_signal, style=shape.labelup, location=location.belowbar, color=color.green, size=size.small, title="Buy Signal")
plotshape(sell_signal, style=shape.labeldown, location=location.abovebar, color=color.red, size=size.small, title="Sell Signal")
// Alerts
alertcondition(buy_signal, title="Buy Alert", message="Buy Signal Detected!")
alertcondition(sell_signal, title="Sell Alert", message="Sell Signal Detected!")
1 Minute Candle Strategythe script will work on any time frame, but specifically mentioned on 1 minutes candles. when applied on a 1 minutes chart the script will execute based on minute candle.