MA & SUPPORT RESISTANT INDICATOR
Moving Average and Support & Resistance Level Indicator
This indicator is a robust tool designed to enhance trend analysis and pinpoint critical price levels for traders. It automatically plots three exponential moving averages (EMAs)—21, 50, and 200—covering short-, medium-, and long-term perspectives. The 21 EMA (blue) tracks rapid price movements, the 50 EMA (red) identifies intermediate trends, and the 200 EMA (white) serves as a long-term trend anchor, as seen in the recent BTC/USD 4-hour chart. These moving averages provide a clear visual framework to determine whether the market is in an uptrend, downtrend, or range-bound state.
Complementing the EMAs, the indicator dynamically plots support and resistance bands (green for support, red for resistance) based on recent price highs and lows. These bands adapt to market conditions, marking key zones where price is likely to find support during pullbacks or face resistance during rallies—such as the recent support test around $86,000 and resistance near $90,000 on the chart. This combination allows traders to identify potential entry points, stop-loss levels, or profit targets with precision.
Practical Use and Confirmation with Other Indicators
Traders can use this indicator to time trades effectively. For instance, a bullish signal emerges when the 21 EMA crosses above the 50 EMA while both remain above the 200 EMA, suggesting upward momentum—ideal for entries near a green support band. Conversely, a bearish signal occurs when the 21 EMA crosses below the 50 EMA, with red resistance bands acting as potential shorting zones or exit points, as observed during the recent downtrend in the chart.
For added confirmation, pair this indicator with the Relative Strength Index (RSI) , visible in the lower panel of the chart. When price tests a green support band and the RSI dips below 30 (indicating oversold conditions), it strengthens the case for a reversal or bounce. Similarly, near a red resistance band, an RSI above 70 (overbought) can confirm a rejection or trend continuation. This dual approach enhances reliability by aligning trend direction, key levels, and momentum, making it suitable for swing trading or scalping on volatile assets like BTC/USD.
Give this indicator a shot and let me know what you think—I’d love your feedback so we can improve it together!
Moyennes mobiles
SMA of a specific time period특정 기간의 이동평균을 설정하여 포지션을 확인할 수 있는 SMA 지표
SMA indicator to check the position by setting the moving average of a specific time period without selecting the time
THMA-Vol 1. Triangular Hull Moving Average (THMA):
THMA is a variation of the Hull Moving Average designed to provide better responsiveness to price movements compared to traditional moving averages.
It uses a weighted moving average (WMA) in a more advanced way to effectively smooth the data.
The formula for calculating THMA is:
pine
Copy
Edit
ta.wma(ta.wma(_src,_length / 3) * 3 - ta.wma(_src, _length / 2) - ta.wma(_src, _length), _length)
2. Volatility:
Volatility is measured using the Hull Moving Average (HMA) applied to the difference between the "high" and "low" of each period.
The volatility value is adjusted based on the percentile ranking.
The volatility is normalized by dividing it by its percentile value.
3. Signals:
Signals are generated when the THMA crosses above or below its previous value, indicating trend shifts:
Bullish Signal: When the THMA crosses above its previous value, signaling an upward trend shift.
Bearish Signal: When the THMA crosses below its previous value, signaling a downward trend shift.
4. Bands and Visual Representation:
The indicator provides volatility bands around the THMA, visually representing market volatility.
Users can toggle the display of volatility bands using the volat setting, allowing them to choose whether or not to show these bands.
5. Colors:
Green (Bullish): Indicates a bullish trend (upward movement).
Pink (Bearish): Indicates a bearish trend (downward movement).
6. Plotting and Signal Shapes:
Triangle shapes are plotted on the chart to visually indicate trading signals (upward and downward triangles) when a crossover or crossunder of THMA occurs.
7. Market Trend and Volatility Display:
A table is displayed at the bottom-right corner of the chart, showing the current trend (Trend) and volatility (Volatility) in real-time.
8. Inputs:
len_: Length of the THMA moving average.
source: The data source used (typically close price).
volat: Toggle to enable/disable the display of volatility bands.
len_vol: Length of the moving average used to calculate volatility.
This indicator combines trend analysis (using THMA) and volatility analysis (using HMA) to provide a more comprehensive market view, helping traders identify potential trend shifts and assess market volatility.
PPR & Pin Bar finderPPR & Pin Bar Indicator is a powerful tool designed for traders who want to identify key reversal patterns with trend confirmation. This indicator detects PPR (Pivot Point Reversal) and Pin Bar candlestick patterns while also displaying a colored moving average (MA) trend line to help traders make informed decisions.
Banana 325 - Trishula SoftwareHonoring @Banana3Stocks with the Banana 325—a standard 325 SMA in banana yellow. One of the best traders on X and a true inspiration to our work at Trishula Software.
Thank you for your dedication and impact! 🍌
Médias Móveis Personalizadas//@version=5
indicator("Médias Móveis Personalizadas", overlay=true)
// === Médias Móveis ===
// MA 21 (Verde)
ma_21 = ta.sma(close, 21)
plot(ma_21, color=color.new(color.green, 0), linewidth=2, title="MA 21")
// MA 50 (Vermelha)
ma_50 = ta.sma(close, 50)
plot(ma_50, color=color.new(color.red, 0), linewidth=2, title="MA 50")
// MA 200 (Branca Fina)
ma_200 = ta.sma(close, 200)
plot(ma_200, color=color.new(color.white, 0), linewidth=1, title="MA 200")
// EMA 200 (Branca Engrossada)
ema_200 = ta.ema(close, 200)
plot(ema_200, color=color.new(color.white, 0), linewidth=3, title="EMA 200")
ZETAElbette, "EMA Slope Trend Follower" olan eski kodun adını "ZETA" olarak değiştirerek ve diğer düzeltmeleri yaparak İngilizce açıklamayı güncelleyelim:
Gösterge Açıklaması (İngilizce):
Title: ZETA
Description:
This indicator, "ZETA," is designed to identify potential trend reversals and generate buy/sell signals based on the slope of a moving average (MA). It utilizes two Exponential Moving Averages (EMAs) of the slope to determine trend direction and signal entries.
Key Features:
Moving Average Selection: Allows users to choose between Exponential Moving Average (EMA) and Simple Moving Average (SMA) as the base MA.
Customizable Lengths: Provides adjustable lengths for the base MA, fast slope EMA, and slow slope EMA.
Slope Calculation: Calculates the slope of the base MA by dividing the change in MA by its value.
Signal Generation: Generates buy signals when the fast slope EMA crosses above the slow slope EMA and the slope crosses above the fast slope EMA. Conversely, sell signals are generated when the fast slope EMA crosses below the slow slope EMA and the slope crosses below the fast slope EMA.
Signal Control: Includes a signal counter and an active flag to limit the number of signals generated within a short period and to reactivate the signals when a new crossover occurs between the fast and slow slope EMAs.
Visual Representation: Plots the slope, fast slope EMA, and slow slope EMA on the chart for easy analysis.
Background Highlighting: Highlights the chart background with green for buy signals and red for sell signals, with adjustable transparency (25% visibility).
Alerts: Provides alert conditions for buy and sell signals.
Usage:
This indicator can be used to identify potential trend reversals and generate buy/sell signals. Traders can adjust the input parameters to optimize the indicator for different markets and timeframes.
Input Parameters:
Source MA Type: Select between EMA and SMA for the base moving average.
Source MA Length: Length of the base moving average.
Fast Slope MA Length: Length of the fast slope EMA.
Slow Slope MA Length: Length of the slow slope EMA.
Differences between the first code ("EMA Slope Trend Follower") and the last code ("ZETA"):
The main difference between the first and last versions of the code is the addition of a signal control mechanism and background color opacity adjustment.
First Code ("EMA Slope Trend Follower"):
The first version of the code simply plotted the slope and its EMAs, and generated buy/sell signals based on crossovers.
It had no mechanism to limit the number of signals or to control the signal activity.
The background color that was generated by the buy and sell signals were fully opaque.
Last Code ("ZETA"):
The last version introduces a signal counter and an active flag to limit the number of signals generated within a short period.
It also includes logic to reactivate the signals when a new crossover occurs between the fast and slow slope EMAs.
The last code also makes the background color that is generated by the buy and sell signals be 25% visable.
These additions enhance the indicator's usability by reducing false signals and improving signal reliability.
Important Notes:
This indicator is provided for informational purposes only and should not be considered as financial advice.
Traders should use this indicator in conjunction with other technical analysis tools and risk management strategies.
CCT Pi Cycle Top/BottomPi Cycle Indicator: Market Cycle Top & Bottom Detection
Overview
The Pi Cycle Indicator is a widely recognized tool used to identify market cycle tops and bottoms based on specific moving averages. This indicator is particularly useful for long-term trend analysis, especially in the Bitcoin market. The F!72 Pi Cycle Indicator combines the traditional Pi Cycle Top and Pi Cycle Bottom indicators into a single script, improving readability and visualization.
Why These Moving Averages?
The selection of moving averages in this indicator is based on historical backtesting and their observed efficiency in marking major market cycle turning points.
- Pi Cycle Top:
- 111-day SMA: A short-term simple moving average that reacts relatively quickly to price changes.
- 350-day SMA (x2): A long-term simple moving average, multiplied by 2 to create a dynamic resistance level. Historically, when the 111-day SMA crosses above the 350-day SMA (x2), it has marked market tops with high accuracy.
- Pi Cycle Bottom:
- 150-day EMA: An exponential moving average that gives more weight to recent price action, allowing it to capture price reversals earlier.
- 471-day SMA: A long-term simple moving average that provides structural support. When the 150-day EMA crosses below the 471-day SMA, it has historically indicated market cycle bottoms.
Timeframe Considerations
The Pi Cycle Indicator is most effective on the daily timeframe . Due to the long lookback periods of the moving averages used, lower timeframes (such as 4H or 1H) may not provide meaningful signals. The indicator works best when applied to long-term historical price movements.
How to Use This Indicator
1. Enable the Pi Cycle Top and/or Bottom in the settings.
2. Observe crossovers between the short and long moving averages.
3. Pay attention to the cross-labels marking potential market tops and bottoms.
4. Use additional confluence factors such as volume analysis and macroeconomic conditions to validate the signals.
Conclusion
The Pi Cycle Indicator has demonstrated strong historical accuracy in identifying market cycle turning points. However, it should not be used in isolation. Traders are encouraged to incorporate additional technical and fundamental analysis to confirm signals before making trading decisions.
This enhanced version improves upon previous implementations by integrating the latest Pine Script v6 capabilities, optimizing both visual representation and informational accessibility .
賽克斯策略 - 進階版 - 含勝率統計使用場景與優缺點
使用場景
趨勢交易:
當啟用趨勢排列(useTrend)和通道測試(useChannelTest)時,適合捕捉中長期趨勢。
短線交易:
使用「另類原則」並關閉部分條件,適合快速進出場。
策略測試:
通過調整輸入參數和條件,分析不同市場環境下的表現(統計表格提供數據支持)。
風險管理:
固定盈虧比和ATR動態止損幫助控制風險,適合風險敏感的交易者。
優點
高度自訂性:
多種進場原則和條件選項,適應不同交易風格。
視覺化清晰:
通道、標籤和統計表格提供直觀的交易資訊。
風險控制:
內建止盈止損機制,確保交易紀律。
統計功能:
提供勝率和交易次數,方便回顧和優化。
缺點
複雜性:
多條件組合可能讓新手難以理解,需熟悉每個參數的影響。
效能依賴市場:
在震盪市中,維加斯通道和QQE可能產生較多假信號。
標籤重疊:
在價格密集區域,E/TP/SL標籤可能重疊,影響可讀性。
OD EssentialsOD Essentials Indicator
The OD Essentials indicator is a comprehensive script designed to provide traders with key technical levels across multiple timeframes, including moving averages, VWAP, and opening price levels. It also features an Opening Range Breakout (ORB) strategy to help traders identify potential breakouts.
⸻
1. Moving Average Helper Function
This function allows the calculation of different types of moving averages, including:
• Simple Moving Average (SMA)
• Exponential Moving Average (EMA)
• Smoothed Moving Average (SMMA/RMA)
• Weighted Moving Average (WMA)
• Volume Weighted Moving Average (VWMA)
⸻
2. Daily SMAs (20D, 50D, 100D, 200D)
Plots the 20-day, 50-day, 100-day, and 200-day simple moving averages (SMA) using daily timeframe data:
• 20D SMA: Light blue
• 50D SMA: Dark blue
• 100D SMA: Medium blue
• 200D SMA: Light purple
These SMAs help identify trend direction and key support/resistance levels.
⸻
3. VWAP from 1-Minute Timeframe
Plots the VWAP (Volume Weighted Average Price) calculated using 1-minute timeframe data. This provides real-time insight into price movements based on volume.
⸻
4. 9 EMA from 5-Minute Timeframe
Plots the 9-period EMA from the 5-minute timeframe, which helps traders identify short-term trend direction and possible trade setups.
⸻
5. 200-Week Moving Average (SMA)
Plots the 200-week SMA, a critical long-term moving average that often serves as strong support or resistance in higher timeframes.
⸻
6. Daily, Weekly, and Monthly Opens
Plots the opening prices for the daily, weekly, and monthly timeframes:
• Daily Open: Purple
• Weekly Open: Green
• Monthly Open: Red
These levels help traders identify significant price reference points.
⸻
7. Opening Range Breakout (ORB)
The ORB strategy tracks price action within a defined time window (default: first 5 minutes of the session). It then establishes an ORB high and ORB low:
• ORB High: Green
• ORB Low: Red
If price breaks above the ORB high, it signals a potential bullish breakout. A breakdown below the ORB low suggests a bearish move. This feature is hidden when the chart resolution is greater than the ORB range.
Reddingtom MM Crypto Futures Bot2.0Reddington MM Crypto Futures Bot" — это многостратегический индикатор, разработанный для торговли фьючерсами на криптовалютных рынках. Он объединяет три подхода — Market Making (ММ), Supertrend (СТ) и Reversal (РС) — чтобы предоставить трейдерам гибкие сигналы для разных рыночных условий. Индикатор оптимизирован для различных таймфреймов и включает фиксированные уровни входа ("ТВХ"), стоп-лосса ("СЛ") и тейк-профита ("ТП"), что делает его удобным для управления рисками в условиях волатильности фьючерсных рынков.
**Ключевые стратегии**:
1. **Market Making (ММ)**:
- **Таймфрейм**: 5m-15m.
- **Цвет**: Желтый (Long), Оранжевый (Short).
- **Условия**: Сигналы генерируются на основе пересечения быстрых и медленных EMA (`emaFast` и `emaSlow`) с фильтром низкой волатильности (ATR < 2x среднего ATR за 24 часа) и ликвидности (диапазон свечи ≥ 0.2% от цены закрытия). Подходит для боковых движений и высокочастотной торговли.
- **Особенности**: Отображает только "ТВХ", так как стратегия предполагает быстрые сделки без фиксированных стопов и профитов.
2. **Supertrend (СТ)**:
- **Таймфрейм**: 15m-1h.
- **Цвет**: Зелёный (Long), Красный (Short).
- **Условия**: Использует индикатор Supertrend для определения тренда, подтверждённого положительным MACD (`macdLine > 0`) для Long или отрицательным (`macdLine < 0`) для Short, и ADX > 15 для фильтрации слабых движений. Подходит для трендовых рынков.
3. **Reversal (РС)**:
- **Таймфрейм**: 1h-4h.
- **Цвет**: Синий (Long), Фиолетовый (Short).
- **Условия**: Сигналы возникают при разворотных условиях: RSI < 30 (Long) или > 70 (Short), цена за пределами полос Боллинджера (ниже нижней для Long, выше верхней для Short), MACD соответствует направлению (положительный для Long, отрицательный для Short), и ADX > 15. Подходит для ловли коррекций на крупных таймфреймах.
Дисклеймер
Reddington не является финансовым консультантом; пожалуйста, обратитесь к специалисту. Этот индикатор предоставляется исключительно в информационных и образовательных целях и не должен рассматриваться как финансовая рекомендация. Торговля фьючерсами связана со значительным риском потерь и подходит не всем инвесторам. Прошлые результаты не гарантируют будущих успехов. Используйте на свой страх и риск и убедитесь, что вы понимаете связанные с этим риски, прежде чем принимать какие-либо торговые решения. Не предоставляйте информацию, которая может идентифицировать вас.*
Break Up/Down TDIDetects bullish and bearish cross of SMA2 with SMA34, based on RSI 21 periods. Displays breaks up and breaks down in a table in real time.
Death Metal 9A part of the DMM Face-Melter Pro indicator suite, available as a standalone package.
A 9 period moving average (either SMA or EMA) that is wrapped in a 3-10-16 oscillator histogram.
The 3-10-16 oscillator is a MACD variant popularized by famed trader Linda Raschke and used since 1981.
This oscillator is great for identifying shorter-term trend shifts in price action momentum, especially when paired with a 9 period moving average.
Includes the 200 day moving average cloud feature.
200 Day SMA and EMA moving averages displayed together to create a highly reliable cloud of support and resistance.
The 200 day moving averages are gold standard for serious traders. Price action nearly always reacts to them, whether on the way down or back up.
Utilizing both the 200 day SMA and EMA together provides a logical range (or cloud) to work with, rather than a cut-and-dry single line.
LWMAThe LWMA(linear Weighted Methodical Assault), is the ultimate momentum trading indicator. You can choose from buy only or seell only strategies, or both! Using various filter settings and crossover settings, you can modify the indicator to your needs, or run it as is, with your choice of various filters or no filter. This indicator was created specifically for XAU/USD, but can be used effectively on BTC, OIL or Stocks.
Contact me, if you want access to this indicator, it cost me considerable money to develop, I can accept $50 usd via paypal for life time use.
$$RSI+STOCH
In the chart, the RSI + Stoch Crossover indicator identifies momentum shifts by applying a Stochastic Oscillator to the RSI, with BUY signals appearing when the blue %K line crosses above the orange %D line in the oversold zone, and SELL signals triggering when the %K line crosses below %D in the overbought zone, helping traders spot potential reversals.* keep out for crossover before DOT confirmation.
In the chart, three indicators work together to confirm trades:
Swing Alert Indicator identifies key reversal points with BUY at lows and SHORT/SELL at highs.
BTC, BNB, ETH, SOL Confirmation ensures trend alignment—if major cryptos show similar signals, it strengthens trade conviction.
Stochastic RSI refines entries by spotting momentum shifts—BUY when oversold, SELL when overbought.
When all three align, they provide strong confirmation, reducing false signals and increasing trade accuracy.
RSI + Stoch Crossover Indicator
The RSI + Stoch Crossover indicator is designed to enhance momentum-based trading strategies by combining the Relative Strength Index (RSI) with a Stochastic Oscillator crossover. This indicator helps traders identify potential trend reversals and entry points by detecting overbought and oversold conditions with a smoothed stochastic calculation of the RSI.
Key Features:
✅ RSI-Based Stochastic Calculation – Uses the RSI as the input for the Stochastic Oscillator, providing a refined view of market momentum.
✅ Crossover Signals – Generates BUY signals when the %K line crosses above %D and SELL signals when the %K line crosses below %D.
✅ Overbought & Oversold Levels – Clearly marked zones at 80 (overbought) and 20 (oversold) to help spot potential reversals.
✅ Visual & Alert System – Displays dots and labels at crossover points and includes alerts for timely trade execution.
✅ Timeframe-Specific Inputs – The indicator’s parameters vary depending on the timeframe. The default settings are optimized for the 4-hour (4H) chart, but traders can adjust them to suit different timeframes and trading styles. (4,4,6,5,LOW). *Drop me a message if you are trading on a different time frame.
This indicator is useful for traders looking to improve their market entries and exits with a more nuanced approach to RSI-based momentum shifts.
OB ÖzelRsı order block, Supertrend, Ema 100-200
Do not take a trade if the last 2 volume candles are 3 times higher than the average
Price vs EMA 25/50/100This indicator displays the distance between the current price and three exponential moving averages (EMAs): 25, 50, and 100 periods. Here's a breakdown of what it does:
It calculates three EMAs: 25, 50, and 100-period
It measures the distance from the current price to each EMA in both ticks and pips
It displays these distances in a customizable panel on the chart
The script includes several customization options:
- Text and panel color
- Font size
- Option to display distances in pips or ticks
- Panel position (top right, bottom right, etc.)
The indicator helps traders quickly see how far price has moved away from these key moving averages, which can be useful for identifying potential reversion opportunities or trend strength.
This works awesome with MT Earning English:
This indicator is designed to identify trend reversals and provide clear trading signals based on a dynamic moving average (MA) and price action. It uses a customizable MA length that adapts to market conditions, incorporating filters such as RSI, Stochastic, and volume spikes to confirm trends. Signals are generated when the trend switches from a downtrend to an uptrend (buy signal) or from an uptrend to a downtrend (sell signal), with an optional cooldown period to avoid excessive signal clustering. The indicator visually highlights trends with colored MA lines and fill areas, while signals are represented by triangles below or above the price bars for easy identification.
Español:
Este indicador está diseñado para identificar reversiones de tendencia y proporcionar señales de trading claras basadas en un promedio móvil dinámico (MA) y la acción del precio. Utiliza una longitud de MA personalizable que se adapta a las condiciones del mercado, incorporando filtros como RSI, Stochastic y picos de volumen para confirmar las tendencias. Las señales se generan cuando la tendencia cambia de bajista a alcista (señal de compra) o de alcista a bajista (señal de venta), con un período de enfriamiento opcional para evitar una acumulación excesiva de señales. El indicador resalta visualmente las tendencias con líneas de MA coloreadas y áreas de relleno, mientras que las señales se representan con triángulos debajo o encima de las barras de precio para una identificación fácil.
Français:
Cet indicateur est conçu pour identifier les inversions de tendance et fournir des signaux de trading clairs basés sur une moyenne mobile dynamique (MA) и l'action des prix. Il utilise une longueur de MA personnalisable qui s'adapte aux conditions du marché, en intégrant des filtres tels que le RSI, le Stochastique et les pics de volume pour confirmer les tendances. Les signaux sont générés lorsque la tendance passe d'une tendance baissière à une tendance haussière (signal d'achat) ou d'une tendance haussière à une tendance baissière (signal de vente), avec une période de refroidissement facultative pour éviter une accumulation excessive de signaux. L'indicateur met visuellement en évidence les tendances avec des lignes de MA colorées et des zones de remplissage, tandis que les signaux sont représentés par des triangles sous ou au-dessus des barres de prix pour une identification facile.
Русский:
Этот индикатор предназначен для выявления разворотов тренда и предоставления чётких торговых сигналов на основе динамической скользящей средней (MA) и движения цены. Он использует настраиваемую длину MA, адаптирующуюся к рыночным условиям, с включением фильтров, таких как RSI, Стохастик и всплески объёма, для подтверждения трендов. Сигналы генерируются при переходе тренда из нисходящего в восходящий (сигнал покупки) или из восходящего в нисходящий (сигнал продажи), с необязательным периодом охлаждения для предотвращения избыточного наложения сигналов. Индикатор визуально выделяет тренды с помощью цветных линий MA и зон заливки, а сигналы представлены треугольниками под или над ценовыми барами для удобной идентификации.
Múltiplos Timeframes Como Funciona:
O sinal de compra só será gerado quando todas as condições para os 4 timeframes forem atendidas (preço acima da EMA 13 e da SMA 26).
O sinal de venda só será gerado quando todas as condições para os 4 timeframes forem atendidas (preço abaixo da EMA 13 e da SMA 26).
Isso garante que você só receba sinais quando houver uma tendência de alta ou baixa consistente em todos os timeframes que você está monitorando.
FELIPE MENDONCA
Bigbull AI ArrowBigbull AI Arrow is a trend-based reversal strategy designed for binary options and scalping. It combines Wies Waves Volume Oscillator (WWVO) with a 10-period SMA trend filter to detect high-probability trade setups. The strategy also includes a Doji/small candle filter to avoid false signals in choppy markets.
🔹 Key Features:
✅ Smart Swing Detection – Detects trend shifts using volume momentum.
✅ Trend Confirmation – Uses a SMA-10 filter to trade only in the prevailing trend direction.
✅ Chop Avoidance – Ignores red-green choppy patterns for cleaner entries.
✅ Doji & Small Candle Filter – Avoids signals after weak candles for better accuracy.
✅ Win/Loss Accuracy Tracker – Displays real-time stats of winning trades.
🔹 Entry Conditions:
📈 BUY Signal (Green Arrow) → When volume shifts bullish, trend confirms, and no doji/small candle is detected.
📉 SELL Signal (Red Arrow) → When volume shifts bearish, trend confirms, and no doji/small candle is detected.
💡 Works best in trending markets. Avoid using it in ranging or sideway conditions.
📩 DM me on Telegram: @bigbullamitfx for more strategies and trading insights! 🚀