Money Flow ExtendedMoney Flow Extended (MF)
Definition
The Money Flow Extended (MF) indicator brings together the functionality of the Money Flow Index indicator (MFI) , a tool created by Gene Quong and Avrum Soudack and used in technical analysis for measuring buying and selling pressure, and The Relative Strength Index (RSI) , a well versed momentum based oscillator created by J.Welles Wilder Jr., which is used to measure the speed (velocity) as well as the change (magnitude) of directional price movements.
History
As the Money Flow Index (MFI) is quite similar to The Relative Strength Index (RSI), essentially the RSI with the added aspect of volume, adding a Moving Average, divergence calculation, oversold and overbought gradients, facilitates the transition from RSI, making the use of MFI pretty similar.
What to look for
Overbought/Oversold
When momentum and price rise fast enough, at a high enough level, eventual the security will be considered overbought. The opposite is also true. When price and momentum fall far enough, they can be considered oversold. Traditional overbought territory starts above 80 and oversold territory starts below 20. These values are subjective however, and a technical analyst can set whichever thresholds they choose.
Divergence
MF Divergence occurs when there is a difference between what the price action is indicating and what MF is indicating. These differences can be interpreted as an impending reversal. Specifically, there are two types of divergences, bearish and bullish.
Bullish MFI Divergence – When price makes a new low but MF makes a higher low.
Bearish MFI Divergence – When price makes a new high but MF makes a lower high.
Failure Swings
Failure swings are another occurrence which can lead to a price reversal. One thing to keep in mind about failure swings is that they are completely independent of price and rely solely on MF. Failure swings consist of four steps and are considered to be either Bullish (buying opportunity) or Bearish (selling opportunity).
Bullish Failure Swing
MF drops below 20 (considered oversold).
MF bounces back above 20.
MF pulls back but remains above 20 (remains above oversold)
MF breaks out above its previous high.
Bearish Failure Swing
MF rises above 80 (considered overbought)
MF drops back below 80
MF rises slightly but remains below 80 (remains below overbought)
MF drops lower than its previous low.
Summary
The Money Flow Extended (MF) can be a very valuable technical analysis tool. Of course, MF should not be used alone as the sole source for a trader’s signals or setups. MF can be combined with additional indicators or chart pattern analysis to increase its effectiveness.
Inputs
Length
The time period to be used in calculating the MF. 14 is the default.
Pivot Loopback
After how many bars you want the divergence to show, on the scale of 1-5. 5 is the default.
Calculate Divergence
Calculating divergences is needed in order for divergence alerts to fire.
Moving Average section
You can learn more about the inputs in the "Moving Average" section in this Help Center article .
Style
MF
Can toggle the visibility of the MF as well as the visibility of a price line showing the actual current value of the MF. Can also select the MF Line's color, line thickness and visual style.
MF-based MA
Can toggle the visibility of the MF-based MA as well as the visibility of a price line showing the actual current MA value. Can also select its color, line thickness and line style.
MF Upper Band
Can toggle the visibility of the Upper Band as well as sets the boundary, on the scale of 1-100, for the Upper Band (80 is the default). The color, line thickness and line style can also be determined.
MF Middle Band
Can toggle the visibility of the Middle Band as well as sets the boundary, on the scale of 1-100, for the Middle Band (50 is the default). The color, line thickness and line style can also be determined.
MF Lower Band
Can toggle the visibility of the Lower Band as well as sets the boundary, on the scale of 1-100, for the Lower Band (20 is the default). The color, line thickness and line style can also be determined.
MF Background Fill
Toggles the visibility of a Background color within the MF's boundaries. Can also change the Color itself as well as the opacity.
Overbought Gradient Fill
Can toggle the visibility of the Overbought Gradient Fill. Can also select its colors combination.
Oversold Gradient Fill
Can toggle the visibility of the Oversold Gradient Fill. Can also select its colors combination.
Precision
Sets the number of decimal places to be left on the indicator's value before rounding up. The higher this number, the more decimal points will be on the indicator's value.
مؤشر القوى النسبية
Javokhir buy sellIt mixes ichimoku and support resistance. You wont miss the bottom or top while waiting ichimoku signals, and you wont miss a chance to sell while waiting price reaches to support or resistance
CJ - RSI - Daily, Weekly, MonthlyThe Single Indicator to showcase RSI - Daily, Weekly and Monthly Timeframe
Buy/Sell Signals (MACD + RSI) 1HThis is a Pine Script indicator for TradingView that plots Buy/Sell signals based on the combination of MACD and RSI indicators on a 1-hour chart.
Description of the Code:
Indicator Setup:
The script is set to overlay the Buy/Sell signals directly on the price chart (using overlay=true).
The indicator is named "Buy/Sell Signals (MACD + RSI) 1H".
MACD Settings:
The MACD (Moving Average Convergence Divergence) uses standard settings of:
Fast Length: 12
Slow Length: 26
Signal Line Smoothing: 9
The MACD line and the Signal line are calculated using the ta.macd() function.
RSI Settings:
The RSI (Relative Strength Index) is calculated with a 14-period setting using the ta.rsi() function.
Buy/Sell Conditions:
Buy Signal:
Triggered when the MACD line crosses above the Signal line (Golden Cross).
RSI value is below 50.
Sell Signal:
Triggered when the MACD line crosses below the Signal line (Dead Cross).
RSI value is above 50.
Signal Visualization:
Buy Signals:
Green "BUY" labels are plotted below the price bars where the Buy conditions are met.
Sell Signals:
Red "SELL" labels are plotted above the price bars where the Sell conditions are met.
Chart Timeframe:
While the code itself doesn't enforce a specific timeframe, the name indicates that this indicator is intended to be used on a 1-hour chart.
To use it effectively, apply the script on a 1-hour chart in TradingView.
How It Works:
This indicator combines MACD and RSI to generate Buy/Sell signals:
The MACD identifies potential trend changes or momentum shifts (via crossovers).
The RSI ensures that Buy/Sell signals align with broader momentum (e.g., Buy when RSI < 50 to avoid overbought conditions).
When the defined conditions for Buy or Sell are met, visual signals (labels) are plotted on the chart.
How to Use:
Copy the code into the Pine Script editor in TradingView.
Save and apply the script to your 1-hour chart.
Look for:
"BUY" signals (green): Indicating potential upward trends or buying opportunities.
"SELL" signals (red): Indicating potential downward trends or selling opportunities.
This script is simple and focuses purely on providing actionable Buy/Sell signals based on two powerful indicators, making it ideal for traders who prefer a clean chart without clutter. Let me know if you need further customization!
VWAP RSI Crossover StrategyStrategy Concept:
Buy Signal: When the price crosses above the VWAP and the RSI crosses above a certain threshold (e.g., 30).
Sell Signal: When the price crosses below the VWAP and the RSI crosses below a certain threshold (e.g., 70).
VWAP Calculation:
We calculate the VWAP using the ta.vwap(close) function.
RSI Calculation:
The rsi variable is the RSI of the closing price with a length of rsiLength (default 14).
Buy Condition:
The condition for a buy signal is when the price crosses above the VWAP and the RSI is above the rsiOversold level (default 30).
Sell Condition:
The condition for a sell signal is when the price crosses below the VWAP and the RSI is below the rsiOverbought level (default 70).
Alerts:
Alerts are created for buy and sell signals based on the conditions defined above. You can enable these alerts in TradingView for real-time notifications.
Strategy Execution:
The strategy enters a long position when the buy condition is met and closes the position when the sell condition is met.
CDZV RSI/RSX Divergence# CDZV RSI/RSX Divergence Indicator
This indicator is part of the CDZV Toolkit, a comprehensive suite of tools designed for automated trading strategies and backtesting. While the indicator can be used standalone for technical analysis, its integration with CDZV Toolkit allows traders to:
- Automate trading decisions based on divergence signals
- Perform detailed backtests of divergence-based strategies
- Integrate divergence signals with other CDZV Toolkit components
- Optimize strategy parameters using historical data
- Generate comprehensive performance reports
## Overview
The CDZV RSI/RSX Divergence Indicator is a sophisticated technical analysis tool that combines RSI (Relative Strength Index) and RSX (a modified RSI variant) to identify both regular and hidden divergences in market price action. This indicator is specifically designed to identify divergences only in overbought and oversold zones, making it more reliable for trading decisions.
## Main Features
### Dual Oscillator System
- **RSI (Relative Strength Index)**: Traditional momentum oscillator
- **RSX**: Modified version of RSI with enhanced smoothing characteristics
- Both oscillators can be used independently or together
### Divergence Types
1. **Regular Divergences**:
- Bullish: Price makes lower lows while oscillator makes higher lows (in oversold zone)
- Bearish: Price makes higher highs while oscillator makes lower highs (in overbought zone)
2. **Hidden Divergences** (Optional):
- Bullish: Price makes higher lows while oscillator makes lower lows (in oversold zone)
- Bearish: Price makes lower highs while oscillator makes higher highs (in overbought zone)
### Smart Filtering System
- Only identifies divergences in significant zones (overbought >70, oversold <30)
- Customizable lookback periods for divergence identification
- Adjustable minimum and maximum range for divergence confirmation
### Visual Features
- Histogram option for better visualization of momentum
- Color-coded signals for easy interpretation
- Customizable colors and line styles
- Transparency settings for better chart visibility
## CDZV Toolkit Integration Features
- Export divergence signals for strategy automation
- Customizable signal conditions for strategy testing
- Performance metrics collection for backtesting
- Integration with other CDZV indicators and tools
- Strategy optimization capabilities
## Customization Options
### RSI Settings
- Enable/Disable RSI
- Volume-based calculation option
- Divergence display toggle
- Period adjustment
- Multiple smoothing types
- Line width and transparency
- Custom color schemes
### RSX Settings
- Enable/Disable RSX
- Volume-based calculation option
- Divergence display toggle
- Period customization
- Smoothing options
- Visual appearance settings
### Divergence Settings
- Pivot lookback parameters
- Minimum and maximum lookback ranges
- Hidden divergence toggle
- Overbought/Oversold levels
### Visual Settings
- Level markers for overbought/oversold zones
- Crossline level
- Histogram customization
- Color schemes for different signals
## Technical Components
### Moving Average Types
The indicator includes multiple types of moving averages for smoothing:
- COVWMA (Coefficient of Variation Weighted Moving Average)
- DEMA (Double Exponential Moving Average)
- EMA (Exponential Moving Average)
- EHMA (Exponential Hull Moving Average)
- FRAMA (Fractal Adaptive Moving Average)
- HMA (Hull Moving Average)
- KAMA (Kaufman's Adaptive Moving Average)
- SMA (Simple Moving Average)
- TEMA (Triple Exponential Moving Average)
- VIDYA (Variable Index Dynamic Average)
- And more...
## Usage Guidelines
1. **Setup**:
- Select preferred oscillator (RSI, RSX, or both)
- Configure divergence settings
- Adjust visual parameters
- Configure CDZV Toolkit integration options if using automated strategies
2. **Signal Interpretation**:
- Regular bullish divergence: Potential reversal from downtrend
- Regular bearish divergence: Potential reversal from uptrend
- Hidden bullish divergence: Trend continuation upward
- Hidden bearish divergence: Trend continuation downward
3. **Best Practices**:
- Use in conjunction with other CDZV Toolkit components
- Perform thorough backtesting before live trading
- Pay attention to the overall market context
- Consider divergences only in oversold/overbought zones
- Use appropriate timeframes for your trading strategy
## Key Advantages
1. **Enhanced Reliability**: Focuses on divergences in extreme zones only
2. **Flexibility**: Multiple customization options for different trading styles
3. **Dual Confirmation**: Option to use both RSI and RSX for validation
4. **Clear Signals**: Visual distinction between regular and hidden divergences
5. **Advanced Smoothing**: Multiple moving average options for better signal quality
6. **Automation Ready**: Fully compatible with CDZV Toolkit's automation features
7. **Backtesting Integration**: Seamless integration with CDZV's backtesting engine
## Note
This indicator is designed as both a standalone technical analysis tool and a component of the CDZV Toolkit. While it can be used independently for manual trading, its full potential is realized when used as part of an automated trading strategy within the CDZV ecosystem. Always use proper risk management and combine with other forms of analysis for trading decisions.
BB + RSI Candle (Tommy) _ 5.1.2Hello traders from all around the world!
Our team is thrilled to introduce the latest evolution of our indicator lineup: the BB + RSI Candle. Building on the foundation of the widely appreciated "RSI Candle," this update not only enhances the original's capabilities but also addresses key limitations of popular BB(Bollinger Band) and RSI(Relative Strength Index) strategies. Instead of relying on conventional RSI alone, we've incorporated our previously developed RSI Candle—a more advanced and comprehensive approach to analyzing market movements.
While BB + RSI strategies have gained popularity recently throughout online community, they often fall short in capturing meaningful signals due to their reliance on simplistic RSI calculations based on closing prices. In contrast, the RSI Candle utilizes the full OHLC (Open, High, Low, Close) candlestick structure, offering deeper insights by accounting for wicks and tails—critical in volatile markets. By integrating this superior RSI Candle with Bollinger Bands, we’ve created a tool that significantly improves trend detection and trading accuracy.
This strategy retains the automatic detection of regular and hidden divergences that traders loved in the original. However, this version takes it further by highlighting sequential wicks (consecutive tails) in overbought and oversold zones outside the Bollinger Bands. When these wicks are detected alongside divergences, the indicator now automatically plots buy or sell signals directly on the candlestick chart. This provides traders with clear, actionable insights into potential trend reversals, even in the most volatile market conditions.
Customizability continues to be a core strength. You can adjust parameters such as wick length, the minimum number of consecutive wicks, and Bollinger Band types to match your specific trading style. Whether you’re seeking quick scalping opportunities or broader swing trading setups, this indicator adapts seamlessly. The intuitive on/off toggles for Bollinger Bands and key signals ensure a clutter-free, user-friendly experience.
This indicator is designed to help you identify confluence zones where multiple signals overlap, increasing the reliability of your trades. By combining Bollinger Band breakouts, RSI divergences, and sequential wick detection, this indicator empowers you to make confident entry and exit decisions in any market condition.
For those who prefer a more conservative approach or want signals to appear only when conditions are more robust, the indicator's settings can be fine-tuned to suit your needs. For example, you can tighten the overbought/oversold zones from the default 70/30 to 75/25, increase the consecutive wick count from the default 5 to 6, 7, or even 8, or extend the Bollinger Band length to smooth out volatility further. These adjustments allow you to tailor the indicator for a more cautious and deliberate trading strategy, aligning perfectly with your risk tolerance and market perspective.
If you'd like to experience the power of this indicator, please reach out via the Telegram link provided in our TradingView signature. We’re excited to see how you use it and look forward to your feedback!
안녕하세요, 트레이더 여러분, 토미입니다:)
간만에 새로운 지표를 소개합니다. 최근 커뮤니티에서는 BB(볼린저 밴드)와 RSI(Relative Strength Index)를 결합한 전략이 유행이더라고요. 하지만 기존 RSI는 종가만을 기준으로 산출되어 중요한 신호를 놓치는 경우가 많았습니다. 이런 한계를 보완하고자, 많은 사랑을 받았던 RSI Candle 지표를 기반으로 이번 BB + RSI Candle을 새롭게 선보이게 되었습니다.
기존 RSI는 캔들스틱의 꼬리를 배제하고 종가만을 기준으로 계산되는 반면, RSI Candle 지표는 캔들스틱의 시가, 종가뿐만 아니라 고가와 저가까지 모두 반영해 보다 입체적인 분석이 가능하도록 설계되었습니다. 특히 변동성이 큰 시장에서도 미세한 흐름을 놓치지 않고 포착할 수 있으며, 최근 트레이더들 사이에서 핫한 볼린저밴드와 결합해 현재 시장의 추세 강도와 잠재적인 변곡점, 그리고 최적의 매매 타점을 찾는 데 도움을 주는 지표입니다.
본 지표는 기존 RSI Candle의 일반 및 히든 다이버전스 자동 탐지 기능에 더해, 볼린저밴드 밖 과매수/과매도 구간에서 나타나는 RSI 캔들 연속 꼬리(Sequential Wicks)를 감지해 매수 또는 매도 신호를 캔들 차트에 직접 표시해줍니다. 특히 이 연속 꼬리 신호는 시장에서 중요한 추세 전환 또는 변곡점을 사전에 포착할 수 있는 강력한 시그널로, 이를 통해 보다 정확하고 신뢰할 수 있는 매매 전략을 수립할 수 있습니다.
또한 여러분의 매매 성향, 거래하는 종목의 특성, 그리고 타임프레임에 맞게 세부 설정을 자유롭게 조절할 수 있도록 설계했습니다 RSI 캔들 꼬리 인식 길이 및 연속 꼬리 신호 발생 조건, 볼린저밴드 설정 등을 통해 자신만의 트레이딩 스타일에 최적화된 전략을 구성하여 사용하실 수 있습니다. 단기적인 스캘핑부터 장기적인 스윙까지, 다양한 상황에 맞게 최적화된 파라미터와 설정값을 조정해 활용해 보세요!
더 신중한 접근을 원하시는 분들은 설정을 변경해 더욱 보수적인 기준으로 활용할 수도 있습니다. 예를 들어, 과매수/과매도 구간을 기존 70/30에서 75/25로 조정하거나, 연속 캔들 카운팅 값을 디폴트 값인 5에서 6, 7, 또는 8로 올리는 방법이 있습니다. 또는 볼린저밴드 길이를 더 늘려 시장 변동성을 더욱 부드럽게 반영할 수도 있습니다. 이러한 설정 변경을 통해 각자의 매매 스타일과 시장 접근 방식에 맞는 최적화된 도구로 활용할 수 있습니다.
항상 강조드리지만, 이 시장에서 100% 확실한 것은 없습니다. 본 지표 역시 다양한 신호가 겹치는 상황이나 구간을 참고하기 위한 도구로 활용하시는 것이 바람직합니다. 여러 기술적 신호가 동시에 발생하는 시점이나 영역, 즉 차트 내 중첩 레벨(Confluence Level)이 높은 곳을 인지하고 신중하게 의사결정을 내리는 것이 중요합니다. 이 지표는 볼린저밴드의 이탈 여부, 그리고 과열 구간에서의 RSI 다이버전스와 연속 캔들 꼬리 발생 여부라는 세 가지 신호를 중점적으로 고려합니다. 여기에 추가적으로 다른 기술적 요소를 종합적으로 분석함으로써 매매 전략의 신뢰도를 높이는 것이 필수적입니다. 항상 다양한 요소를 종합적으로 검토하며 자신만의 전략을 세우시길 바랍니다.
본 지표 사용 권한을 원하시면 트레이딩뷰 프로필에 기재된 텔레그램 링크 DM을 통해 문의 바랍니다.
RSI Super Trend [Kadir-Emre]This script creates an indicator called "RSI Super Trend" for TradingView. The indicator uses the RSI (Relative Strength Index) to analyze price movements and provides buy/sell signals along with trendlines. Here are the main features:
RSI Type Selection:
Users can choose between a standard RSI calculation method or one based on price bars.
RSI Visualization:
RSI values are displayed as a line and as bars on the chart. Additionally, overbought (70) and oversold (30) levels are highlighted with a background fill.
Primary and Secondary Trendlines:
The indicator automatically draws primary and secondary trendlines based on pivot points (local highs/lows). These lines help identify the general price direction.
Hidden and Regular Divergences:
It detects divergences between RSI values and price movements, highlighting them on the chart with distinct colors.
User Customizations:
Users can customize various features, such as line colors, widths, and extensions, according to their preferences.
This indicator is a robust tool for both short-term trading strategies and overall trend analysis.
Türkçe Açıklama
Bu kod, TradingView üzerinde "RSI Super Trend" adı verilen bir gösterge oluşturur. Gösterge, RSI (Göreceli Güç Endeksi) kullanarak fiyat hareketlerini analiz eder ve trend çizgileriyle birlikte alım/satım sinyalleri sağlamaya odaklanır. İşte temel özellikleri:
RSI Türü Seçimi:
Kullanıcı, standart RSI hesaplama yöntemi veya fiyat çubuklarına dayalı bir hesaplama yöntemi seçebilir.
RSI Çizimi:
RSI değerleri, hem grafik üzerinde bir çizgi olarak hem de çubuklar şeklinde görselleştirilir. Ayrıca, aşırı alım (70) ve aşırı satım (30) seviyelerini gösteren bir arka plan doldurma özelliği bulunur.
Birincil ve İkincil Trend Çizgileri:
Gösterge, pivot noktalarına (yerel yüksek/düşük) dayalı olarak birincil ve ikincil trend çizgilerini otomatik olarak çizer. Bu çizgiler fiyatın genel yönelimini anlamaya yardımcı olur.
Gizli ve Açık Uyumsuzluklar (Diverjans):
RSI değerleri ile fiyat arasında uyumsuzluklar tespit eder ve bu sinyalleri grafik üzerinde renklendirerek vurgular.
Kullanıcı Özelleştirmeleri:
Kullanıcılar çizgi renkleri, genişlikler ve uzantılar gibi birçok özelliği tercihlerine göre ayarlayabilir.
Bu gösterge, hem kısa vadeli al-sat stratejileri hem de genel trend takibi için güçlü bir araç sağlar.
RSI Buy-Sell Indicator - MissouriTimThe RSI Buy-Sell Indicator by MissouriTim, is an advanced trading tool designed to elevate your trading strategy. This indicator leverages the power of the Relative Strength Index (RSI) to provide clear and actionable buy and sell signals, ensuring you make informed trading decisions with confidence.
Key Features:
Customizable RSI Settings: Tailor the RSI source, length, and thresholds for overbought and oversold conditions to fit your trading style.
Real-Time Alerts: Enable BUY and SELL alerts to receive instant notifications when market conditions meet your criteria.
Visual Clarity: Easily distinguish between buy and sell signals with customizable line colors, ensuring you never miss a trading opportunity.
Intelligent Labeling: Buy and Sell labels dynamically update to reflect overbought and oversold current market conditions, providing you with clear entry and exit points.
Swing Lines: Visualize price movements with intuitive swing lines that connect recent highs and lows, helping you spot trends and reversals.
How It Works:
The RSI Buy-Sell Indicator utilizes the RSI and a specially designed algorithm to determine when an asset is overbought or oversold. When the RSI value crosses the specified overbought or oversold thresholds, the indicator generates a signal, displayed as a label on the chart. Additionally, swing lines are drawn to connect recent highs and lows, offering a visual representation of market trends.
This tool is perfect for traders who want to enhance their technical analysis and make more informed decisions. With its customizable settings and real-time alerts, the RSI Buy-Sell Indicator by MissouriTim is a must-have for any serious trader.
GMAX-TREND-DETECTORThis indicator combines Exponential Moving Average (EMA) crossovers with Relative Strength Index (RSI) thresholds to generate clear buy and sell signals. It’s designed for traders who want to use a dual confirmation strategy based on trend and momentum.
Features:
EMA Crossover:
Buy signal when EMA 12 crosses above EMA 24 and RSI > 60.
Sell signal when EMA 12 crosses below EMA 24 and RSI < 40.
Plots EMA 12 (green line) and EMA 24 (red line) for visual tracking.
RSI Thresholds:
Buy signal when RSI crosses above 40.
Sell signal when RSI crosses below 60.
Horizontal dotted lines mark RSI thresholds at 60 (overbought) and 40 (oversold).
Visual Signals:
Buy signals are displayed as green "BUY" labels below the price.
Sell signals are displayed as red "SELL" labels above the price.
Background highlights for additional clarity:
Green for buy zones.
Red for sell zones.
How It Works:
Buy Signal: Triggered when:
EMA 12 crosses above EMA 24, and RSI > 60.
RSI crosses above 40.
Sell Signal: Triggered when:
EMA 12 crosses below EMA 24, and RSI < 40.
RSI crosses below 60.
Use Case:
This indicator is ideal for traders seeking to combine trend-following (EMA) with momentum (RSI) strategies. It helps confirm the strength of trends before entering or exiting trades.
Customization:
Modify EMA lengths and RSI thresholds to suit your trading preferences.
Use with other tools or strategies to refine your trading decisions.
RSI with price volume by TradifyHere’s your RSI script with price volume, cleaned up and optimized:
Features:
RSI Calculation:
Computes RSI based on the user-defined length and source.
Midline (50) Plot:
A reference line at 50 for better RSI analysis.
Fill Visualization:
Highlights areas above 50 (red) and below 50 (aqua) for quick trend assessment.
Moving Averages:
Includes WMA (21, 5) for strength analysis and EMA (3) for price responsiveness.
If you’d like to add or adjust anything, let me know! 😊🙏
BTC GD9 vs GD100 w/RSI & MACD-Bestätigung (Chart: 6M, Kerze: 2H)
Tradingsignale für BTC: GD9 vs GD100 mit Bestätigung über RSI und MACD
Dieser Indikator wurde speziell für das Trading von Bitcoin entwickelt und kombiniert Trendfolgestrategien mit Momentum-Indikatoren. Er gibt klare Kauf- und Verkaufssignale aus und bietet eine einfache visuelle Unterstützung.
Signale:
Kaufsignal (BUY): Ein Kauf wird ausgelöst, wenn GD9 den GD100 von unten nach oben kreuzt, der RSI > 50 liegt und die MACD-Linie die Signallinie überkreuzt.
Verkaufssignal (SELL): Ein Verkauf wird ausgelöst, wenn GD9 den GD100 von oben nach unten kreuzt, der RSI < 50 liegt und die MACD-Linie unter die Signallinie fällt.
GD-Linien:
GD9 (grüne Linie): Kurzfristiger Trendindikator, der schnelle Kursbewegungen anzeigt.
GD100 (blaue Linie): Langfristiger Trendindikator, der größere Kursverläufe und Richtungen darstellt.
Chart-Anforderungen:
Zeiteinheit: 2-Stunden-Kerzen.
Zeitraum: 6-Monats-Chart (oder länger)
Hinweis: Dieser Indikator wurde speziell für volatile Märkte wie Bitcoin optimiert, bei denen schnelle Kursänderungen auftreten können.
Trading Signals for BTC: GD9 vs GD100 w/RSI w/MACD
This indicator is specifically designed for trading Bitcoin, combining trend-following strategies with momentum indicators. It provides clear buy and sell signals and offers simple visual support.
Signals:
Buy Signal (BUY): A buy is triggered when GD9 crosses above GD100, RSI > 50, and the MACD line crosses above the signal line.
Sell Signal (SELL): A sell is triggered when GD9 crosses below GD100, RSI < 50, and the MACD line crosses below the signal line.
GD Lines:
GD9 (green line): Short-term trend indicator, highlighting quick price movements.
GD100 (blue line): Long-term trend indicator, showing broader price trends and directions.
Chart Requirements:
Timeframe: 2-hour candles.
Period: 6-month chart to effectively utilize the signals.
Note: This indicator is specifically optimized for volatile markets like Bitcoin, where rapid price changes may occur.
BTC GD9 vs GD100 w/RSI & MACD-Bestätigung (Chart: 6M, Kerze: 1H)
Tradingsignale für BTC: GD9 vs GD100 mit Bestätigung über RSI und MACD
Dieser Indikator wurde speziell für das Trading von Bitcoin entwickelt und kombiniert Trendfolgestrategien mit Momentum-Indikatoren. Er gibt klare Kauf- und Verkaufssignale aus und bietet eine einfache visuelle Unterstützung.
Signale:
Kaufsignal (BUY): Ein Kauf wird ausgelöst, wenn GD9 den GD100 von unten nach oben kreuzt, der RSI > 50 liegt und die MACD-Linie die Signallinie überkreuzt.
Verkaufssignal (SELL): Ein Verkauf wird ausgelöst, wenn GD9 den GD100 von oben nach unten kreuzt, der RSI < 50 liegt und die MACD-Linie unter die Signallinie fällt.
GD-Linien:
GD9 (grüne Linie): Kurzfristiger Trendindikator, der schnelle Kursbewegungen anzeigt.
GD100 (blaue Linie): Langfristiger Trendindikator, der größere Kursverläufe und Richtungen darstellt.
Chart-Einstellungen:
Zeiteinheit: 2-Stunden-Kerzen.
Zeitraum: 6-Monats-Chart (min.)
Hinweis: Dieser Indikator wurde speziell für volatile Märkte wie Bitcoin optimiert, bei denen schnelle Kursänderungen auftreten können.
Trading Signals for BTC: GD9 vs GD100 w/RSI w/MACD
This indicator is specifically designed for trading Bitcoin, combining trend-following strategies with momentum indicators. It provides clear buy and sell signals and offers simple visual support.
Signals:
Buy Signal (BUY): A buy is triggered when GD9 crosses above GD100, RSI > 50, and the MACD line crosses above the signal line.
Sell Signal (SELL): A sell is triggered when GD9 crosses below GD100, RSI < 50, and the MACD line crosses below the signal line.
GD Lines:
GD9 (green line): Short-term trend indicator, highlighting quick price movements.
GD100 (blue line): Long-term trend indicator, showing broader price trends and directions.
Chart Requirements:
Chart: Timeframe: 2-hour candles. Period: 6-month chart to effectively utilize the signals.
Note: This indicator is specifically optimized for volatile markets like Bitcoin, where rapid price changes may occur.
Relative Strength with F&O stocks sector automatic mapping Determine the relative strength of a stock vis-a-vis a larger benchmark. Default is NIFTY50.
Key Features:
Sector Mapping: The script identifies the stock's sector using predefined arrays for sector stocks (e.g., healthcareStocks, energyStocks). It maps the stock to its sector index, like NSE:CNXIT for IT stocks.
Relative Strength Calculation: The RS is calculated by comparing the stock's price movements with its sector index or the default index.
Customizable Options:
Period (length) for RS calculation.
Display options like zero line, reference labels, trend color, etc.
Visual Enhancements:
Trend colors for RS crossovers.
Option to show moving averages of RS or price for confirmation.
note:- original author @bharatTrader
Relative Strength with F&O stocks sector automatic mapping Determine the relative strength of a stock vis-a-vis a larger benchmark. Default is NIFTY50.
Key Features:
Sector Mapping: The script identifies the stock's sector using predefined arrays for sector stocks (e.g., healthcareStocks, energyStocks). It maps the stock to its sector index, like NSE:CNXIT for IT stocks.
Relative Strength Calculation: The RS is calculated by comparing the stock's price movements with its sector index or the default index.
Customizable Options:
Period (length) for RS calculation.
Display options like zero line, reference labels, trend color, etc.
Visual Enhancements:
Trend colors for RS crossovers.
Option to show moving averages of RS or price for confirmation.
note:- original author @bharatTrader
original script :
updated by: @Sheladiya_Aakash , @Vijay0388
Custom RSI Zones by Auto MarketsCustom RSI Zones by Auto Markets is a simple yet powerful tool for traders to monitor overbought and oversold conditions on the Relative Strength Index (RSI). With customizable levels and a clean visual representation, this script is perfect for traders of all skill levels.
Key Features:
• Customizable RSI Length: Adjust the RSI calculation period to fit your strategy.
• Overbought and Oversold Zones: Clearly marked at user-defined levels (default: 70 for overbought, 30 for oversold).
• Clean RSI Plot: Displays the RSI line on your chart for quick decision-making.
• Includes Auto Markets branding, ensuring professional credibility.
How to Use:
1. Set the RSI Length based on your preferred trading timeframe.
2. Customize the Overbought and Oversold Levels to align with your strategy.
3. Look for signals:
• Overbought Zone: RSI above the overbought level may indicate a potential reversal or correction.
• Oversold Zone: RSI below the oversold level may indicate a potential upward move.
About Auto Markets:
Developed by Auto Markets, a trusted name in trading solutions. Visit us at www.automarkets.co.uk for more innovative tools and insights.
MA Crossover + RSI Strategy [deepakks444]This indicator is designed to provide buy (long) and sell (short) signals based on a combination of moving average (MA) crossovers, the Relative Strength Index (RSI), and a custom moving average filter. It allows traders to identify potential entry and exit points based on price trends and momentum.
Key Components
1. Moving Averages (MAs):
Short EMA (Exponential Moving Average): Default length of 9.
Long EMA: Default length of 21.
These are used to detect trend crossovers, where the short EMA crossing above the long EMA indicates a potential bullish trend, and vice versa for bearish trends.
2. Custom Moving Average (Custom MA):
Configurable to be one of the following: SMA (Simple Moving Average), EMA, WMA (Weighted Moving Average), or VWMA (Volume Weighted Moving Average).
Default length is 200, commonly used as a long-term trend indicator.
Color-coded dynamically:
Green: Price is above the Custom MA.
Red: Price is below the Custom MA.
3. Relative Strength Index (RSI):
Default length of 14.
Customizable Overbought Level (default: 60) and Oversold Level (default: 40).
Provides a momentum filter to ensure trades are taken when the market exhibits strong trends in a favorable direction.
Signal Logic
Buy Signal (Long Entry - XL):
The Short EMA crosses above the Long EMA (bullish crossover).
RSI value is above the oversold level (indicating momentum is not excessively weak).
The price is above the Custom MA, confirming alignment with the prevailing trend.
Sell Signal (Short Entry - XS):
The Short EMA crosses below the Long EMA (bearish crossover).
RSI value is below the overbought level (indicating momentum is not excessively strong).
The price is below the Custom MA, confirming alignment with the prevailing trend.
Pending Signals
Pending signals account for situations where the crossover and RSI conditions are met, but the price has not yet crossed the Custom MA. These are tracked to activate only when the price moves in alignment with the Custom MA:
Pending Buy: Triggered when:
Short EMA crosses above Long EMA.
RSI > Oversold Level.
Price is below the Custom MA.
Activates when the price crosses above the Custom MA.
Pending Sell: Triggered when:
Short EMA crosses below Long EMA.
RSI < Overbought Level.
Price is above the Custom MA.
Activates when the price crosses below the Custom MA.
Visual Elements
EMA Lines:
Blue Line: Short EMA.
Red Line: Long EMA.
Custom MA:
Green: Indicates price is above the Custom MA.
Red: Indicates price is below the Custom MA.
Signal Arrows:
Green UP Arrow (XL): Buy signal.
Red DOWN Arrow (XS): Sell signal.
Alerts
Configurable alerts notify the user when:
Buy Signal: "Price crossed above the short EMA and RSI is oversold."
Sell Signal: "Price crossed below the short EMA and RSI is overbought."
Strategy Overview
This strategy combines trend-following (EMA crossovers) and momentum confirmation (RSI) with a Custom MA filter to ensure trades align with broader market trends. The Custom MA acts as a safety check, preventing trades against the prevailing trend.
Disclaimer
This script is for educational purposes only. Trading involves significant financial risk, and past performance is not indicative of future results. Use this script at your own discretion, and always back test before deploying it in live markets. The author is not responsible for any financial losses incurred while using this script.
This indicator is suitable for traders who prefer to combine trend-based strategies with momentum confirmation to filter out false signals and increase trade reliability.
RS and RM indicatorsRS and RM indicators measure simple relative strenght and relative momentum of a given security
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!