KP - RSI >= 70 & EMA Trend Filter (Daily trend - buy mode) Explanation of the Code:
Inputs:
You can adjust the RSI length and EMA lengths using the input parameters.
Conditions:
rsiCondition: Checks if RSI is >= 70.
emaCondition: Checks if 9 EMA > 20 EMA > 50 EMA.
trendCondition: Checks if the price is above all three EMAs (confirming a positive trend).
Plotting:
The EMAs and RSI are plotted on the chart for visual confirmation.
Buy Signal:
When all conditions are met, the background is highlighted in green, and a "BUY" label is displayed.
Alerts:
You can set up alerts to notify you when the buy signal is triggered
移动平均线
Reversal Indicator identificar três velas consecutivas verdes ou vermelhas e, dependendo da posição dessas velas em relação à EMA de 21 períodos, exibir uma seta indicando a possível reversão.
Invest SMA|MACD|ADX Long Weekly Strategy (BtTL)Diese Strategie kombiniert drei bewährte technische Indikatoren (SMA, MACD und ADX) für präzise Long-Einstiege auf dem Wochenchart.
Hauptmerkmale:
Einstiegssignale basieren auf einer Kombination aus SMA (30), MACD (9,18,9) und ADX (14)
Intelligentes Stop-Loss-Management durch Swing-Low-Erkennung
Trendbestätigung durch ADX > 25
Optimiert für Wochencharts
Konservatives Risikomanagement durch mehrfache Signalbestätigung
Einstiegsbedingungen:
Kurs über SMA
MACD über Signallinie und im positiven Bereich
ADX zeigt starken Trend (>25)
Ausstiegsstrategie:
Stop-Loss wird automatisch am vorletzten Swing-Low gesetzt
Position wird geschlossen, wenn der Kurs unter den SMA fällt
🇬🇧 English:
This strategy combines three proven technical indicators (SMA, MACD, and ADX) for precise long entries on the weekly chart.
Key Features:
Entry signals based on a combination of SMA (30), MACD (9,18,9), and ADX (14)
Intelligent stop-loss management through swing low detection
Trend confirmation using ADX > 25
Optimized for weekly charts
Conservative risk management through multiple signal confirmation
Entry Conditions:
Price above SMA
MACD above signal line and in positive territory
ADX showing strong trend (>25)
Exit Strategy:
Stop-loss automatically set at second-last swing low
Position closes when price falls below SMA
Gelişmiş SMA İndikatörü//@version=5
indicator("Gelişmiş SMA İndikatörü", overlay=true)
// Kullanıcıdan alınacak SMA periyotları
sma1_period = input.int(20, minval=1, title="SMA 1 Periyodu")
sma2_period = input.int(50, minval=1, title="SMA 2 Periyodu")
sma3_period = input.int(200, minval=1, title="SMA 3 Periyodu")
// Renk ve stil seçenekleri
sma1_color = input.color(color.blue, title="SMA 1 Rengi")
sma2_color = input.color(color.red, title="SMA 2 Rengi")
sma3_color = input.color(color.green, title="SMA 3 Rengi")
line_width = input.int(2, minval=1, title="Çizgi Kalınlığı")
// SMA hesaplamaları
sma1 = ta.sma(close, sma1_period)
sma2 = ta.sma(close, sma2_period)
sma3 = ta.sma(close, sma3_period)
// Çizimleri grafiğe ekleme
plot(sma1, color=sma1_color, linewidth=line_width, title="SMA 1")
plot(sma2, color=sma2_color, linewidth=line_width, title="SMA 2")
plot(sma3, color=sma3_color, linewidth=line_width, title="SMA 3")
// Alarm oluşturma (opsiyonel)
alertcondition(ta.cross(sma1, sma2), title="SMA 1 ve SMA 2 Kesişti", message="SMA 1 ve SMA 2 kesişimi oluştu!")
alertcondition(ta.cross(sma2, sma3), title="SMA 2 ve SMA 3 Kesişti", message="SMA 2 ve SMA 3 kesişimi oluştu!")
alertcondition(ta.cross(sma1, sma3), title="SMA 1 ve SMA 3 Kesişti", message="SMA 1 ve SMA 3 kesişimi oluştu!")
. Kullanıcı Tanımlı SMA Periyotları
SMA 1 Periyodu: Varsayılan 20 (kullanıcı tarafından değiştirilebilir).
SMA 2 Periyodu: Varsayılan 50 (kullanıcı tarafından değiştirilebilir).
SMA 3 Periyodu: Varsayılan 200 (kullanıcı tarafından değiştirilebilir).
2. Renk ve Çizgi Stilleri
Her bir SMA'nın rengini ayarlayabilirsiniz (varsayılan: mavi, kırmızı ve yeşil).
Çizgi kalınlığını seçebilirsiniz (varsayılan: 2 piksel).
3. Alarm Özelliği
SMA'ların kesişimi gerçekleştiğinde alarm kurulabilir:
SMA 1 ve SMA 2 kesişimi.
SMA 2 ve SMA 3 kesişimi.
SMA 1 ve SMA 3 kesişimi.
Alarm mesajı: "SMA kesişimi oluştu!" şeklinde gösterilir.
4. Kolay Kullanım ve Görsellik
Çizgiler doğrudan grafik üzerine eklenir (overlay=true).
Tüm ayarlar kullanıcı dostu bir arayüzle yapılabilir.
Magic Strategy SabaBasic with engulf & EMA200 & RSI. chart above EMA200, RSI above 50% and every time see engulf you can buy
RSI with Merged SMA (RSI Shifted)rsi with merged sma and rsi shifted ; you can find out where exactly buy and sell
Pin Bar Signal with SMA and Bollinger Bands FilterИндикатор выдаёт сигнал на вход в сделку, если появляется пин-бар. В зависимости от настроек, это будет бычий пин-бар от нижней границы полос Боллинджера или медвежий пин-бар - от верхней. Если вы выберете фильтр по SMA, то это будет бычий пин-бар, когда график над линией SMA, и медвежий пин-бар - под линией SMA. В настройках можно включить оба способа фильтрации или отдельно каждый.
Особенности индикатора:
1. Определяет пин-бары по критериям:
- Для бычьего пин-бара: нижняя тень > 2× верхней тени и тела
- Для медвежьего пин-бара: верхняя тень > 2× нижней тени и тела
2. Фильтрация:
- SMA (20 периодов по умолчанию)
- Полосы Боллинджера (20 периодов по умолчанию)
3. Настройки:
- Можно включать/выключать фильтры (SMA, полосы Боллинджера)
- Настраиваемые периоды и параметры
- Визуализация сигналов
Оптимизировано для 15M графика:
- Использует быстрые встроенные функции (ta.sma, ta.stdev)
- Минимизирует сложные вычисления
- Подходит для работы в реальном времени
Bitcoin Buy at 120 SMA, Sell Below 30 SMA How It Works
Buy Signal:
Triggered when the price moves from below to above the 120-day SMA.
Sell Signal:
Triggered when the price moves from above to below the 30-day SMA.
Visualization:
The 120-day SMA is plotted in blue.
The 30-day SMA is plotted in red.
MMM-Swing Strategy這套 MMM-Swing Strategy 是一個基於短期波動捕捉的加密貨幣交易策略,專為4小時圖表設計,並結合了快速與慢速EMA、ATR指標來確定最佳入場點、止損及止盈位置。它特別適合那些希望在加密貨幣市場中抓住價格波動的交易者。
主要特點:
EMA交叉:利用快速和慢速EMA(20期和50期)來確定趨勢的轉變。當快速EMA穿越慢速EMA並且價格高於慢速EMA時,形成多頭信號;反之,當快速EMA穿越慢速EMA並且價格低於慢速EMA時,形成空頭信號。
ATR止損設置:基於ATR指標計算的動態止損,並使用ATR乘數來設置合理的風險控制區域,確保止損位置能夠適應當前市場波動。
風險回報比:策略內置風險回報比設置(預設為2:1),這意味著每筆交易的風險將會被設置為潛在回報的一半,幫助您保持良好的風險管理。
視覺化圖表:交易信號、止損和止盈點會在圖表上清晰標註,並且用不同顏色顯示,以便您快速掌握市場情況。
如何這套策略能幫助您?
這套策略的核心是通過EMA交叉來捕捉趨勢轉變,並通過ATR來設置靈活的止損,幫助您在加密貨幣市場的快速波動中把握交易機會。其風險回報比和動態止損的設計能夠有效保護您的資本,同時提高獲利機會。
為什麼選擇加入我的社群?
在我的社群中,您不僅能夠學習到這些實用的策略,還能夠獲得更多專業的交易知識,從市場結構、風險管理到情緒控制,每個方面我都會提供具體的指導。此外,社群中還有其他交易者可以互相交流,分享經驗和交易想法,讓您在學習的過程中獲得更多支持。
加入我的社群,您將能夠受益於這些策略的更新、進一步的個性化建議,並學會如何在變幻莫測的加密貨幣市場中實現穩定的交易收益。
如果您希望在實戰中獲得更多指導,提升您的交易策略和風險管理能力,請隨時聯繫我,讓我們一起在這個市場中取得成功!
Combined Indicator with MACD, Stochastic, RSI, and EMA jdltsm75El indicador combina varias herramientas técnicas, como medias móviles (MA y EMA), el MACD, el RSI estocástico y señales visuales, para ayudar a los traders a identificar oportunidades de compra y venta en los mercados financieros. Aquí se detalla su uso:
Identificación de Tendencias:
Las medias móviles simples (MA) y exponenciales (EMA) ayudan a identificar la dirección general del mercado (alcista o bajista).
Los cruces de las MA y EMA (crossover o crossunder) generan señales visuales para posibles entradas o salidas.
Confirmación de Entradas y Salidas:
El MACD se utiliza para confirmar la fuerza de la tendencia y detectar posibles cambios en el impulso del mercado.
El RSI estocástico complementa esta confirmación mostrando niveles de sobrecompra y sobreventa.
Señales de Compra y Venta:
Una señal de compra ocurre cuando:
El EMA más rápido cruza hacia arriba el EMA más lento.
El MACD confirma con un cruce alcista.
El RSI estocástico está saliendo de niveles de sobreventa.
Una señal de venta ocurre cuando:
El EMA más rápido cruza hacia abajo el EMA más lento.
El MACD confirma con un cruce bajista.
El RSI estocástico está saliendo de niveles de sobrecompra.
Alertas en Tiempo Real:
El indicador incluye alertas configurables para notificar a los usuarios cuando se cumplen las condiciones de compra o venta.
Visualización Clara:
Las MA, EMA, y las líneas del MACD se trazan directamente sobre el gráfico.
Las señales de compra y venta se muestran con iconos visuales, haciendo que la interpretación sea rápida y sencilla.
Uso recomendado: Este indicador es ideal para traders que buscan confirmar sus entradas y salidas con múltiples herramientas técnicas, combinando señales para reducir falsos positivos. Se puede aplicar en mercados de acciones, criptomonedas, divisas, entre otros.
Smart EMAThe Dual EMA (Exponential Moving Average) Crossover is a popular technical analysis strategy. Here's a breakdown of how it works:
Key Components:
- Fast EMA (7 periods): Responds more quickly to price changes
- Slow EMA (25 periods): Provides a longer-term trend perspective
- Crossover signals: Generated when the fast EMA crosses above or below the slow EMA
Trading Signals:
1. Bullish Signal (Buy):
- When the fast EMA (7) crosses above the slow EMA (25)
- Indicates potential upward momentum shift
2. Bearish Signal (Sell):
- When the fast EMA (7) crosses below the slow EMA (25)
- Suggests potential downward momentum shift
Advantages:
- Simple to understand and implement
- Helps identify trend changes earlier than simple moving averages
- Reduces noise by giving more weight to recent prices
Limitations:
- Can generate false signals in choppy/sideways markets
- May lag behind rapid price movements
- Best used in conjunction with other indicators for confirmation
Best Usage:
- Most effective in trending markets
- Consider using with volume, RSI, or other momentum indicators
- Works well on multiple timeframes, though longer timeframes typically generate more reliable signals
Remember that no trading strategy is perfect, and it's important to combine this with proper risk management and other forms of analysis for best results.
9/21 EMA Support & ResistanceThis script includes: 1. Support and resistance levels based on pivot highs and lows 2. 9 EMA and 21 EMA 3. Crossover signals using a plus sign 4. Alert conditions for crossovers You can adjust the look back period and threshold in the input parameters to fine-tune the support and resistance levels. The EMAs are plotted on the chart, and crossover signals are displayed using plus signs above and below the price bars.
9/21 EMA Support & Resistance By DSWIf you're looking to plot two lines on an EMA crossover strategy, you can do that by using two EMAs and then plotting them on the chart. You can also highlight the crossover signals where one EMA crosses over or under the other
Hybrid Trend Momentum Strategy by Biege ver. 1.0Strategy Profile
Type: Fixed-Parameter Trend Momentum System
Optimized For: 2-Hour Timeframe (Best Performance)
Core Logic:
Uses fixed 21/55/200 EMAs for trend identification
Combines RSI(14) momentum filter with SuperTrend(3,14) stop
Requires 1.5x volume surge + ATR volatility confirmation
===========================================================================
Hourly Profitability Drivers
EMA Precision
21-period EMA (~1 trading day) captures intraday swings
55-period EMA (~2.5 days) filters false hourly breakouts
RSI Stability
14-period RSI aligns with 14-hour cycles in crypto markets
Avoids overreaction to 15-minute noise
SuperTrend Efficiency
3x ATR(14) provides optimal trailing stop for hourly candles
Outperforms static stops in volatile crypto sessions
===========================================================================
Key Strengths
No Parameter Tweaking Needed: Pre-optimized for hourly candles
Trend Persistence Capture: Holds through minor pullbacks
Automatic Risk Control: Built-in cooldown (6h) prevents overtrading
===========================================================================
Critical Limitations
Overnight Gap Risk: Crypto markets move 24/7
News Event Vulnerability: Hourly candles may trap during FOMO spikes
Fixed Exit Rigidity: No manual stop-loss adjustments allowed
===========================================================================
Safety Protocol Notes
Ideal Conditions
Strong trending markets (≥3% daily moves)
High-volume crypto pairs (BTC/ETH majors preferred)
Avoid When
Consolidation phases (EMA crossovers lag)
Low-volume periods (weekends/holidays)
===========================================================================
Profitability Summary
This strategy capitalizes on:
Hourly chart momentum persistence
Crypto's tendency for multi-hour trends
Fixed parameters optimized through volatility cycles
Critical Reminder: Changing any values voids the hourly optimization advantage. Performance degrades significantly on lower (15m/5m) or higher (4h/daily) timeframes due to parameter mismatch
SlingShot with Multiple EMAs and RSIOriginal sling shot Code written by @TaPlot and edited by Ruchit for multiple ema and RSI and exit condition as per my need
Squeeze Pro Multi Time-Frame Analysis V2See all table time frames no matter what time frame chart you are on.
EMA + RSI + SR Key Features:
Inputs:
EMA Length (default: 50), RSI Length (14), HMA Length (20).
Overbought (70) and Oversold (30) RSI levels.
Support/Resistance Lookback (50).
Calculations:
EMA: Trend baseline.
HMA: Smoother trend detection.
RSI: Overbought/oversold conditions.
Support/Resistance Levels: Recent highs/lows over the lookback period.
Signals:
Buy: Uptrend + RSI oversold + near support.
Sell: Downtrend + RSI overbought + near resistance.
Visuals:
Plots EMA, HMA, RSI levels, support/resistance lines.
Buy/sell signals as labels on the chart.
Alerts:
Notifications for buy/sell signals.
TKT - Alert Candle with RSI and MA ConditionsTKT Strategy PSX
This strategy will work on most of the PSX stocks.
Rules for this strategy are:
1, Price close above MA 45.
2, Price close above MA 200.
3, RSI cross 60 to upword ( RSI settings, Upper=60, Mid=50, Lower=40)
Once all these points are meet then you can buy that stock on next day if it cross last day high and sustain.
OctradingFxDétection de la session asiatique :
La session asiatique est définie entre 23h00 et 08h00 UTC (à ajuster selon votre fuseau horaire).
La variable asianSessionStart est utilisée pour identifier cette plage horaire.
Calcul des hauts et bas de la session asiatique :
Les variables asianHigh et asianLow stockent les plus hauts et plus bas de la session asiatique.
Ces valeurs sont réinitialisées à chaque nouvelle session.
Affichage de la zone de range :
La zone de range est affichée en arrière-plan avec bgcolor pour mettre en évidence la session asiatique.
Les lignes horizontales asianHigh et asianLow sont tracées pour visualiser les niveaux de range.
Intégration avec les cassages de la MA50 :
Les cassages de la MA50 sur H1 et H4 sont toujours affichés avec des flèches et des alertes.
Zero Lag Trend Signals with BacktestThis indicator is designed to identify trend direction and potential entry points using a Zero-Lag Exponential Moving Average (ZLEMA) combined with dynamic volatility bands. It provides multi-timeframe (MTF) analysis, allowing you to monitor trends across different timeframes simultaneously. The indicator also includes a back testing range feature, enabling you to evaluate its historical performance over a specific period.