Major Currency RSI Indicator (MCRSI)Experience the power of multi-dimensional analysis with our Multi-Currency RSI Indicator (MCRSI). This innovative tool allows traders to simultaneously track and compare the Relative Strength Index (RSI) of eight different currencies in a single chart.
The MCRSI calculates the RSI for USD (DXY), EUR (EXY), JPY (JXY), CAD (CXY), AUD (AXY), NZD (ZXY), GBP (BXY), and CHF (SXY), covering a broad range of the forex market. Each RSI line is color-coded for easy differentiation and equipped with labels at the last bar for a clutter-free view.
Our indicator is designed with user-friendly customization features. You can easily adjust the length of the RSI and the time frame according to your trading strategy. It also handles gaps in the chart data with the barmerge.gaps_on option, ensuring accurate and consistent RSI calculations.
Whether you are a novice trader seeking to understand market dynamics better or an experienced trader wanting to diversify your technical analysis, the MCRSI offers a unique perspective of the forex market. This multi-currency approach can help identify potential trading opportunities that could be missed when analyzing currencies in isolation.
Harness the power of multi-currency RSI analysis with our MCRSI Indicator. It's time to step up your trading game!
Features:
Tracks 8 different currencies simultaneously
Color-coded RSI lines for easy identification
Customizable RSI length and time frame
Handles gaps in chart data
Last bar labels for a clutter-free view
Ideal for forex traders of all experience levels
How to Use:
Add the MCRSI to your TradingView chart.
Adjust the RSI length and time frame as needed.
Monitor the RSI lines and their intersections for potential trading signals.
Happy trading!
Osilatörler
Advanced Dynamic Threshold RSI [Elysian_Mind]Advanced Dynamic Threshold RSI Indicator
Overview
The Advanced Dynamic Threshold RSI Indicator is a powerful tool designed for traders seeking a unique approach to RSI-based signals. This indicator combines traditional RSI analysis with dynamic threshold calculation and optional Bollinger Bands to generate weighted buy and sell signals.
Features
Dynamic Thresholds: The indicator calculates dynamic thresholds based on market volatility, providing more adaptive signal generation.
Performance Analysis: Users can evaluate recent price performance to further refine signals. The script calculates the percentage change over a specified lookback period.
Bollinger Bands Integration: Optional integration of Bollinger Bands for additional confirmation and visualization of potential overbought or oversold conditions.
Customizable Settings: Traders can easily customize key parameters, including RSI length, SMA length, lookback bars, threshold multiplier, and Bollinger Bands parameters.
Weighted Signals: The script introduces a unique weighting mechanism for signals, reducing false positives and improving overall reliability.
Underlying Calculations and Methods
1. Dynamic Threshold Calculation:
The heart of the Advanced Dynamic Threshold RSI Indicator lies in its ability to dynamically calculate thresholds based on multiple timeframes. Let's delve into the technical details:
RSI Calculation:
For each specified timeframe (1-hour, 4-hour, 1-day, 1-week), the Relative Strength Index (RSI) is calculated using the standard 14-period formula.
SMA of RSI:
The Simple Moving Average (SMA) is applied to each RSI, resulting in the smoothing of RSI values. This smoothed RSI becomes the basis for dynamic threshold calculations.
Dynamic Adjustment:
The dynamically adjusted threshold for each timeframe is computed by adding a constant value (5 in this case) to the respective SMA of RSI. This dynamic adjustment ensures that the threshold reflects changing market conditions.
2. Weighted Signal System:
To enhance the precision of buy and sell signals, the script introduces a weighted signal system. Here's how it works technically:
Signal Weighting:
The script assigns weights to buy and sell signals based on the crossover and crossunder events between RSI and the dynamically adjusted thresholds. If a crossover event occurs, the weight is set to 2; otherwise, it remains at 1.
Signal Combination:
The weighted buy and sell signals from different timeframes are combined using logical operations. A buy signal is generated if the product of weights from all timeframes is equal to 2, indicating alignment across timeframe.
3. Experimental Enhancements:
The Advanced Dynamic Threshold RSI Indicator incorporates experimental features for educational exploration. While not intended as proven strategies, these features aim to offer users a glimpse into unconventional analysis. Some of these features include Performance Calculation, Volatility Calculation, Dynamic Threshold Calculation Using Volatility, Bollinger Bands Module, Weighted Signal System Incorporating New Features.
3.1 Performance Calculation:
The script calculates the percentage change in the price over a specified lookback period (variable lookbackBars). This provides a measure of recent performance.
pctChange(src, length) =>
change = src - src
pctChange = (change / src ) * 100
recentPerformance1H = pctChange(close, lookbackBars)
recentPerformance4H = pctChange(request.security(syminfo.tickerid, "240", close), lookbackBars)
recentPerformance1D = pctChange(request.security(syminfo.tickerid, "1D", close), lookbackBars)
3.2 Volatility Calculation:
The script computes the standard deviation of the closing price to measure volatility.
volatility1H = ta.stdev(close, 20)
volatility4H = ta.stdev(request.security(syminfo.tickerid, "240", close), 20)
volatility1D = ta.stdev(request.security(syminfo.tickerid, "1D", close), 20)
3.3 Dynamic Threshold Calculation Using Volatility:
The dynamic thresholds for RSI are calculated by adding a multiplier of volatility to 50.
dynamicThreshold1H = 50 + thresholdMultiplier * volatility1H
dynamicThreshold4H = 50 + thresholdMultiplier * volatility4H
dynamicThreshold1D = 50 + thresholdMultiplier * volatility1D
3.4 Bollinger Bands Module:
An additional module for Bollinger Bands is introduced, providing an option to enable or disable it.
// Additional Module: Bollinger Bands
bbLength = input(20, title="Bollinger Bands Length")
bbMultiplier = input(2.0, title="Bollinger Bands Multiplier")
upperBand = ta.sma(close, bbLength) + bbMultiplier * ta.stdev(close, bbLength)
lowerBand = ta.sma(close, bbLength) - bbMultiplier * ta.stdev(close, bbLength)
3.5 Weighted Signal System Incorporating New Features:
Buy and sell signals are generated based on the dynamic threshold, recent performance, and Bollinger Bands.
weightedBuySignal = rsi1H > dynamicThreshold1H and rsi4H > dynamicThreshold4H and rsi1D > dynamicThreshold1D and crossOver1H
weightedSellSignal = rsi1H < dynamicThreshold1H and rsi4H < dynamicThreshold4H and rsi1D < dynamicThreshold1D and crossUnder1H
These features collectively aim to provide users with a more comprehensive view of market dynamics by incorporating recent performance and volatility considerations into the RSI analysis. Users can experiment with these features to explore their impact on signal accuracy and overall indicator performance.
Indicator Placement for Enhanced Visibility
Overview
The design choice to position the "Advanced Dynamic Threshold RSI" indicator both on the main chart and beneath it has been carefully considered to address specific challenges related to visibility and scaling, providing users with an improved analytical experience.
Challenges Faced
1. Differing Scaling of RSI Results:
RSI values for different timeframes (1-hour, 4-hour, and 1-day) often exhibit different scales, especially in markets like gold.
Attempting to display these RSIs on the same chart can lead to visibility issues, as the scaling differences may cause certain RSI lines to appear compressed or nearly invisible.
2. Candlestick Visibility vs. RSI Scaling:
Balancing the visibility of candlestick patterns with that of RSI values posed a unique challenge.
A single pane for both candlesticks and RSIs may compromise the clarity of either, particularly when dealing with assets that exhibit distinct volatility patterns.
Design Solution
Placing the buy/sell signals above/below the candles helps to maintain a clear association between the signals and price movements.
By allocating RSIs beneath the main chart, users can better distinguish and analyze the RSI values without interference from candlestick scaling.
Doubling the scaling of the 1-hour RSI (displayed in blue) addresses visibility concerns and ensures that it remains discernible even when compared to the other two RSIs: 4-hour RSI (orange) and 1-day RSI (green).
Bollinger Bands Module is optional, but is turned on as default. When the module is turned on, the users can see the upper Bollinger Band (green) and lower Bollinger Band (red) on the main chart to gain more insight into price actions of the candles.
User Flexibility
This dual-placement approach offers users the flexibility to choose their preferred visualization:
The main chart provides a comprehensive view of buy/sell signals in relation to candlestick patterns.
The area beneath the chart accommodates a detailed examination of RSI values, each in its own timeframe, without compromising visibility.
The chosen design optimizes visibility and usability, addressing the unique challenges posed by differing RSI scales and ensuring users can make informed decisions based on both price action and RSI dynamics.
Usage
Installation
To ensure you receive updates and enhancements seamlessly, follow these steps:
Open the TradingView platform.
Navigate to the "Indicators" tab in the top menu.
Click on "Community Scripts" and search for "Advanced Dynamic Threshold RSI Indicator."
Select the indicator from the search results and click on it to add to your chart.
This ensures that any future updates to the indicator can be easily applied, keeping you up-to-date with the latest features and improvements.
Review Code
Open TradingView and navigate to the Pine Editor.
Copy the provided script.
Paste the script into the Pine Editor.
Click "Add to Chart."
Configuration
The indicator offers several customizable settings:
RSI Length: Defines the length of the RSI calculation.
SMA Length: Sets the length of the SMA applied to the RSI.
Lookback Bars: Determines the number of bars used for recent performance analysis.
Threshold Multiplier: Adjusts the multiplier for dynamic threshold calculation.
Enable Bollinger Bands: Allows users to enable or disable Bollinger Bands integration.
Interpreting Signals
Buy Signal: Generated when RSI values are above dynamic thresholds and a crossover occurs.
Sell Signal: Generated when RSI values are below dynamic thresholds and a crossunder occurs.
Additional Information
The indicator plots scaled RSI lines for 1-hour, 4-hour, and 1-day timeframes.
Users can experiment with additional modules, such as machine-learning simulation, dynamic real-life improvements, or experimental signal filtering, depending on personal preferences.
Conclusion
The Advanced Dynamic Threshold RSI Indicator provides traders with a sophisticated tool for RSI-based analysis, offering a unique combination of dynamic thresholds, performance analysis, and optional Bollinger Bands integration. Traders can customize settings and experiment with additional modules to tailor the indicator to their trading strategy.
Disclaimer: Use of the Advanced Dynamic Threshold RSI Indicator
The Advanced Dynamic Threshold RSI Indicator is provided for educational and experimental purposes only. The indicator is not intended to be used as financial or investment advice. Trading and investing in financial markets involve risk, and past performance is not indicative of future results.
The creator of this indicator is not a financial advisor, and the use of this indicator does not guarantee profitability or specific trading outcomes. Users are encouraged to conduct their own research and analysis and, if necessary, consult with a qualified financial professional before making any investment decisions.
It is important to recognize that all trading involves risk, and users should only trade with capital that they can afford to lose. The Advanced Dynamic Threshold RSI Indicator is an experimental tool that may not be suitable for all individuals, and its effectiveness may vary under different market conditions.
By using this indicator, you acknowledge that you are doing so at your own risk and discretion. The creator of this indicator shall not be held responsible for any financial losses or damages incurred as a result of using the indicator.
Kind regards,
Ely
maRSI - Moving Averages for RSI with Outer BandsWhat distinguishes this indicator?
This indicator can help to identify a trend at an early stage or as a confirmation - based on a RSI and its Moving Average. It should invite you to experiment and thereby be adapted to your own way of trading.
The type of moving average could be defined: "SMA", "EMA", "DEMA", "TEMA", "SMMA", "LSMA", "HMA", "WMA"
A suggestion for interpretation of “maRSI”:
A cross over the middle line (Signal Line) can be interpreted as a trend change. Is often used for more aggressive trading styles.
Everything above the middle line (Signal Line) could be interpreted as Uptrend. Vice versa.
Depending on how the outer bands were configured, these could be interpreted as earlier signals of a trend change. Is often used for slightly less aggressive trading styles.
Depending on the selected moving average, more or less conservative signals can be output.
The plot "RSI" shows the RSI based on the settings you have made.
The plot "Signal Line" is colored and shows whether the Signal Line is up- or downtrending.
The plot "Direction: RSI to Signal Line" provides clear information about the direction in which the "Signal Line" intersects the RSI and where the RSI is to the "Signal Line". "1" means RSI above "Signal Line" and "-1" means RSI below "Signal Line"
The plot "Direction: Signal Line” provides clear information about the direction of the Signal Line. "1" means uptrending while "-1" means downtrending.
What do I need to consider?
By definition this indicator can be classified as lagging - since it based on historical prices/values. It may be advisable to add further indicators and an analysis of the market structure in order to confirm the signals issued by the indicator. Please note that when you make adjustments to any strategy, you always carry out particularly detailed tests.
Details concerning the crosses of maRSI with its Signal Line and Outer Bands:
#revision: lv07
Easy RSI Trend - The trend is your friend till the endThis indicator detects the trend for you and keeps you out of choppy markets. It does not give you a signal, rather it tells you for what kind of signals to look for on the top right of the screen: "Only Longs" or "Only Shorts"
If there is no trend or if a trend is overextended (overbought, oversold) it tells you: "No trade allowed"
The indicator does this by scanning the 4h and daily RSI. Both are displayed in a small table in the bottom right of the screen. The upper cell is the 4h RSI and the other the daily RSI value.
AGAIN: This indicator does not give you a signal. It only tells you the direction in which you should trade. It should be used with an indicator or a strategy that gives you a clear signal.
Index Top Holdings Advance DeclineThis indicator measures advance vs decline for the top 10 holdings of either SPX or NDX, or both together.
There's overlap within the top holdings for the two major indexes so by default SPX is only shown.
Adjustments to top holdings can be done at any time should they be updated before I adjust the script, also the threshold of when advancement or decline should be considered strong is defaulted to six holdings but adjust to preference.
The idea came out of a discord conversation and the results are compelling, and it's usage should be similar to the market internal ADD, which measures amount of stocks in broad market over or under previous session range.
If this indicator receives enough traction I'll look into creating a volume (VOLD), price (TICK) and perhaps some other versions - perhaps even one that combines it all together like my MIT indicator for market internals.
VWAP Oscillator (Normalised)Thanks:
Thanks to upslidedown for his VWAP Oscillator that served as the inspiration for this normalised version.
Core Aspects:
The script calculates the VWAP by considering both volume and price data, offering a comprehensive view of market activity.
Uses an adaptive normalization function to balance the data, ensuring that the VWAP reflects current market conditions accurately.
The oscillator includes customizable settings such as VWAP source, lookback period, and buffer percentage.
Provides a clear visual representation of market trends.
Usage Summary:
Detect divergences between price and oscillator for potential trend reversals.
Assess market momentum with oscillator’s position relative to the zero line.
Identify overbought and oversold conditions to anticipate market corrections.
Use volume-confirmed signals for enhanced reliability in trend strength assessments.
MACD-all in one_Pro[vn]👉 Hello traders.
Introducing the "MACD-All-in-One" indicator including functions:
• Automatically scan MACD-Histogram divergence
• Automatically scan MACD-Histogram divergence-missing right shoulder
• Automatically scan the Engulfing candlestick pattern when the MACD line crosses the Signal line
• Automatically create warnings when there are signals of Regular divergence, missing right shoulder divergence, Engulfing candlestick pattern
Explain:
💥1. Regular divergence
1.1 Bullish divergence
+ The price creates the next bottom lower than the previous bottom
+ The histogram of the next bottom is higher than the previous bottom and is located below the 0 axis (between the two histogram bottoms there must be a histogram located on the 0 axis for clear distinction)(Hình 1)👇👇
1.2 Bearish divergence
+ The price creates a higher peak than the previous peak
+ The histogram of the next bottom is lower than the previous bottom and is above the 0 axis (between the two histogram peaks there must be a histogram below the 0 axis for clear distinction)(Hình 2)👇👇
💥2. Divergence lacking right shoulder
2.1 Bullish divergence missing the right shoulder
+ The price creates the next bottom lower than the previous bottom
+ The histogram of the posterior bottom does not form and the histogram is still above the zero line (only the histogram of the previous bottom is below the zero line)
+ The meaning is that when the price creates a lower bottom but the buying force is already very strong, the histogram of the next bottom does not form and the price will increase(hình 3&4)👇👇
2.2 Bearish divergence missing the right shoulder
+ The price creates a higher peak than the previous peak
+ The histogram of the next peak does not form and the histogram is still below the zero line (only the histogram of the previous peak is on the zero line)
+ The meaning is that when the price creates a higher peak but the buying force has weakened, the histogram of the next bottom does not form and the price will go down.(hình 5 & 6)👇👇
💥3. Engulfing candlestick pattern
When the MACD and Signal lines intersect and there appears a pair of engulfing (completely) candlesticks, that candlestick will be marked as 'E⌃' in green (bullish engulfing) or 'E⌄' in red (Bearish engulfing)(hình 7 & 8)👇👇
💥4. Automatic alerts include 5 levels: Bull, Bear, Bullish Engulfing, Bearish Engulfing, bullish divergence missing the shoulder, bearish divergence missing the shoulder
//-------------------------Extra feature: Impulse System
This indicator also includes the “Impulse System”. The Impulse System is based on two indicators, a 13-day exponential moving average and the MACD-Histogram, and identifies inflection points where a trend speeds up or slows down. The moving average identifies the trend, while the MACD-Histogram measures momentum. This unique indicator combination is color coded into the price bars or macd histogram bars for easy reference.
Calculation:
Green Price Bar: (13-period EMA > previous 13-period EMA) and
(MACD-Histogram > previous period's MACD-Histogram)
Red Price Bar: (13-period EMA < previous 13-period EMA) and
(MACD-Histogram < previous period's MACD-Histogram)
Histogram bars are colored blue when conditions for a Red Histogram Bar or Green Histogram Bar are not met. The MACD-Histogram is based on MACD(12,26,9).
The Impulse System works more like a censorship system. Green histogram bars show that the bulls are in control of both trend and momentum as both the 13-day EMA and MACD-Histogram are rising (you don't have permission to sell). A red histogram bar indicates that the bears have taken control because the 13-day EMA and MACD Histogram are falling (you don't have permission to buy). A blue histogram bar indicates mixed technical signals, with neither buying nor selling pressure predominating (either both buying or selling are permitted).
-------------------------------//
💥5. Additional:
+Shows a pair of EMA12 vs EMA24.
+Shows Keltner Channels (using ATR) are volatility-based envelopes set above and below an exponential moving average.
//-------------------------------------------------------------------------------------------------------------//
✍️Conclude:
From this indicator there are 3 ways to trade:
• Method 1: Enter an order following the automatic Bull or Bear signal when the indicator appears
• Method 2: Enter an order following the automatic signal of the green vertical line (Long) or the red vertical line (Short) when the indicator appears
• Method 3: Enter orders according to the pair of engulfing candles 'E⌃' or 'E⌄' (because this is a combination of the method of engulfing candles and 2 MA lines intersecting each other)
• From this indicator, I created a "bot" that scans for "right shoulder missing divergence" signals for 40 trading pairs at the same time in real time. (hình 9)👇👇👇
//---------------------------------------------------------------------------------------------------------------
👉 Xin chào trader Việt Nam.
Giới thiệu chỉ báo "MACD-Tất cả trong một " bao gồm các chức năng:
• Tự động quét phân kì MACD-Histogram
• Tự động quét phân kì MACD-Histogram-thiếu vai phải
• Tự động quét mô hình nến nhấn chìm(Engulfing) khi đường MACD cắt đường Signal
• Tự động tạo cảnh báo khi có tín hiệu phân kì thường(Regular) , phân kì thiếu vai phải, mô hình nến Engulfing
Diễn giải:
💥1. Phân kì thường
1.1 Phân kì tăng
+ Giá tạo đáy sau thấp hơn đáy trước
+ Histogram của đáy sau cao hơn đáy trước và nằm bên dưới trục số 0(giữa hai đáy histogram phải có histogram nằm trên trục số 0 để phân biệt rõ ràng)(Hình 1 bên trên)☝️☝️
1.2 Phân kì giảm
+ Giá tạo đỉnh sau cao hơn đỉnh trước
+ Histogram của đáy sau thấp hơn đáy trước và nằm trên trên trục số 0(giữa hai đỉnh histogram phải có histogram nằm dưới trục số 0 để phân biệt rõ ràng)(Hình 2 bên trên)☝️☝️
💥2. Phân kì thiếu vai phải
2.1 Phân kì tăng thiếu vai phải
+ Giá tạo đáy sau thấp hơn đáy trước
+ Histogram của đáy sau không hình thành và histogram vẫn nằm bên trên trục số 0(chỉ có histogram của đáy trước dưới trục số 0)
+ Ý nghĩa rằng khi giá tạo đáy sau thấp hơn nhưng lực mua đã rất mạnh làm cho histogram đáy sau không hình thành và giá sẽ tăng lên(Hình 3 vs 4 bên trên)☝️☝️
2.2 Phân kì giảm thiếu vai phải
+ Giá tạo đỉnh sau cao hơn đỉnh trước
+ Histogram của đỉnh sau không hình thành và histogram vẫn nằm bên dưới trục số 0(chỉ có histogram của đỉnh trước trên trục số 0)
+ Ý nghĩa rằng khi giá tạo đỉnh sau cao hơn nhưng lực mua đã yếu dần làm cho histogram đáy sau không hình thành và giá sẽ đi xuống(Hình 5 vs 6 bên trên)☝️☝️
💥3.mô hình nến nhấn chìm
Khi hai đường MACD và Signal cắt nhau mà tại đó xuất hiện cặp nến nhấn chìm (hoàn toàn) thì trên thanh nến đó sẽ đánh dấu là 'E⌃' màu xanh (nhấn chìm tăng) hay 'E⌄' màu đỏ(nhấn chìm giảm)(Hình 7 vs 8 bên trên)☝️☝️
💥4. Cảnh báo tự động bao gồm có 5 mức : Bull, Bear, Bullish Engulfing, Bearish Engulfing, phân kì tăng thiếu vai, phân kì giảm thiếu vai
//--------------------Tính năng bổ sung: Hệ thống Impulse(xung)
Chỉ báo này cũng bao gồm “Hệ thống xung”. Hệ thống Impulse dựa trên hai chỉ báo, đường trung bình động hàm mũ EMA13 và Biểu đồ MACD, đồng thời xác định các điểm uốn trong đó xu hướng tăng tốc hoặc chậm lại. Đường trung bình động xác định xu hướng, trong khi biểu đồ MACD đo động lượng. Sự kết hợp chỉ báo độc đáo này được sơn thanh biểu đồ macd-histogram để dễ tham khảo.
Phép tính:
Thanh giá xanh lá : (EMA13 kỳ > EMA 13 kỳ trước đó) và (histogram sau > histogram trước)
Thanh giá màu đỏ: (EMA13 kỳ < EMA 13 kỳ trước đó) và (histogram sau < histogram trước)
Thanh biểu đồ có màu xanh lam khi các điều kiện cho histogram màu đỏ hoặc histogram màu xanh lá không được đáp ứng. Biểu đồ MACD dựa trên MACD(12,26,9).
Lưu ý: Hệ thống Impulse hoạt động giống một hệ thống kiểm duyệt hơn. Các thanh biểu đồ màu xanh lá cho thấy phe bò đang kiểm soát cả xu hướng và động lượng vì cả EMA13 và MACD-Histogram đều tăng (bạn không được phép bán). Thanh biểu đồ màu đỏ cho biết phe gấu đã nắm quyền kiểm soát vì biểu đồ EMA13 và MACD histogram đang giảm (bạn không được phép mua). Thanh biểu đồ màu xanh lam biểu thị các tín hiệu kỹ thuật hỗn hợp, không có áp lực mua và bán chiếm ưu thế (cho phép cả mua hoặc bán).
-------------------------//
💥5. Bổ sung:
+ Hiển thị một cặp EMA12 vs EMA24.
+ Hiển thị Kênh Keltner (sử dụng ATR) là các đường bao dựa trên mức độ biến động được đặt ở trên và dưới đường trung bình động hàm mũ.
//----------------------------------------------------------------------------------------------------------------//
✍️Kết luận:
Từ chỉ báo này có 3 cách giao dịch:
• Cách 1: Vào lệnh theo tín hiệu tự động Bull hoặc Bear khi chỉ báo hiện ra
• Cách 2: Vào lệnh theo tín hiệu tự động đường dọc xanh(Long) hoặc đường dọc đỏ(Short) khi chỉ báo hiện ra
• Cách 3: Vào lệnh theo cặp nến nhấn chìm 'E⌃' hay 'E⌄'(vì đây là tổng hợp từ phương pháp của nến nhấn chìm và 2 đường MA cắt nhau)
• Từ chỉ báo này tôi có lập nên "con bot" quét tín hiệu "phân kì thiếu vai phải " cùng lúc 40 cặp giao dịch theo thời gian thực. (Hình 9 bên trên)☝️☝️☝️
OneThingToRuleThemAll [v1.4]This script was created because I wanted to be able to display a contextual chart of commonly used indicators for scalping and swing traders, with the ability to control the visual representation on the charts as their cross-overs, cross-unders, or changes of state happen in real time. Additionally, I wanted the ability to control how or when they are displayed. While looking through other community projects, I found they lacked the ability to full customize the output controls and values used for these indicators.
The script leverages standard RSI/MACD/VWAP/MVWAP/EMA calculations to help a trader visually make more informed decisions on entering or exiting a trade, depending on their understanding on what the indicators represent. Paired with a table directly on the chart, it allows a trader to quickly reference values to make more informed decisions without having to look away from the price action or look through multiple indicator outputs.
The main functionality of the indicator is controlled within the settings directly on the chart. There a user can enable the visual representations, or disable, and configure how they are displayed on the charts by altering their values or style types.
Users have the ability to enable/disable visual representations of:
The indicator chart
RSI Cross-over and RSI Reversals
MACD Uptrends and Downtrends
VWAP Cross-overs and Cross-unders
VWAP Line
MVWAP Cross-overs and Cross-unders
MVWAP Line
EMA Cross-overs and Cross-unders
EMA Line
Some traders like to use these visual indications as thresholds to enter or exit trades. Its best to find out which ones work the best with the security you are trying to trade. Personally, I use the table as a reference in conjunction with the RSI chart indicators to help me decide a logical trailing stop if I am scalping. Some users might like the track EMA200 crossovers, and have visual representations on the chart for when that happens. However, users may use the other indicators in other methods, and this script provides the ability to be able to configure those both visually and by value.
The pine script code is open source and itself is fairly straightforward, it is mostly written to provide the ultimate level of control the the user of the various indicators. Please reach out to me directly if you would like a further understanding of the code and an explanation on anything that may be unclear.
Enjoy :)
-dead1.
RSI MFI MultiTimeframe Oversold/OverboughtHello Traders,
This indicator is designed to easily visualize the overbought/oversold states of RSI and MFI across multiple timeframes.
The indicator is very straightforward.
The deeper the red, the closer it is to 0, and the deeper the green, the closer it is to 100. The intermediate values are rendered in a transparent gray to focus on the key regions.
However, I understand that traders may have an interest in knowing the most recent state of the oscillator, whether it was overbought or oversold.
For this reason, I have included the 'Gradient Color' option in the color settings.
By turning off this option, you can easily see at a glance which region the oscillator was in most recently.
(Gradient Color Option Off)
In addition, I know that many traders are interested in the actual RSI/MFI values across multiple timeframes.
Thus, I have displayed the RSI/MFI values for each timeframe on the far right.
Furthermore, although the name of this indicator is RSI MFI MultiTimeframe Oversold/Overbought, I have also included the Stochastic RSI as an option, as I find it personally useful.
Feel free to use it if you find it helpful.
Unbound RSIUnbound RSI
Description
The Unbound RSI or de-oscillated RSI indicator is a novel technical analysis indicator that combines the concepts of the Relative Strength Index (RSI) and moving averages, applied directly over the price chart. This indicator is unique in its approach by transforming the oscillatory nature of the RSI into a format that aligns with the price action, thereby offering a distinctive view of market momentum and trends.
Key Features
Multi-Length RSI Analysis: Incorporates three different lengths of RSI (short, medium, and long), providing insights into the momentum and trend strength at various timeframes.
Deoscillation of RSI: The RSI for each length is 'deoscillated' by adjusting its scale to align with the actual price movements. This is achieved by shifting and scaling the RSI values, effectively merging them with the price line.
Average True Range (ATR) Scaling: The deoscillation process includes scaling by the Average True Range (ATR), making the indicator responsive to the asset’s volatility.
Optional Smoothing: Provides an option to apply a simple moving average (SMA) smoothing to each deoscillated RSI line, reducing noise and highlighting more significant trends.
Dynamic Moving Average (MA) Baseline: Features a moving average calculated from the medium length (default value) de-oscillated RSI, serving as a dynamic baseline to identify overarching trends.
How It’s Different
Unlike standard RSI indicators that oscillate in a fixed range, this indicator transforms the RSI to move in tandem with the price, offering a unique perspective on momentum and trend changes. The use of multiple timeframes for RSI and the inclusion of a dynamic MA baseline provide a multifaceted view of market conditions.
Potential Usage
Trend Identification: The position of the price in relation to the different deoscillated RSI lines and the MA baseline can indicate the prevailing market trend.
Momentum Shifts: Crossovers of the price with the deoscillated RSI lines or the MA baseline can signal potential shifts in momentum, offering entry or exit points.
Volatility Awareness: The ATR-based scaling of the deoscillated RSI lines means the indicator adjusts to changes in volatility, potentially offering more reliable signals in different market conditions.
Comparative Analysis: By comparing the short, medium, and long deoscillated RSI lines, traders can gauge the strength of trends and the convergence or divergence of momentum across timeframes.
Best Practices
Backtesting: Given its novel nature, it’s crucial to backtest the indicator across different assets and market conditions.
Complementary Tools: Combine with other technical analysis tools (like support/resistance levels, other oscillators, volume analysis) for more robust trading signals.
Risk Management: Always use sound risk management strategies, as no single indicator provides foolproof signals.
TSI Market Timer + Volatility MeterThis is the TSI Market Timer. It is years in the making and it is comprised of four indicators in one. The stock (or source) is run through an indicator called the True Strength Indicator with settings(5,15) , then the TSI is run on both the Index(SPY) by default and what I call a Trigger line which is basically the TSI applied to the DXY (US Dollar Index).
Midline Volatility Indicator:
Lastly, we have a volatility indicator on the midline. The colors of the midline indicate levels of volatility. For the lowest volatility in the last 100 days, the dot turns dark blue. For the lowest volatility in 30 days, the dot turns aqua. For regular volatility, it remains orange. And last, for higher volatility of the last 100 days, it turns red. These are more or less arbitrary but they do come in handy.
Settings for Green/Red Shading:
Next on the indicator are the settings. You can toggle a color change between the stock/source and the index(spy). If the stock/source is greater than the index, it will color the area in between a green and if it is below the index, it will be red.
There is also a toggle for the stock/source and the trigger/DXY. This will also show green when the stock is above the trigger and red if it is below the trigger.
By turning on both of these, you get light green and dark green areas as well as red and darker red areas. The lighter green represent when the stock is above both the index and the trigger and conversely for the red areas.
Settings for vertical line crossings:
When the stock crosses the trigger/dxy line, it shows a green vertical line signal. When the stock crosses below the trigger/dxy, a red vertical line is shown.
You can turn these off by toggling them in the settings.
Stacked Condition:
Lastly, we have a "stacked condition" which shows up as a white triangle at the bottom when the condition of the stock being above the index and the trigger below the zero line.
New Highs:
If you see the stock line turn lime green, this indicates a new high was reached for the last 255 days/periods. This is like a new 52 week high signal.
Note:
This indicator is made mostly for the stock market. It may work ok during the week for crypto but using the trigger/dxy and index lines on the weekends doesn't work too well as they will be flat.
Also note that this indicator is not a recommendation to buy or sell any stock/instrument. It is only a study of market conditions. Any analysis should be followed up with volume analysis or other confirming indicators.
Advanced Divergence OscillatorIntroduction to ADO
The Advanced Divergence Oscillator (ADO) is a modern tool crafted for traders in various markets like stocks, forex, or cryptocurrencies. Imagine it as a smart gadget that helps you understand the ebb and flow of market prices. Unlike standard tools, ADO provides a more nuanced view, enabling you to grasp subtle changes in market trends.
Functionality of ADO
ADO operates by observing and comparing market price movements over different timeframes. Picture a racetrack where cars are moving at various speeds. Some are racing ahead, while others are gradually picking up pace. ADO keeps track of these varying 'speeds' in market prices.
By analyzing these movements, ADO generates a smooth, flowing line – the oscillator. This line moves in a wave-like pattern, offering hints about the market's momentum and possible future trends. When the line moves up, it suggests increasing prices, and when it moves down, it hints at falling prices.
How to Use ADO
Setup: You can easily integrate ADO into your trading platform, adjusting settings like length and color to suit your preference.
Reading the Oscillator: Watch for the oscillator's movement. Rising and falling patterns can indicate potential buying or selling opportunities.
Identifying Divergences: ADO excels in spotting divergences – situations where market prices and the oscillator don't align. For instance, if prices are climbing but the oscillator is falling, it might signal a potential price drop ahead.
Brief History of the Ultimate Oscillator
The concept of oscillators in trading isn’t new. The Ultimate Oscillator, developed by Larry Williams in the 1970s, is a foundational tool in this field. Williams' innovation was to combine short, intermediate, and long-term market trends into a single oscillator. This approach offered a more comprehensive market view, helping traders make informed decisions.
The ADO is a step further in this evolution. It takes the core principles of the Ultimate Oscillator and enhances them with proper smoothing and divergence detection methods. This evolution represents the continuous effort in the trading community to refine tools for better market analysis and decision-making.
Fisher Transform RevisitedFisher Transform developped by Ehlers is used mostly to detect peaks and troughs, which it does with little lag, but there are many false signals. Looking at its formula and construction, we can revisit it for the purpose of detecting trends and flat market.
How do we want to do that? There are 3 different actions:
Increase the default value from usual 9 or 10 to 30
Show the indicator as seen from upper time frame with synthetic rolling candles
Change the weights in first formula in order to saturate the input signal, push the trend data to the limits, so therefore leaving a good view when market is flat
As can be seen from the chart above, the revisited Fisher is above 2 for uptrend markets, below -2 for downtrending markets and in-between when the market is flat.
Notes
Weights for Fisher transform formula can be changed as parameters. Recommended valeus are 0.6 and 0.6 to saturate signal. You may come back to original formula by setting 0.33 and 0.66.
Parameter n allows view from upper time, a multiple of current time frame. n = 1 for current chart, n = 5 for 5 minutes view on the 1 min chart
Usage
Of course, it should be not be used in standalone mode. Indicator is for trend traders who can stay away when market is flat. Trend start when indicator goes above 2 but like all trade indicators, it will be late; it is therefore a good idea to change n back to 1 to get a timely entry, to be confirmed of course with other elements of technical analysis.
MACD-Histogram Divergence missing right shoulder_Pro[vn]👉Hello Traders!
Many traders have asked me about MACD's Histogram divergence, how to use it effectively, because the signal occurs a lot, I suddenly remembered the famous book by Dr. Alexander Elder's "Two Roads Diveged" has an introduction and definition of "MACD Histogram divergence lacking the right shoulder". It is an extremely strong signal of reversal divergence and it is difficult to determine, mainly experienced traders discover it.
- From that book, I wrote the code for the indicator "MACD Histogram divergence lacking the right shoulder" so that it automatically scans over 40 trading codes and when a signal appears I can identify it.
- For the MACD-Histogram signal to have bullish divergence (Regular) occur when:
+ The price creates the next bottom lower than the previous bottom
+ The histogram of the next bottom is higher than the previous bottom and is below the 0 axis (between the two histogram bottoms there must be a histogram on the 0 axis for clear distinction)👇👇👇(Hình 1)
- For MACD-Histogram signal to have bearish divergence (Regular) occur when:
+ The price creates a higher peak than the previous peak
+ The histogram of the next bottom is lower than the previous bottom and is on the 0 axis (between the two histogram peaks there must be a histogram below the 0 axis for clear distinction)👇👇👇(Hình 2)
💥 So to go from MACD-Histogram to regularization to right shoulder missing increase divergence is when:
+ The price of creating the following bottom is lower than the previous bottom
+ The histogram of the back bottom does not form and the histogram remains on the zero axis (only the histogram of the previous bottom is below the zero axis)
+ It means that when the price creates a lower bottom but the buying force is very strong, the posterior bottom histogram does not form and the price will increase 👇👇👇(Hình 3)
💥 So to go from MACD-Histogram to regularized divergence to right shoulder deficiency divergence is when:
+ The price creates the following peak higher than the previous peak
+ The histogram of the posterior vertex does not form and the histogram remains below the zero axis (only the histogram of the anterior vertex is above the zero axis)
+ It means that when the price creates a higher peak but the buying force has weakened, the posterior bottom histogram does not form and the price will go down 👇👇👇(Hình 4)
//-------------------------Extra feature: Impulse System
This indicator also includes the “Impulse System”. The Impulse System is based on two indicators, a 13-day exponential moving average and the MACD-Histogram, and identifies inflection points where a trend speeds up or slows down. The moving average identifies the trend, while the MACD-Histogram measures momentum. This unique indicator combination is color coded into the price bars or macd histogram bars for easy reference.
Calculation:
Green Price Bar: (13-period EMA > previous 13-period EMA) and
(MACD-Histogram > previous period's MACD-Histogram)
Red Price Bar: (13-period EMA < previous 13-period EMA) and
(MACD-Histogram < previous period's MACD-Histogram)
Histogram bars are colored blue when conditions for a Red Histogram Bar or Green Histogram Bar are not met. The MACD-Histogram is based on MACD(12,26,9).
The Impulse System works more like a censorship system. Green histogram bars show that the bulls are in control of both trend and momentum as both the 13-day EMA and MACD-Histogram are rising (you don't have permission to sell). A red histogram bar indicates that the bears have taken control because the 13-day EMA and MACD Histogram are falling (you don't have permission to buy). A blue histogram bar indicates mixed technical signals, with neither buying nor selling pressure predominating (either both buying or selling are permitted).
-------------------------------//
- When on the MACD indicator, the Histogram bars of the current price are the color, then the corresponding cell |0| shows that color, because I define |0| as the current candle.
|1| is the candle preceding the current candle |0|
|2| is the candle immediately preceding candle |1|
|3| is the candle immediately preceding candle |2|
from cells |3| |2| |1| |0| so that traders know that the cell colors green, blue, and red correspond to the colors of the histogram bar and when there is a signal to enter a Long order. '🅻', Short '🆂' will display on those cells.
- When the Bot identifies a divergence lacking the right shoulder, the "Result" cell will be displayed corresponding to "Long" - bullish divergence or "Short" - bearish divergence.👇👇👇(Hình 5)
- When the trader hovers over the "Long" or "Short" cell, a tooltip will be displayed indicating the order entry time, order entry price, stoploss point(Stl), stoploss percentage(%Stl), current price (C.price), previous peak and low Histogram counts (Hist +, Hist -) and the number of Histogram bars when entering the order. From there, traders can filter out the best signals to enter orders.👇👇👇(Hình 6)
- When the entry point is in the same trend as the price with a given profit percentage, it will display a profit, and when the above two MACD and Signal lines intersect, it will notify the Trader to take profit '✅', otherwise when entering Orders that go against the price trend will be reported to exit the order early '❌' 👇👇👇(Hình 7)
- When the MACD and Signal lines intersect and there appears a pair of engulfing candles (completely), the box will be marked as 'E⌃' (bullish engulfing) or 'E⌄' (bearish engulfing) plus add % of the engulfing candle body 👇👇👇 (Hình 8)
- There are 6 smart warning functions to find the right target including: 'Long', 'Short', 'Long-Short', 'Take Profit', 'Stoploss', 'All' . Where 'All' includes all 5 preceding warnings
--------------------------------------------------------------------------------------------------------------
✍️ Conclude:
From this indicator there are 2 ways to trade:
+ Method 1: Enter an order following the automatic Long or Short signal when the indicator appears
+ Method 2: Enter orders according to the pair of engulfing candles 'E⌃' or 'E⌄' (because this is a combination of the method of engulfing candles and 2 MA lines intersecting each other)
--------------------------------------------------------------------------------------------------------
Vietnamese
👉 Xin chào các Trader Việt Nam
Rất nhiều nhà giao dịch có hỏi tôi về phân kì Histogram của MACD làm sao để sử dụng hiệu quả, vì tín hiệu xảy ra rất nhiều, tôi chợt nhớ đến cuốn sách nổi tiếng của tiến sĩ Dr. Alexander Elder là " Two Roads Diveged " có giới thiệu và cách xác định về "phân kì MACD Histogram thiếu vai phải". Nó là tín hiệu cực mạnh về phân kì đảo chiều và rất khó để xác định, chủ yếu trader có kinh nghiệm mới phát hiện ra nó.
- Từ sách đó tôi có viết codes về chỉ báo "phân kì MACD Histogram thiếu vai phải" để nó tự động quét trên 40 mã giao dịch và khi có tín hiệu xuất hiện tôi có thể xác định được nó.
- Để tín hiệu MACD-Histogram phân kì tăng (Regular) xảy ra khi:
+ Giá tạo đáy sau thấp hơn đáy trước
+ Histogram của đáy sau cao hơn đáy trước và nằm dưới trục số 0(giữa hai đáy histogram phải có histogram nằm trên trục số 0 để phân biệt rõ ràng) (Hình 1 bên trên)☝️☝️☝️
- Để tín hiệu MACD-Histogram phân kì giảm (Regular) xảy ra khi:
+ Giá tạo đỉnh sau cao hơn đỉnh trước
+ Histogram của đáy sau thấp hơn đáy trước và nằm trên trục số 0(giữa hai đỉnh histogram phải có histogram nằm dưới trục số 0 để phân biệt rõ ràng) (Hình 2 bên trên)☝️☝️☝️
💥 Vậy để từ MACD-Histogram phân kì tăng (pk thường) trở thành phân kì tăng thiếu vai phải là khi :
+ Giá tạo đáy sau thấp hơn đáy trước
+ Histogram của đáy sau không hình thành và histogram vẫn nằm trên trục số 0(chỉ có histogram của đáy trước dưới trục số 0)
+ Ý nghĩa rằng khi giá tạo đáy sau thấp hơn nhưng lực mua đã rất mạnh làm cho histogram đáy sau không hình thành và giá sẽ tăng lên (Hình 3 bên trên) ☝️☝️☝️
💥 Vậy để từ MACD-Histogram phân kì giảm (regular) trở thành phân kì giảm thiếu vai phải là khi :
+ Giá tạo đỉnh sau cao hơn đỉnh trước
+ Histogram của đỉnh sau không hình thành và histogram vẫn nằm dưới trục số 0(chỉ có histogram của đỉnh trước trên trục số 0)
+ Ý nghĩa rằng khi giá tạo đỉnh sau cao hơn nhưng lực mua đã yếu dần làm cho histogram đáy sau không hình thành và giá sẽ đi xuống (Hình 4 bên trên) ☝️☝️☝️
//--------------------Tính năng bổ sung: Hệ thống Impulse(xung)
Chỉ báo này cũng bao gồm “Hệ thống xung”. Hệ thống Impulse dựa trên hai chỉ báo, đường trung bình động hàm mũ EMA13 và Biểu đồ MACD, đồng thời xác định các điểm uốn trong đó xu hướng tăng tốc hoặc chậm lại. Đường trung bình động xác định xu hướng, trong khi biểu đồ MACD đo động lượng. Sự kết hợp chỉ báo độc đáo này được sơn thanh biểu đồ macd-histogram để dễ tham khảo.
Phép tính:
Thanh giá xanh lá : (EMA13 kỳ > EMA 13 kỳ trước đó) và (histogram sau > histogram trước)
Thanh giá màu đỏ: (EMA13 kỳ < EMA 13 kỳ trước đó) và (histogram sau < histogram trước)
Thanh biểu đồ có màu xanh lam khi các điều kiện cho histogram màu đỏ hoặc histogram màu xanh lá không được đáp ứng. Biểu đồ MACD dựa trên MACD(12,26,9).
Lưu ý: Hệ thống Impulse hoạt động giống một hệ thống kiểm duyệt hơn. Các thanh biểu đồ màu xanh lá cho thấy phe bò đang kiểm soát cả xu hướng và động lượng vì cả EMA13 và MACD-Histogram đều tăng (bạn không được phép bán). Thanh biểu đồ màu đỏ cho biết phe gấu đã nắm quyền kiểm soát vì biểu đồ EMA13 và MACD histogram đang giảm (bạn không được phép mua). Thanh biểu đồ màu xanh lam biểu thị các tín hiệu kỹ thuật hỗn hợp, không có áp lực mua và bán chiếm ưu thế (cho phép cả mua hoặc bán).
-------------------------//
- Khi trên chỉ báo MACD những thanh Histogram của giá hiện tại là màu gì thì tại ô(cell) |0| tương ứng thể hiện màu đó, bởi vì tôi định nghĩa |0| là cây nến hiên tại.
|1| là nến đứng trước liền kề nến hiện tại |0|
|2| là nến đứng trước liền kề nến |1|
|3| là nến đứng trước liền kề nến |2|
từ những ô |3| |2| |1| |0| để trader biết rằng màu ô(cell) xanh lá , xanh lam, đỏ tương ứng với những màu của thanh histogram và khi có tín hiệu vào lệnh Long '🅻', Short '🆂' sẽ hiển thị trên những ô đó.
- Khi Bot xác định được phân kì thiếu vai phải thì tại ô(cell) "Result" sẽ hiển thị tương ứng với "Long"- phân kì tăng giá hoặc "Short"- phân kì giảm giá (Hình 5 bên trên) ☝️☝️☝️
- Khi trader di chuột vào tại ô(cell) "Long", hoặc "Short" thì tại đó hiển thị tooltip cho biết thời gian vào lệnh, giá vào lệnh , điểm stoploss(Stl), phần trăm stoploss(%Stl),giá hiện tại(C.price), số đếm Histogram đỉnh đáy trước(Hist +, Hist -) và số thanh Histogram khi vào lệnh.Từ đó trader có thể lọc ra được những tín hiệu đẹp nhất để vào lệnh (Hình 6 bên trên) ☝️☝️☝️
- Khi điểm vào lệnh cùng xu hướng với giá mà đã cho % lời thì nó sẽ hiển thị được lợi nhuận, và đến khi hai đường MACD và Signal trên cắt nhau thì sẽ báo Trader nên chốt lời '✅', ngược lại khi vào lệnh ngược với xu hướng giá thì sẽ báo thoát lệnh sớm '❌' (Hình 7 bên trên) ☝️☝️☝️
- Khi hai đường MACD và Signal cắt nhau mà tại đó xuất hiện cặp nến nhấn chìm (hoàn toàn) thì trên ô đó sẽ đánh dấu là 'E⌃' (nhấn chìm tăng) hay 'E⌄'(nhấn chìm giảm) cộng thêm % của thân nến nhấn chìm (Hình 8 bên trên) ☝️☝️☝️
- Có 6 chức năng cảnh báo thông minh tìm đúng đối tượng bao gồm:'Long', 'Short', 'Long-Short', 'Take Profit', 'Stoploss', 'All'
trong đó 'All' là bao gồm toàn bộ 5 cảnh báo đứng trước đó
---------------------------------------------------------------------------------------------------------------------
✍️ Kết luận:
Từ chỉ báo này có 2 cách giao dịch:
+ cách 1: Vào lệnh theo tín hiệu tự động Long hoặc Short khi chỉ báo đưa ra
+ cách 2: Vào lệnh theo cặp nến nhấn chìm 'E⌃' hay 'E⌄'(vì đây là tổng hợp từ phương pháp của nến nhấn chìm và 2 đường MA cắt nhau)
SVZO [Orderflowing]SVZO | Smoothed Volume Zone Oscillator | Volume Analysis | Customizable Smoothing (+)
Built using Pine Script V5.
Introduction
The Smoothed Volume Zone Oscillator / SVZO indicator, is a smoothed edition of the classic Volume Zone Oscillator concept by Walid Khalil and David Steckler.
This tool is specifically designed for traders focusing on volume-based analysis, offering a slick perspective on volume, momentum and market strength with user input based smoothing capability.
Innovation and Inspiration
The SVZO indicator is a creative viewpoint of the original VZO, introducing smoothing methods for both the SVZO and VZOMA and allowing flexible input options.
This development provides a more detailed and accurate analysis of volume fluctuations relative to price movements.
It's a response to the needs of traders who demand flexible volume-based market analysis tools.
Core Features
SVZO Line: This advanced version of the VZO employs contemporary smoothing techniques for a more accurate analysis of volume changes against price trends.
Customizable Smoothed SVZO: Choose from EMA, HMA, SMA, or no smoothing to adjust the SVZO line's sensitivity and clarity to match trading needs.
Dynamic Moving Average Line: Features an optional MA line with customizable smoothing, providing a benchmark for volume trend and assisting in identifying market shifts.
Signals: Visual cues in the form of dots signal confirmed crossover points, aiding traders in making informed decisions by highlighting key market events.
Period Setting: Tailor the calculation period for both the SVZO and MA line to suit diverse trading strategies.
Input Parameters
SVZO Smoothing Options: Select from EMA, HMA, SMA, or no smoothing to control the SVZO line's responsiveness.
SVZO and MA Line Periods: Configure the calculation periods for the SVZO and MA lines to align with your trading approach.
MA Line Smoothing Options: Opt from EMA, HMA, SMA, or no smoothing for the MA line.
Example of HMA SVZO (Default Values):
Example of HMA SVZO & VZOMA (Default Values):
Example of SMA SVZO & VZOMA (Smooth Length 2):
Usage and Applications
Volume-Based Market Analysis: The SVZO offers a sleek approach to analyzing market volume.
Decision-Making Visual Cues: Its visual signals and dynamic MA line are crucial for spotting potential entry and exit points, as well as anticipating market turns.
Smoother View of Market Conditions: With its customizable settings, the SVZO is versatile across various market conditions and trading styles, from rapid scalping to extended trend following.
The Value
The SVZO indicator is a tool that delivers substantial value through its unique approach to volume analysis and adaptable settings.
Its capacity to provide a view into volume momentum makes it a great volume-based component of any trader's arsenal, justifying its status as a closed-source product.
Conclusion
The SVZO indicator stands out as a slick tool, (based on the concepts of Khalil & Steckler) for volume-based market analysis, with good features and superior customization.
Its unique approach to volume analysis and flexible settings makes it an essential volume-based instrument for traders.
However, it's important to integrate the SVZO indicator into a broader trading strategy and not solely depend on its signals for trading decisions.
Dynamic Trend Fusion (DTF)The "Dynamic Trend Fusion" (DTF) indicator is a powerful technical analysis tool for traders. It stands out from other indicators due to its adaptability and ability to provide insights into different trading styles. Users can choose from various trading options such as "Short-term Trading," "Long-term Trading," "Aggressive Short-term," "Conservative Long-term," "Balanced Approach," "High Sensitivity," "Low Sensitivity," "Day Trading," and "Swing Trading." These options allow traders to customize the indicator to suit their specific trading strategies.
DTF combines the Moving Average Convergence Divergence (MACD) and Relative Strength Index (RSI) indicators, normalizing them to a similar scale for a comprehensive view of market conditions. It then calculates a combined value and smoothes it using a moving average.
One of its standout features is the ability to identify bullish and bearish states, which is represented visually on the chart. When the indicator detects a transition from a bullish to a bearish state or vice versa, the color of the line changes.
Additionally, DTF offers alert conditions, notifying users when the market shifts into a bullish or bearish state, allowing for timely decision-making.
In summary, the DTF indicator sets itself apart by providing traders with a versatile tool that can be tailored to various trading styles and offers clear visual signals for trend changes, enhancing trading precision and efficiency.