Enhanced MACD and RSI Buy/Sell Signals - Created by Marco NucupKey Features:
EMA Filter: Adds an Exponential Moving Average (EMA) to filter signals based on the trend. Buys are only considered when the price is above the EMA, and sells when below it.
Customizable Inputs: Users can adjust parameters for EMA, MACD, and RSI directly from the TradingView interface, allowing for more personalized strategies.
Alerts: The script includes alert conditions for both buy and sell signals, enabling users to receive notifications.
Signal Plotting: Visual indicators for buy and sell signals on the chart, along with the EMA line for trend reference.
在腳本中搜尋"Buy sell"
Relative Rating Index (RRI)The technical rating is one of the most perfect indicators. The reason is that this indicator is based on a majority vote of multiple indicators. It is logical that the judgment based on a majority vote of multiple indicators would not be inferior to the judgment made using only a single indicator. However, just as any indicator has its shortcomings, the technical rating also has weaknesses. The most significant issue is that it primarily provides only a momentary evaluation of the current situation.
Let's consider this in more detail. In the technical rating, an evaluation of 1.0 by the majority vote of indicators is considered a strong buy. However, in the market, there are naturally varying levels of strength. For example, would a market that only once reached an evaluation of 1.0 within a given period be considered the same as a market that consistently maintains an evaluation of 1.0? The latter clearly shows a stronger trend, but the technical rating does not provide an objective criterion for such differentiation. While it is possible to check the histogram to see how long the buy or sell rating has continued, there is no objective standard for judgment.
The indicator I have created this time compensates for this weakness by using the concept of RSI. As is well known, RSI is an indicator that shows the momentum of the market. RSI typically calculates the strength of the price increase during a 14-period by dividing the total upward movement by the total movement range. Similarly, I thought that if we divide the positive evaluations of the technical rating during a given period by the total evaluations, we could calculate the "momentum of the technical rating," which shows how often positive ratings have appeared during that period.
Below is the calculation formula.
1. Setting the Evaluation Period
Decide the period to calculate (e.g., 14 periods). This is denoted as `n`.
2. Total Positive Ratings of the Technical Rating
Calculate the total number of times the technical rating is evaluated as "strong buy" or "buy" during each period. This is called `positive_sum`.
3. Total Ratings
Count the total number of ratings (including buy, sell, and neutral) during the period. This is called `total_sum`.
4. Calculating the Upward Strength
Divide `positive_sum` by `total_sum` to calculate the ratio of positive ratings in the technical rating. This is called the "ratio of positive ratings."
The ratio of positive ratings, denoted as `P`, is calculated as follows:
P = positive_sum / total_sum
5. Calculating RRI
Following the calculation method of RSI, RRI is calculated by the following formula:
RRI = 100 - (100 / (1 + (P / (1 - P))))
As you can see, the calculation method is similar to that of RSI. Therefore, initially, I intended to name this indicator the Technical Rating RSI. However, RSI calculates based on the difference between the previous bar's price and the current bar's price, whereas this indicator calculates by summing the values of the technical ratings themselves. In the case of prices, if the difference between bars is zero, it indicates a flat market, but in the case of technical rating values, if 1.0 continues for two consecutive periods, it signifies an extremely strong buy rather than a flat market. For this reason, I decided that the calculation method could no longer be considered the same as the traditional RSI, and to avoid confusion, I chose to give this new indicator the name "Relative Rating Index" (RRI), as it provides a new type of numerical evaluation.
The information provided by this indicator is simple. When RRI exceeds 50, it means that more than 50% of the technical rating evaluations during the set period (I recommend 50 periods, but please determine the optimal value based on your timeframe) are buy evaluations. However, since there may be many false signals around exactly 50, I define it as buy-dominant when the value exceeds 60 and sell-dominant when it falls below 40. Additionally, if the graph itself is rising, it indicates that the buying momentum is strengthening, and if it is falling, it indicates that the selling momentum is increasing.
Furthermore, there are lines drawn at 90 and 10, but please note that unlike RSI, these do not indicate overbought or oversold conditions. When RRI exceeds 90, it means that over 90% of the technical rating evaluations during the specified period are buy evaluations, indicating an ongoing extremely strong buy trend. Until the RRI graph turns downward and falls below 90, it should rather be considered a buying opportunity.
With this new indicator, the technical rating becomes an indicator with depth, providing evaluations not only for the moment but over a specified period. I hope you find it helpful in your market analysis.
Uptrick: DPO Signal & Zone Indicator
## **Uptrick: DPO Signal & Zone Indicator**
### **Introduction:**
The **Uptrick: DPO Signal & Zone Indicator** is a sophisticated technical analysis tool tailored to provide insights into market momentum, identify potential trading signals, and recognize extreme market conditions. It leverages the Detrended Price Oscillator (DPO) to strip out long-term trends from price movements, allowing traders to focus on short-term fluctuations and cyclical behavior. The indicator integrates multiple components, including a Detrended Price Oscillator, a Signal Line, a Histogram, and customizable alert levels, to deliver a robust framework for market analysis and trading decision-making.
### **Detailed Breakdown:**
#### **1. Detrended Price Oscillator (DPO):**
- **Purpose and Functionality:**
- The DPO is designed to filter out long-term trends from the price data, isolating short-term price movements. This helps in understanding the cyclical patterns and momentum of an asset, allowing traders to detect periods of acceleration or deceleration that might be overlooked when focusing solely on long-term trends.
- **Calculation:**
- **Formula:** `dpo = close - ta.sma(close, smaLength)`
- **`close`:** The asset’s closing price for each period in the dataset.
- **`ta.sma(close, smaLength)`:** The Simple Moving Average (SMA) of the closing prices over a period defined by `smaLength`.
- The DPO is derived by subtracting the SMA value from the current closing price. This calculation reveals how much the current price deviates from the moving average, effectively detrending the price data.
- **Interpretation:**
- **Positive DPO Values:** Indicate that the current price is higher than the moving average, suggesting bullish market conditions and a potential upward trend.
- **Negative DPO Values:** Indicate that the current price is lower than the moving average, suggesting bearish market conditions and a potential downward trend.
- **Magnitude of DPO:** Reflects the strength of momentum. Larger positive or negative values suggest stronger momentum in the respective direction.
#### **2. Signal Line:**
- **Purpose and Functionality:**
- The Signal Line is a smoothed average of the DPO, intended to act as a reference point for generating trading signals. It helps to filter out short-term fluctuations and provides a clearer perspective on the prevailing trend.
- **Calculation:**
- **Formula:** `signalLine = ta.sma(dpo, signalLength)`
- **`ta.sma(dpo, signalLength)`:** The SMA of the DPO values over a period defined by `signalLength`.
- The Signal Line is calculated by applying a moving average to the DPO values. This smoothing process reduces noise and highlights the underlying trend direction.
- **Interpretation:**
- **DPO Crossing Above Signal Line:** Generates a buy signal, suggesting that short-term momentum is turning bullish relative to the longer-term trend.
- **DPO Crossing Below Signal Line:** Generates a sell signal, suggesting that short-term momentum is turning bearish relative to the longer-term trend.
- **Signal Line’s Role:** Provides a benchmark for assessing the strength of the DPO. The interaction between the DPO and the Signal Line offers actionable insights into potential entry or exit points.
#### **3. Histogram:**
- **Purpose and Functionality:**
- The Histogram visualizes the difference between the DPO and the Signal Line. It provides a graphical representation of momentum strength and direction, allowing traders to quickly gauge market conditions.
- **Calculation:**
- **Formula:** `histogram = dpo - signalLine`
- The Histogram is computed by subtracting the Signal Line value from the DPO value. Positive values indicate that the DPO is above the Signal Line, while negative values indicate that the DPO is below the Signal Line.
- **Interpretation:**
- **Color Coding:**
- **Green Bars:** Represent positive values, indicating bullish momentum.
- **Red Bars:** Represent negative values, indicating bearish momentum.
- **Width of Bars:** Indicates the strength of momentum. Wider bars signify stronger momentum, while narrower bars suggest weaker momentum.
- **Zero Line:** A horizontal gray line that separates positive and negative histogram values. Crosses of the histogram through this zero line can signal shifts in momentum direction.
#### **4. Alert Levels:**
- **Purpose and Functionality:**
- Alert levels define specific thresholds to identify extreme market conditions, such as overbought and oversold states. These levels help traders recognize potential reversal points and extreme market conditions.
- **Inputs:**
- **`alertLevel1`:** Defines the upper threshold for identifying overbought conditions.
- **Default Value:** 0.5
- **`alertLevel2`:** Defines the lower threshold for identifying oversold conditions.
- **Default Value:** -0.5
- **Interpretation:**
- **Overbought Condition:** When the DPO exceeds `alertLevel1`, indicating that the market may be overbought. This condition suggests that the asset could be due for a correction or reversal.
- **Oversold Condition:** When the DPO falls below `alertLevel2`, indicating that the market may be oversold. This condition suggests that the asset could be poised for a rebound or reversal.
#### **5. Visual Elements:**
- **DPO and Signal Line Plots:**
- **DPO Plot:**
- **Color:** Blue
- **Width:** 2 pixels
- **Purpose:** To visually represent the deviation of the current price from the moving average.
- **Signal Line Plot:**
- **Color:** Red
- **Width:** 1 pixel
- **Purpose:** To provide a smoothed reference for the DPO and generate trading signals.
- **Histogram Plot:**
- **Color Coding:**
- **Green:** For positive values, signaling bullish momentum.
- **Red:** For negative values, signaling bearish momentum.
- **Style:** Histogram bars are displayed with varying width to represent the strength of momentum.
- **Zero Line:** A gray horizontal line separating positive and negative histogram values.
- **Overbought/Oversold Zones:**
- **Background Colors:**
- **Green Shading:** Applied when the DPO exceeds `alertLevel1`, indicating an overbought condition.
- **Red Shading:** Applied when the DPO falls below `alertLevel2`, indicating an oversold condition.
- **Horizontal Lines:**
- **Dotted Green Line:** At `alertLevel1`, marking the upper alert threshold.
- **Dotted Red Line:** At `alertLevel2`, marking the lower alert threshold.
- **Purpose:** To provide clear visual cues for extreme market conditions, aiding in the identification of potential reversal points.
#### **6. Trading Signals and Alerts:**
- **Buy Signal:**
- **Trigger:** When the DPO crosses above the Signal Line.
- **Visual Representation:** A "BUY" label appears below the price bar in the specified buy color.
- **Purpose:** Indicates a potential buying opportunity as short-term momentum turns bullish.
- **Sell Signal:**
- **Trigger:** When the DPO crosses below the Signal Line.
- **Visual Representation:** A "SELL" label appears above the price bar in the specified sell color.
- **Purpose:** Indicates a potential selling opportunity as short-term momentum turns bearish.
- **Overbought/Oversold Alerts:**
- **Overbought Alert:** Triggered when the DPO crosses below `alertLevel1`.
- **Oversold Alert:** Triggered when the DPO crosses above `alertLevel2`.
- **Visual Representation:** Labels "OVERBOUGHT" and "OVERSOLD" appear with distinctive colors and sizes to highlight extreme conditions.
- **Purpose:** To signal potential reversal points and extreme market conditions that may lead to price corrections or trend reversals.
- **Alert Conditions:**
- **DPO Cross Above Signal Line:** Alerts traders when the DPO crosses above the Signal Line, generating a buy signal.
- **DPO Cross Below Signal Line:** Alerts traders when the DPO crosses below the Signal Line, generating a sell signal.
- **DPO Above Upper Alert Level:** Alerts when the DPO is above `alertLevel1`, indicating an overbought condition.
- **DPO Below Lower Alert Level:** Alerts when the DPO is below `alertLevel2`, indicating an oversold condition.
- **Purpose:** To provide real-time notifications of significant market events, enabling traders to make informed decisions promptly.
### **Practical Applications:**
#### **1. Trend Following Strategies:**
- **Objective:**
- To capture and ride the prevailing market trends by entering trades that align with the direction of the momentum.
- **How to Use:**
- Monitor buy and sell signals generated by the DPO crossing the Signal Line. A buy signal suggests a bullish trend and a potential long trade, while a sell signal suggests a bearish trend and a potential short trade.
- Use the Histogram to confirm the strength of the trend. Expanding green bars indicate strong bullish momentum, while expanding red bars indicate strong bearish momentum.
- **Advantages:**
- Helps traders stay aligned with the market trend, increasing the likelihood of capturing substantial price moves.
#### **2. Reversal Trading:**
- **Objective:**
- To identify potential market reversals
by detecting overbought and oversold conditions.
- **How to Use:**
- Look for overbought and oversold signals based on the DPO crossing `alertLevel1` and `alertLevel2`. These conditions suggest that the market may be due for a reversal.
- Confirm reversal signals with the Histogram. A decrease in histogram bars (from green to red or vice versa) may support the reversal hypothesis.
- **Advantages:**
- Provides early warnings of potential market reversals, allowing traders to position themselves before significant price changes occur.
#### **3. Momentum Analysis:**
- **Objective:**
- To gauge the strength and direction of market momentum for making informed trading decisions.
- **How to Use:**
- Analyze the Histogram to assess momentum strength. Positive and expanding histogram bars indicate increasing bullish momentum, while negative and expanding bars suggest increasing bearish momentum.
- Use momentum insights to validate or question existing trading positions and strategies.
- **Advantages:**
- Offers valuable information about the market's momentum, helping traders confirm the validity of trends and trading signals.
### **Customization and Flexibility:**
The **Uptrick: DPO Signal & Zone Indicator** offers extensive customization options to accommodate diverse trading preferences and market conditions:
- **SMA Length and Signal Line Length:**
- Adjust the `smaLength` and `signalLength` parameters to control the sensitivity and responsiveness of the DPO and Signal Line. Shorter lengths make the indicator more responsive to price changes, while longer lengths provide smoother, less volatile signals.
- **Alert Levels:**
- Modify `alertLevel1` and `alertLevel2` to fit varying market conditions and volatility. Setting these levels appropriately helps tailor the indicator to different asset classes and trading strategies.
- **Color and Shape Customization:**
- Customize the colors and sizes of buy/sell signals, histogram bars, and alert levels to enhance visual clarity and align with personal preferences. This customization helps ensure that the indicator integrates seamlessly with a trader's charting setup.
### **Conclusion:**
The **Uptrick: DPO Signal & Zone Indicator** is a multifaceted analytical tool that combines the power of the Detrended Price Oscillator with customizable visual elements and alert levels to deliver a comprehensive approach to market analysis. By offering insights into momentum strength, trend direction, and potential reversal points, this indicator equips traders with valuable information to make informed decisions and enhance their trading strategies. Its flexibility and customization options ensure that it can be adapted to various trading styles and market conditions, making it a versatile addition to any trader's toolkit.
Vmoon By:VasmaVmoon Indicator by Vasma
Overview:
The Vmoon indicator is an advanced tool designed for trend following and momentum trading, uniquely combining the Average True Range (ATR) with a Double Exponential Moving Average (DEMA). Unlike standard indicators, Vmoon provides traders with a dual-layered approach to detect trend reversals and confirm momentum, making it a robust solution for identifying trading opportunities in various market conditions.
Key Features and Calculation Methodology:
Average True Range (ATR) Based Trend Detection:
ATR Period: The user can define the ATR period, with a default setting of 12 periods. This period is crucial for accurately measuring market volatility over the chosen timeframe.
ATR Multiplier: Set at a default of 3.0, the multiplier adjusts the ATR range to determine dynamic support and resistance levels, allowing the indicator to adapt to different market conditions.
Custom ATR Calculation Method: Traders can choose between a simple moving average of the true range or the built-in ATR method. This flexibility allows for personalized risk management and signal sensitivity.
Upper and Lower Bands: These bands are calculated by adding and subtracting the ATR value from the price (hl2 by default). The bands serve as dynamic thresholds—when price breaks above the upper band, it suggests an upward trend, and breaking below the lower band suggests a downward trend.
The Vmoon indicator doesn't just plot these bands; it dynamically adjusts them based on price action, providing a real-time, adaptive system for trend detection.
Innovative Trend Identification:
Real-Time Trend Tracking: The indicator monitors price movements relative to the ATR bands, continuously updating the trend direction. This allows for quick identification of trend changes, which is critical in volatile markets.
Trend Change Detection: Vmoon captures shifts from upward to downward trends (and vice versa) with precision, generating actionable buy or sell signals. This feature helps traders stay ahead of market reversals.
Double Exponential Moving Average (DEMA) Integration:
DEMA Calculation: The Vmoon indicator uses a 200-period DEMA, which is known for reducing lag and providing a faster reaction to price changes compared to traditional moving averages. This ensures that the indicator responds promptly to emerging trends.
Crossover-Based Momentum Confirmation: The indicator generates signals based on price crossovers with the 200-period DEMA:
Buy Signal: A green triangle appears when the price crosses above the DEMA, signaling potential bullish momentum.
Sell Signal: A red triangle is displayed when the price crosses below the DEMA, indicating possible bearish momentum.
The DEMA component of Vmoon offers a long-term perspective on market momentum, acting as a filter to confirm the strength and direction of the trend.
Customizable Alerts:
Vmoon includes fully customizable alert conditions, allowing traders to stay informed about critical market movements:
Buy Signal Alert: Notifies when the trend changes from downward to upward, indicating a potential buying opportunity.
Sell Signal Alert: Alerts when the trend shifts from upward to downward, signaling a possible selling point.
General Trend Change Alert: Keeps traders aware of any direction changes, helping them to react quickly to potential reversals.
How to Use Vmoon:
Dynamic Trend Following: Use the ATR-based upper and lower bands as dynamic support and resistance levels. Monitor for breakouts to identify trend reversals.
Momentum Confirmation with DEMA: Validate trend signals by watching for price crossovers with the 200-period DEMA, ensuring that the trend is supported by strong momentum.
Signal Interpretation: Act on the buy and sell signals displayed on the chart, supported by optional alerts, to make informed trading decisions in real time.
Enhanced Customization Options:
Adjustable ATR Settings: Modify the ATR period and multiplier to better align with your trading strategy and market conditions.
Selectable ATR Calculation Method: Choose the ATR method that best suits your risk tolerance and market analysis approach.
Configurable Signal Display: Tailor the indicator to show or hide buy/sell signals based on your preferences.
Personalized Alerts: Set alerts that match your specific trading needs, ensuring that you never miss a significant market move.
Visual Representation:
Vmoon provides a clear and concise visual representation on the chart, with distinct markers for buy and sell signals, dynamic ATR bands, and the 200-period DEMA. This visualization helps traders quickly interpret market conditions and make timely decisions.
Why Vmoon is Unique:
Vmoon stands out by integrating ATR-based dynamic thresholds with the reduced-lag DEMA, offering a comprehensive solution for trend identification and momentum confirmation. This combination is not commonly found in standard indicators, and the flexibility in customization ensures that Vmoon can be adapted to suit various trading strategies and market environments. The proprietary logic behind Vmoon’s signal generation, particularly in how it adjusts to market volatility, is what makes it both powerful and worthy of protection as a closed-source script.
EMA 50 200 Multi-Scanner
EMA 50 200 Multi-Scanner: İndikatör Açıklaması ve Kullanım Kılavuzu
"EMA 50 200 Multi-Scanner" indikatörü, birden fazla kripto para çiftini farklı zaman dilimlerinde tarayan güçlü bir teknik analiz aracıdır. Bu indikatör, 50 periyotluk ve 200 periyotluk Üssel Hareketli Ortalamalar (EMA) arasındaki ilişkiyi analiz ederek, çeşitli zaman dilimlerinde potansiyel alım ve satım fırsatlarını tespit etmenizi sağlar. Hem kısa vadeli trendleri hem de uzun vadeli trendleri gözlemleyerek, piyasa koşullarına uygun stratejiler geliştirmenize yardımcı olur.
Ne İşe Yarar?
Trend Yönünü Belirleme: İndikatör, seçtiğiniz kripto para çiftlerinin her birinde 50 EMA ve 200 EMA arasındaki ilişkiyi analiz eder. Bu analiz, hem kısa vadeli hem de uzun vadeli trendlerin yönünü belirlemenize olanak tanır.
Zaman Dilimleri Arası Analiz: Farklı zaman dilimlerinde çalışabilen bu indikatör, günlük, saatlik, dakikalık gibi çeşitli periyotlarda trendleri ve fiyat hareketlerini incelemenizi sağlar. Bu, hem kısa vadeli ticaret fırsatlarını yakalamak hem de uzun vadeli yatırım kararlarını desteklemek için idealdir.
Alım/Satım Sinyalleri: İndikatör, fiyatın 50 EMA ve 200 EMA ile olan ilişkisini temel alarak alım ve satım sinyalleri üretir. Bu sinyaller, piyasa trendlerinden yararlanarak pozisyon açma veya kapama kararlarınızı destekler.
Dinamik Destek ve Direnç Seviyeleri: EMA seviyeleri, aynı zamanda dinamik destek ve direnç seviyeleri olarak kullanılabilir. Fiyatın bu seviyelere yaklaşması, potansiyel geri dönüş noktalarını veya trendin devamını işaret edebilir.
Nasıl Kullanılır?
İndikatör Ayarları:
EMA Uzunlukları: İhtiyacınıza göre 50 EMA ve 200 EMA'nın periyot uzunluklarını ayarlayabilirsiniz.
Renkler: EMA çizgilerinin rengini tercihinize göre özelleştirebilirsiniz.
Negatif Değerleri Gösterme: Fiyatın EMA seviyelerinin altında olduğu durumlarda negatif değerleri görmek isterseniz, bu özelliği aktif hale getirebilirsiniz.
Semboller: İndikatör, önceden tanımlanmış kripto para çiftleri üzerinde çalışır. Her bir sembol, seçtiğiniz zaman diliminde taranır ve sonuçlar gösterilir. Gereksinimlerinize göre bu sembolleri seçebilir veya çıkarabilirsiniz.
Zaman Dilimleri: İndikatör, TradingView platformundaki tüm zaman dilimlerinde çalışır. Bu, hem kısa vadeli hem de uzun vadeli yatırımcılar için esnek bir analiz olanağı sunar.
Al/Sat Sinyalleri:
Alım Sinyali: 50 EMA, 200 EMA'yı yukarı yönde kestiğinde ve fiyat bu kesişimin üzerinde olduğunda yeşil bir "BUY" etiketi ile gösterilir.
Satım Sinyali: 50 EMA, 200 EMA'yı aşağı yönde kestiğinde ve fiyat bu kesişimin altında olduğunda kırmızı bir "SELL" etiketi ile gösterilir.
"EMA 50 200 Multi-Scanner," çoklu zaman dilimlerinde ve kripto para çiftlerinde trend takibi yapmak isteyen yatırımcılar için etkili ve kullanımı kolay bir araçtır. Piyasa koşullarını daha iyi anlamak ve ticaret stratejilerinizi optimize etmek için bu indikatörü kullanabilirsiniz.
-------------
The "EMA 50 200 Multi-Scanner" is a powerful technical analysis tool designed to scan multiple cryptocurrency pairs across different timeframes. This indicator analyzes the relationship between the 50-period and 200-period Exponential Moving Averages (EMA) to help you identify potential buying and selling opportunities across various timeframes. It enables you to observe both short-term and long-term trends, aiding in the development of market-appropriate strategies.
Purpose
Trend Direction Identification: The indicator analyzes the relationship between the 50 EMA and 200 EMA for each selected cryptocurrency pair, allowing you to determine the direction of both short-term and long-term trends.
Multi-Timeframe Analysis: This indicator can operate across different timeframes, such as daily, hourly, and minute-based periods, allowing you to examine trends and price movements in multiple contexts. It is ideal for capturing short-term trading opportunities and supporting long-term investment decisions.
Buy/Sell Signals: The indicator generates buy and sell signals based on the relationship between the price and the 50 EMA and 200 EMA. These signals support your decision-making process by highlighting opportunities to open or close positions based on market trends.
Dynamic Support and Resistance Levels: The EMA levels can also serve as dynamic support and resistance levels. When the price approaches these levels, it can indicate potential reversal points or trend continuations.
How to Use
Indicator Settings:
EMA Lengths: Adjust the period lengths of the 50 EMA and 200 EMA to suit your needs.
Colors: Customize the colors of the EMA lines according to your preferences.
Show Negative Values: If you want to see negative values when the price is below the EMA levels, you can enable this feature.
Symbols: The indicator works on predefined cryptocurrency pairs. Each symbol is scanned within the selected timeframe, and results are displayed. You can select or deselect symbols according to your requirements.
Timeframes: The indicator functions across all timeframes available on the TradingView platform, offering flexible analysis for both short-term and long-term traders.
Buy/Sell Signals:
Buy Signal: A green "BUY" label is shown when the 50 EMA crosses above the 200 EMA and the price is above this crossover.
Sell Signal: A red "SELL" label is shown when the 50 EMA crosses below the 200 EMA and the price is below this crossover.
The "EMA 50 200 Multi-Scanner" is an effective and user-friendly tool for traders looking to track trends across multiple timeframes and cryptocurrency pairs. You can use this indicator to gain a better understanding of market conditions and optimize your trading strategies.
NOVO ALGO - Starry SkyGeneral Description:
This indicator provides the possible buy and sell entry with the estimated risk and its corresponding Stop Loss (SL) value.
It has originally developed for 1-min chart and works the best on this time-frame. It may work on the other time-frames, but its profitability has not been checked. So, I would rather recommend to use and apply it only on 1-min chart.
Novelty of the indicator:
Trading in 1-min chart consists of dealing with so many small swings and price variations which are very local and does not affect the general trend even in the 5-min time frame.
We call these small price variations and swings 'Noise'.
The novelty of the indicator is in a parameter which we call the Noise Level and filtering length.
It has been widely used in the Fluid Dynamics and in the Large Eddy Simulations where small noises of flow is removed by a dynamic filter.
In this indicator, we have tried to incorporate the same idea but in the price trend detection.
For the current version, we have used a less tolerance for noise level which results in much less signals compared to the full capacity of the indicator. It roughly sends out around 10-15% of the total confirmed positions.
How it detects the entry positions
To define the entry point, 5 main properties are considered and checked at 3 main time frames including 1-min, 5-min, and 15-min.
These time-frames are selected based on the fact that the target chart is in 1-min.
The 5 properties evaluated are:
1- Smooth Moving Average
2- Bollinger Band
3- Price Regression
4- Candle Pattern
5- Volume
Detailed Description:
Detect a possible entry by Smooth Moving Average:
- At each time frame, 3 lengths are considered to calculate the price moving average values; i.e. short, medium and long lengths.
- The interaction of these MAs, of course, defines the local trend of the price generally. It also provides an idea about the strength of the trend.
- The information calculated at 1-min time frame triggers the possible buy/sell. However, it waits until getting confirmation from the upper time frame (5-min).
- We use the MAs of 15-min time frame to define the general dominant price trend and stop reverse signals when the trend is fully dominant in one direction.
When a possible entry position is triggered by the MAs, at that very price bar we calculate the noise level.
If the noise level is higher than a certain predefined value, then the signal is rejected. Otherwise the signal gets out.
The threshold we use to define if a signal is noisy or not is normalized so it can be used without any concern at different markets.
We believe the calculations and ideas behind the Noise Level is what makes this indicator unique and practical.
We define the noise level parameter based on the following properties:
1- Smooth Moving Average at upper time frame (basically 15-min):
If a possible signal is against the trend of the upper time-frame, the noise level is increased.
If it is in the direction of the upper time-frame trend, then the noise level is untouched.
As already mentioned, different lengths are used. So, as the length of MA is larger its impact on the noise level is considered higher.
2- Bollinger Band of upper time frames (5-min and 15-min)
We employ bollinger bands to define 4 regions.
1. Above the upper band
2. Between middle and upper band
3. Between Lower and middle bands
4. Below the lower band
Then use these 4 regions along with the candle position and price regression.
For example, if the price regression line and candle position are on the same region of BB, then we assume less possibility for reverse or strong trend.
Consequently, we increase the noise level parameter. On the other hand, if they belong to two different region, we assume more possibility for big price change, and so we lower the noise level.
3- Price Regression
We use average price regression line to filter out very small swings in the price. We have also set a criterion of continuity for the regression line that ensures small price variation and swings are left out and filtered.
This will come with the sot of delay in the confirmation of signal, but we found it very important to remove very small swings of price that, for example, consists of only few bars in 1-min chart.
We have also used the position of the regression line along with the regions defied by BBs to evaluate the strength of a newly detected trend.
As candles will always reach to the regression at some point, if a possible entry is detected and the regression line and candles belong to two different region, we assume a strong price change. But if they belong to the same region, we increase the noise level and will assume that it might be a small swing.
4- Candle Pattern
We assumed several rules for candles shape and prices to define if a price movement is strong or it is just a small swing. For example we expect the price to be increase in the last 2-3 candles if we should call a entry for long position.
These set of self-made rules have been extracted by using the visual inspections of the price movement. This has been done much more advanced for long entry position which has resulted in more long signals by the indicator.
5- Volume
We use volume of trades in 1-min, 5-min, and 15-min to evaluate the strength of the trend. We use both absolute and what we call directional volume! The directional volume is the volume with the sign of the candle. This helps us to know if the reverse trend supported by enough volume or it is just a small swing.
For example, if the directional volume of 1-min can surpass the 5-min directional volume, this indicates to us that the importance of 5-min data and its validity is less. So, more focus will be put on the 1-min volume data and the direction it indicates.
Money Management:
Profit calculation: the profit is calculated based on the user defined leverage (default 100x). The user has the option to change the buy/sell leverages to the desired values.
Risk assessment: The user has the option to adjust the risk of the trades. Then the SL value will be calculated for each trade according to the defined risk value.
If a value of zero is set for the risk, then the indicator will define the local SL of each trade based on the pivot point.
As in 1-min trading, the prices are noise and include several small swings and consequently several minor pivot points, we filtered the pivot points that belong to the super small swings detected by our noise level indicator.
Suggestion
I found it more profitable to make the trades risk-free when their profits passes 10% (with leverage 100x). Then, readjust the TP of trades if the trend is in the direction of the position.
I would recommend to observe the performance of the indicator for a day or two, before actually trading with its signals. This will help to have a better understanding of the leverage and risk you may apply.
S&P Short-Range Oscillator**SHOULD BE USED ON THE S&P 500 ONLY**
The S&P Short-Range Oscillator (SRO), inspired by the principles of Jim Cramer's oscillator, is a technical analysis tool designed to help traders identify potential buy and sell signals in the stock market, specifically for the S&P 500 index. The SRO combines several market indicators to provide a normalized measure of market sentiment, assisting traders in making informed decisions.
The SRO utilizes two simple moving averages (SMAs) of different lengths: a 5-day SMA and a 10-day SMA. It also incorporates the daily price change and market breadth (the net change of closing prices). The 5-day and 10-day SMAs are calculated based on the closing prices. The daily price change is determined by subtracting the opening price from the closing price. Market breadth is calculated as the difference between the current closing price and the previous closing price.
The raw value of the oscillator, referred to as SRO Raw, is the sum of the daily price change, the 5-day SMA, the 10-day SMA, and the market breadth. This raw value is then normalized using its mean and standard deviation over a 20-day period, ensuring that the oscillator is centered and maintains a consistent scale. Finally, the normalized value is scaled to fit within the range of -15 to 15.
When interpreting the SRO, a value below -5 indicates that the market is potentially oversold, suggesting it might be a good time to start buying stocks as the market could be poised for a rebound. Conversely, a value above 5 suggests that the market is potentially overbought. In this situation, it may be prudent to hold on to existing positions or consider selling if you have substantial gains.
The SRO is visually represented as a blue line on a chart, making it easy to track its movements. Red and green horizontal lines mark the overbought (5) and oversold (-5) levels, respectively. Additionally, the background color changes to light red when the oscillator is overbought and light green when it is oversold, providing a clear visual cue.
By incorporating the S&P Short-Range Oscillator into your trading strategy, you can gain valuable insights into market conditions and make more informed decisions about when to buy, sell, or hold your stocks. However, always consider other market factors and perform your own analysis before making any trading decisions.
The S&P Short-Range Oscillator is a powerful tool for traders looking to gain insights into market sentiment. It provides clear buy and sell signals through its combination of multiple indicators and normalization process. However, traders should be aware of its lagging nature and potential complexity, and use it in conjunction with other analysis methods for the best results.
Disclaimer
The S&P Short-Range Oscillator is for informational purposes only and should not be considered financial advice. Trading involves risk, and you should conduct your own research or consult a financial advisor before making investment decisions. The author is not responsible for any losses incurred from using this indicator. Use at your own risk.
Volume Positive & Negative Levels [ChartPrime]Volume Positive & Negative Levels
Overview:
The Volume Positive & Negative Levels indicator by ChartPrime is designed to provide traders with a clear visualization of volume activity across different price levels. By plotting volume levels as histograms, this tool helps identify significant areas of buying (positive volume) and selling (negative volume) pressure, enhancing the ability to spot potential support and resistance zones.
Key Features:
⯁ Lookback Period:
- The `lookbackPeriod` parameter, set to 500 bars, determines the range over which the volume analysis is conducted, ensuring a comprehensive view of the market’s volume activity. The maximum lookback period is 500 bars or the bars currently visible on the chart, whichever is smaller.
⯁ Dynamic Volume Calculation:
- Volume is calculated dynamically based on the price action, with positive volume indicating buying pressure (close > open) and negative volume indicating selling pressure (close < open).
⯁ Color Coding for Clarity:
- Positive Volume: Represented with a distinct color (`#ad9a2c`), making it easy to identify areas of buying interest.
- Negative Volume: Highlighted with another color (`#ad2cad`), simplifying the detection of selling pressure.
Volume Threshold and Bins:
- The indicator allows users to set a volume threshold (`volume_level`) to highlight significant volume levels, with the default set at 70.
- The number of bins (`numBins`) defines the granularity of the volume profile, with a higher number providing more detail.
⯁ Volume Profile Visualization:
- The volume profile is plotted as a histogram, with the height of each bar proportional to the volume at that price level. This visualization helps in quickly assessing the strength of volume at various price points.
⯁ Interactive Labels and Threshold Indicators:
- Labels: The indicator uses labels to mark significant volume levels, providing quick reference points for traders.
- Threshold Lines: Lines are drawn at specified volume thresholds, with colors and widths dynamically adjusted based on the volume levels.
⯁ User Inputs:
- Volume Threshold (`volume_level`): Sets the minimum volume required to highlight significant levels.
- Number of Bins (`numBins`): Determines the resolution of the volume profile.
- Line Width (`line_withd`): Specifies the width of the lines used in the visualization.
The Volume Positive & Negative Levels indicator is a powerful tool for traders looking to gain deeper insights into market dynamics. By providing a clear visual representation of volume activity across different price levels, it helps traders identify key support and resistance zones, spot trends, and make more informed trading decisions. Whether you are a day trader or a swing trader, this indicator enhances your ability to analyze volume data effectively, improving your overall trading strategy.
ICT Turtle Soup | Flux Charts💎 GENERAL OVERVIEW
Introducing our new ICT Turtle Soup Indicator! This indicator is built around the ICT "Turtle Soup" model. The strategy has 5 steps for execution which are described in this write-up. For more information about the process, check the "HOW DOES IT WORK" section.
Features of the new ICT Turtle Soup Indicator :
Implementation of ICT's Turtle Soup Strategy
Adaptive Entry Method
Customizable Execution Settings
Customizable Backtesting Dashboard
Alerts for Buy, Sell, TP & SL Signals
📌 HOW DOES IT WORK ?
The ICT Turtle Soup strategy may have different implementations depending on the selected method of the trader. This indicator's implementation is described as :
1. Mark higher timerame liquidity zones.
Liquidity zones are where a lot of market orders sit in the chart. They are usually formed from the long / short position holders' "liquidity" levels. There are various ways to find them, most common one being drawing them on the latest high & low pivot points in the chart, which this indicator does.
2. Mark current timeframe market structure.
The market structure is the current flow of the market. It tells you if the market is trending right now, and the way it's trending towards. It's formed from swing higs, swing lows and support / resistance levels.
3. Wait for market to make a liquidity grab on the higher timeframe liquidity zone.
A liquidity grab is when the marked liquidity zones have a false breakout, which means that it gets broken for a brief amount of time, but then price falls back to it's previous position.
4. Buyside liquidity grabs are "Short" entries and Sellside liquidity grabs are "Long" entries by default.
5. Wait for the market-structure shift in the current timeframe for entry confirmation.
A market-structure shift happens when the current market structure changes, usually when a new swing high / swing low is formed. This indicator uses it as a confirmation for position entry as it gives an insight of the new trend of the market.
6. Place Take-Profit and Stop-Loss levels according to the risk ratio.
This indicator uses "Average True Range" when placing the stop-loss & take-profit levels. Average True Range calculates the average size of a candle and the indicator places the stop-loss level using ATR times the risk setting determined by the user, then places the take-profit level trying to keep a minimum of 1:1 risk-reward ratio.
This indicator follows these steps and inform you step by step by plotting them in your chart.
🚩UNIQUENESS
This indicator is an all-in-one suit for the ICT's Turtle Soup concept. It's capable of plotting the strategy, giving signals, a backtesting dashboard and alerts feature. It's designed for simplyfing a rather complex strategy, helping you to execute it with clean signals. The backtesting dashboard allows you to see how your settings perform in the current ticker. You can also set up alerts to get informed when the strategy is executable for different tickers.
⚙️SETTINGS
1. General Configuration
MSS Swing Length -> The swing length when finding liquidity zones for market structure-shift detection.
Higher Timeframe -> The higher timeframe to look for liquidity grabs. This timeframe setting must be higher than the current chart's timeframe for the indicator to work.
Breakout Method -> If "Wick" is selected, a bar wick will be enough to confirm a market structure-shift. If "Close" is selected, the bar must close above / below the liquidity zone to confirm a market structure-shift.
Entry Method ->
"Classic" : Works as described on the "HOW DOES IT WORK" section.
"Adaptive" : When "Adaptive" is selected, the entry conditions may chance depending on the current performance of the indicator. It saves the entry conditions and the performance of the past entries, then for the new entries it checks if it predicted the liquidity grabs correctly with the current setup, if so, continues with the same logic. If not, it changes behaviour to reverse the entries from long / short to short / long.
2. TP / SL
TP / SL Method -> If "Fixed" is selected, you can adjust the TP / SL ratios from the settings below. If "Dynamic" is selected, the TP / SL zones will be auto-determined by the algorithm.
Risk -> The risk you're willing to take if "Dynamic" TP / SL Method is selected. Higher risk usually means a better winrate at the cost of losing more if the strategy fails. This setting is has a crucial effect on the performance of the indicator, as different tickers may have different volatility so the indicator may have increased performance when this setting is correctly adjusted.
Market Sentiment Technicals [LuxAlgo]The Market Sentiment Technicals indicator synthesizes insights from diverse technical analysis techniques, including price action market structures, trend indicators, volatility indicators, momentum oscillators, and more.
The indicator consolidates the evaluated outputs from these techniques into a singular value and presents the combined data through an oscillator format, technical rating, and a histogram panel featuring the sentiment of each component alongside the overall sentiment.
🔶 USAGE
The Market Sentiment Technicals indicator is a tool able to swiftly and easily gauge market sentiment by consolidating the individual sentiment from multiple technical analysis techniques applied to market data into a single value, allowing users to asses if the market is uptrending, consolidating, or downtrending.
The tool includes various components and presentation formats, each described in the sub-sections below.
🔹Indicators Sentiment Panel
The indicators sentiment panel provides normalized sentiment scores for each supported indicator, along with a synthesized representation derived from the average of all individual normalized sentiments.
🔹Market Sentiment Meter
The market sentiment meter is obtained from the synthesized representation derived from the average of all individual normalized sentiments. It allows users to quickly and easily gauge the overall market sentiment.
🔹Market Sentiment Oscillator
The market sentiment oscillator provides a visual means to monitor the current and historical strength of the market. It assists in identifying the trend direction, trend momentum, and overbought and oversold conditions, aiding in the anticipation of potential trend reversals.
Divergence occurs when there is a difference between what the price action is indicating and what the market sentiment oscillator is indicating, helping traders assess changes in the price trend.
🔶 DETAILS
The indicator employs a range of technical analysis techniques to interpret market data. Each group of indicators provides valuable insights into different aspects of market behavior.
🔹Momentum Indicators
Momentum indicators assess the speed and change of price movements, often indicating whether a trend is strengthening or weakening.
Relative Strength Index (RSI): Measures the magnitude of recent price changes to evaluate overbought or oversold conditions.
Stochastic %K: Compares the closing price to the range over a specified period to identify potential reversal points.
Stochastic RSI Fast: Combines features of Stochastic oscillators and RSI to gauge both momentum and overbought/oversold levels efficiently.
Commodity Channel Index (CCI): Measures the deviation of an asset's price from its statistical average to determine trend strength and overbought and oversold conditions.
Bull Bear Power: Evaluates the strength of buying and selling pressure in the market.
🔹Trend Indicators
Trend indicators help traders identify the direction of a market trend.
Moving Averages: Provides a smoothed representation of the underlying price data, aiding in trend identification and analysis.
Bollinger Bands: Consists of a middle band (typically a simple moving average) and upper and lower bands, which represent volatility levels of the market.
Supertrend: A trailing stop able to identify the current direction of the trend.
Linear Regression: Fits a straight line to past data points to predict future price movements and identify trend direction.
🔹Market Structures
Market Structures: Analyzes the overall pattern of price movements, including Break of Structure (BOS), Market Structure Shifts (MSS), also referred to as Change of Character (CHoCH), aiding in identifying potential market turning and continuation points.
🔹The Normalization Technique
The normalization technique employed for trend indicators relies on buy-sell signals. The script tracks price movements and normalizes them based on these signals.
normalize(buy, sell, smooth)=>
var os = 0
var float max = na
var float min = na
os := buy ? 1 : sell ? -1 : os
max := os > os ? close : os < os ? max : math.max(close, max)
min := os < os ? close : os > os ? min : math.min(close, min)
ta.sma((close - min)/(max - min), smooth) * 100
In this Pine Script snippet:
The variable os tracks market sentiment, taking a value of 1 for buy signals and -1 for sell signals, indicating bullish and bearish sentiments, respectively.
max and min are used to identify extremes in sentiment and are updated based on changes in os . When market sentiment shifts from buying to selling (or vice versa), max and min adjust accordingly.
Normalization is achieved by comparing current price levels to historical extremes in sentiment. The result is smoothed by default using a 3-period simple moving average. Users have the option to customize the smoothing period via the script settings input menu.
🔶 SETTINGS
🔹Generic Settings
Timeframe: This option selects the timeframe for calculating sentiment. If a timeframe lower than the chart's is chosen, calculations will be based on the chart's timeframe.
Horizontal Offset: Determines the distance at which the visual components of the indicator will be displayed from the primary chart.
Gradient Colors: Allows customization of gradient colors.
🔹Indicators Sentiment Panel
Indicators Sentiment Panel: Toggle the visibility of the indicators sentiment panel.
Panel Height: Determines the height of the panel.
🔹Market Sentiment Meter
Market Sentiment Meter: Toggle the visibility of the market sentiment meter (technical ratings in the shape of a speedometer).
🔹Market Sentiment Oscillator
Market Sentiment Oscillator: Toggle the visibility of the market sentiment oscillator.
Show Divergence: Enables detection of divergences based on the selected option.
Oscillator Line Width: Customization option for the line width.
Oscillator Height: Determines the height of the oscillator.
🔹Settings for Individual Components
In general,
Source: Determines the data source for calculations.
Length: The period to be used in calculations.
Smoothing: Degree of smoothness of the evaluated values.
🔹Normalization Settings - Trend Indicators
Smoothing: The period used in smoothing normalized values, where normalization is applied to moving averages, Bollinger Bands, Supertrend, VWAP bands, and market structures.
🔶 LIMITATIONS
Like any technical analysis tool, the Market Sentiment Technicals indicator has limitations. It's based on historical data and patterns, which may not always accurately predict future market movements. Additionally, market sentiment can be influenced by various factors, including economic news, geopolitical events, and market psychology, which may not be fully captured by technical analysis alone.
HilalimSBHilalimSB A Wedding Gift 🌙
HilalimSB - Revealing the Secrets of the Trend
HilalimSB is a powerful indicator designed to help investors analyze market trends and optimize trading strategies. Designed to uncover the secrets at the heart of the trend, HilalimSB stands out with its unique features and impressive algorithm.
Hilalim Algorithm and Fixed ATR Value:
HilalimSB is equipped with a special algorithm called "Hilalim" to detect market trends. This algorithm can delve into the depths of price movements to determine the direction of the trend and provide users with the ability to predict future price movements. Additionally, HilalimSB uses its own fixed Average True Range (ATR) value. ATR is an indicator that measures price movement volatility and is often used to determine the strength of a trend. The fixed ATR value of HilalimSB has been tested over long periods and its reliability has been proven. This allows users to interpret the signals provided by the indicator more reliably.
ATR Calculation Steps
1.True Range Calculation:
+ The True Range (TR) is the greatest of the following three values:
1. Current high minus current low
2. Current high minus previous close (absolute value)
3. Current low minus previous close (absolute value)
2.Average True Range (ATR) Calculation:
-The initial ATR value is calculated as the average of the TR values over a specified period
(typically 14 periods).
-For subsequent periods, the ATR is calculated using the following formula:
ATRt=(ATRt−1×(n−1)+TRt)/n
Where:
+ ATRt is the ATR for the current period,
+ ATRt−1 is the ATR for the previous period,
+ TRt is the True Range for the current period,
+ n is the number of periods.
Pine Script to Calculate ATR with User-Defined Length and Multiplier
Here is the Pine Script code for calculating the ATR with user-defined X length and Y multiplier:
//@version=5
indicator("Custom ATR", overlay=false)
// User-defined inputs
X = input.int(14, minval=1, title="ATR Period (X)")
Y = input.float(1.0, title="ATR Multiplier (Y)")
// True Range calculation
TR1 = high - low
TR2 = math.abs(high - close )
TR3 = math.abs(low - close )
TR = math.max(TR1, math.max(TR2, TR3))
// ATR calculation
ATR = ta.rma(TR, X)
// Apply multiplier
customATR = ATR * Y
// Plot the ATR value
plot(customATR, title="Custom ATR", color=color.blue, linewidth=2)
This code can be added as a new Pine Script indicator in TradingView, allowing users to calculate and display the ATR on the chart according to their specified parameters.
HilalimSB's Distinction from Other ATR Indicators
HilalimSB emerges with its unique Average True Range (ATR) value, presenting itself to users. Equipped with a proprietary ATR algorithm, this indicator is released in a non-editable form for users. After meticulous testing across various instruments with predetermined period and multiplier values, it is made available for use.
ATR is acknowledged as a critical calculation tool in the financial sector. The ATR calculation process of HilalimSB is conducted as a result of various research efforts and concrete data-based computations. Therefore, the HilalimSB indicator is published with its proprietary ATR values, unavailable for modification.
The ATR period and multiplier values provided by HilalimSB constitute the fundamental logic of a trading strategy. This unique feature aids investors in making informed decisions.
Visual Aesthetics and Clear Charts:
HilalimSB provides a user-friendly interface with clear and impressive graphics. Trend changes are highlighted with vibrant colors and are visually easy to understand. You can choose colors based on eye comfort, allowing you to personalize your trading screen for a more enjoyable experience. While offering a flexible approach tailored to users' needs, HilalimSB also promises an aesthetic and professional experience.
Strong Signals and Buy/Sell Indicators:
After completing test operations, HilalimSB produces data at various time intervals. However, we would like to emphasize to users that based on our studies, it provides the best signals in 1-hour chart data. HilalimSB produces strong signals to identify trend reversals. Buy or sell points are clearly indicated, allowing users to develop and implement trading strategies based on these signals.
For example, let's imagine you wanted to open a position on BTC on 2023.11.02. You are aware that you need to calculate which of the buying or selling transactions would be more profitable. You need support from various indicators to open a position. Based on the analysis and calculations it has made from the data it contains, HilalimSB would have detected that the graph is more suitable for a selling position, and by producing a sell signal at the most ideal selling point at 08:00 on 2023.11.02 (UTC+3 Istanbul), it would have informed you of the direction the graph would follow, allowing you to benefit positively from a 2.56% decline.
Technology and Innovation:
HilalimSB aims to enhance the trading experience using the latest technology. With its innovative approach, it enables users to discover market opportunities and support their decisions. Thus, investors can make more informed and successful trades. Real-Time Data Analysis: HilalimSB analyzes market data in real-time and identifies updated trends instantly. This allows users to make more informed trading decisions by staying informed of the latest market developments. Continuous Update and Improvement: HilalimSB is constantly updated and improved. New features are added and existing ones are enhanced based on user feedback and market changes. Thus, HilalimSB always aims to provide the latest technology and the best user experience.
Social Order and Intrinsic Motivation:
Negative trends such as widespread illegal gambling and uncontrolled risk-taking can have adverse financial effects on society. The primary goal of HilalimSB is to counteract these negative trends by guiding and encouraging users with data-driven analysis and calculable investment systems. This allows investors to trade more consciously and safely.
Volume Delta [hapharmonic]Volume Delta: Volume Delta is an indicator that simplifies how you analyze trading volumes and the percentage of buy-sell activities effortlessly.
As a trader or market analyst, understanding underlying volume and trade flows is critical. The Volume Delta indicator provides thorough insight into both the total volume and the percentage of buying versus selling within the current candlestick. This information is pivotal for those looking to gauge market momentum and sentiment more effectively.
Additionally, the Volume Delta indicator can plot the candlestick colors based on the percentage of the dominant buying or selling volume. The area between the open and close prices of the candlestick is considered 100% and fills with colors corresponding to the predominant volume at that percentage.
Volume Delta also integrates the concept of Net volume. This component is crucial as it reveals the real market sentiment by calculating the difference between the volume of trades executed at an uptick and those at a downtick.
🟠 Overview
This indicator now displays in two layouts. Recently, Tradingview introduced the "force_overlay=true" function in Pine Script , allowing plots to be moved to the main chart. Thus, all displays are from the same indicator.
🟠 USAGE
From the data displayed in 'plot.style_columns' , the peak area represents the entire volume, accounting for 100%. Within this area, there are two color levels indicating volume. If one type of volume, whether buying or selling, exceeds the other, the larger volume will be positioned behind and the smaller in front. This arrangement prevents the scenario where a higher buying volume obscures the smaller selling volume. Therefore, the two colors can be switched between the front and the back as needed.
As you can see, the 12 and 26-day Exponential Moving Averages (EMAs) are used, with the Volume Confirmation Length set at 6. Therefore, the crossing of the EMAs proceeds normally, but it is highlighted with three triangular arrows to indicate a high likelihood of a valid crossover. However, if the volume is insufficient, these markers won't be displayed, although the EMA crossover will still occur as usual. This can be useful for using volume to verify the significance of the EMA crossover.
🟠 Setting
If you enable the label, please be aware that the chart size will shrink, causing the candlestick display to become unclear. Therefore, you might need to select "Logarithmic" at the bottom right of your screen, or for mobile applications, press and hold on the price scale and choose "Logarithmic" to adjust the scale appropriately.
Enjoy!
RSIBands with BBThis indicator combines three popular technical analysis tools:
RSI Bands: These bands are based on the Relative Strength Index (RSI) and visually represent overbought and oversold zones. The indicator plots upper and lower bands calculated using a user-defined RSI level and highlights potential buying and selling opportunities near these zones.
Bollinger Bands: These bands depict volatility with a moving average (basis line) and upper and lower bands at a user-defined standard deviation away from the basis line. Narrowing bands suggest potential breakouts, while widening bands indicate increased volatility.
Williams Fractals (with Confirmation): This custom function identifies potential reversal points based on price action patterns. The indicator highlights buy/sell signals when a confirmed fractal forms (previous fractal and price crossing a Bollinger Band).
Key Features:
User-defined parameters: You can adjust the RSI level, Bollinger Band standard deviation, and fractal period according to your trading strategy.
Visual confirmation: The indicator highlights confirmed buy/sell signals based on fractal patterns and price crossing Bollinger Bands.
Flexibility: This indicator provides a combination of trend, volatility, and reversal identification tools, allowing for a multi-faceted approach to technical analysis.
How to Use:
Add the indicator to your chart.
Adjust the RSI level, Bollinger Band standard deviation, and fractal period based on your preference.
Look for buy signals when a green background appears and there's a confirmed up fractal (upward triangle) with the price crossing above the upper Bollinger Band.
Look for sell signals when a red background appears and there's a confirmed down fractal (downward triangle) with the price crossing below the lower Bollinger Band.
Disclaimer:
This indicator is for informational purposes only and should not be considered financial advice. Always conduct your own research and due diligence before making any trading decisions.
Volume Based S/R with EMA Crossover SignalsThis Pine Script indicator, titled "Volume Based S/R with EMA Crossover Signals," is designed for use on the TradingView platform and overlays on price charts to help traders identify potential buy and sell opportunities based on volume changes and EMA (Exponential Moving Average) crossovers. Let's break down its components for a detailed understanding:
Inputs
length: The number of bars used to calculate the standard deviation of the volume change. This parameter helps in identifying significant changes in volume over a specified period.
threshold: A multiplier applied to the standard deviation of volume change to determine significant spikes in volume, which are then used to identify support and resistance levels.
smoothLength: The length of the EMA used to smooth the price data, providing a clearer view of the overall price trend and helping to confirm trade signals.
fastEMALength and slowEMALength: The lengths of the fast and slow EMAs, respectively. These are used to generate crossover signals, where the crossing of the fast EMA over the slow EMA may indicate a potential entry or exit point.
Calculations
Volume Change and Standard Deviation: The script calculates the percentage change in volume from one bar to the next and then computes the standard deviation of these changes over the specified length. This process helps identify unusual volume activity, which can precede significant price movements.
Signal Generation Based on Volume: When the absolute value of the volume change divided by its standard deviation exceeds the threshold, it signals significant volume activity, potentially indicating strong support or resistance levels at previous highs or lows.
Smoothed Price: An EMA applied to the closing prices over smoothLength bars helps to confirm the trend direction and filter out noise.
EMA Crossover Signals: The script calculates two EMAs based on the fastEMALength and slowEMALength inputs. A crossover of these two averages generates potential buy or sell signals.
Logic for Buy/Sell Signals
Buy Signal: Generated when the price is above the identified support level (determined by significant volume activity), the fast EMA crosses above the slow EMA, and the price is also above the smoothed price. This confluence of conditions suggests upward momentum and potential buying opportunity.
Sell Signal: The opposite conditions generate a sell signal — when the price is below the identified resistance level, the fast EMA crosses below the slow EMA, and the price is below the smoothed price, indicating downward momentum and a potential selling opportunity.
Plotting
Support and Resistance Levels: Plotted as circles on the chart, with resistance levels in red and support levels in green, based on significant volume activity.
Smoothed Price and EMAs: The smoothed price line and both EMAs are plotted on the chart to help visually assess the trend and the crossover signals.
Buy and Sell Signals: Represented by shapes plotted on the chart, indicating the recommended trading action (buy or sell) based on the combined indicator logic.
Filling Between Support and Resistance: For visual clarity, the area between the identified support and resistance levels is filled, highlighting the range within which the price is expected to fluctuate.
This indicator offers a multi-faceted approach to trading, combining volume analysis with trend following via EMA crossovers. By identifying significant volume-based support and resistance levels and confirming trend direction with EMA crossovers and smoothed price trends, traders can make more informed decisions regarding entry and exit points. However, it's important to use this indicator as part of a comprehensive trading strategy, considering other factors such as market conditions, news, and technical analysis from other indicators.
TradesAI - Elite (Premium)This is an all-inclusive, premium indicator that focuses mainly on price action analysis, a form of looking at raw price data and market structure to analyze and capture areas of interest where price could react.
This indicator is a perfect trading companion that saves you a lot of time in trading price action. Some of the popular methods that use price action analysis are "Smart Money Concepts (SMC)", "Inner Circle Trader (ICT)", and "Institutional Trading".
🔶 POWERFUL TOOLS
The indicator combines three main tools as a trading suite:
Trendlines
Market Structure Breakouts (MSB)
Order Blocks (OBs) and Reversal Order Blocks (ROBs)
These 3 main tools are interconnected together. Below we go over each, and then explain how and why they are brought in together. Please also note that the indicator's settings have tooltips next to most of them, with more detailed information.
🔶 TRENDLINES
This indicator automatically draws the most relevant Trendlines from pivot high/pivot low (based on the defined settings) as origins, while keeping track of candle closes across these Trendlines to adjust or invalidate accordingly.
The indicator will draw all possible Trendlines up to the maximum allowed by TradingView's PineScript. It uses a bullish pivot high candle to draw downtrends, and a bearish pivot low candle to draw uptrends. The algorithm will draw the most suitable active Trendlines from those origin points.
The indicator takes the origin point as the first point of the Trendline, then starts looking for the immediate next same-type candle (bullish to bullish or bearish to bearish), to draw the Trendline between the origin candle and this newer candle.
An uptrend is a ray connecting two bearish candles, as long as the second candle has a Low higher than the low of the origin (first) candle. A downtrend is a ray connecting two bullish candles, as long as the second candle has a high lower than the high of the origin (first) candle.
Upon drawing, the indicator then starts monitoring and adjusting this Trendline, by keeping the origin always the same but changing the second point. The goal is to keep reducing the slope of the Trendline till it is at 0 degrees (horizontal line). That then makes the Trendline "final". Note that you have the option to keep all Trendlines or just show the final, in the settings.
So, the algorithm has three states for the Trendlines:
Initial: not tested, meaning price hasn't yet broken through it and closed a candle beyond it, to cause a re-adjustment of this Trendline.
Broken: a candle hard closed (opened and closed) across it but still, the direction of the trend is maintained with a new Trendline from the same origin – could be replaced (or kept on the chart as a "backside", which is what we call a broken Trendline to be tested from the opposite side) with a new Trendline from the same origin, to the newest candle that caused the break to happen, as then it becomes the new second point of that Trendline.
Final: a candle hard closed (opened and closed) across it and can't draw a new Trendline from the same origin maintaining the direction of the trend (so an uptrend becomes a downtrend or a downtrend becomes an uptrend at this point, which is not allowed). This marks the end of the Trendline adjustment for that origin.
To summarize the Trendlines algorithm, imagine starting from a candle and drawing the Trendline, then keep re-adjusting it to make its slope less and less, till it becomes a horizontal line. That's the final state.
Here is a step-by-step scenario to demonstrate the algorithm:
Notice how first an Uptrend (green ray) is drawn between point A origin pivot (picked by our smart algorithm) and point B, both marked by green arrows:
Uptrend then turned into backside (where it flips from diagonal support to resistance where liquidity potentially resides):
Then a new uptrend is drawn from the same point A origin pivot to a new point B matching the filters in settings.
Finally, it turns also into a backside and is considered final because no more uptrends could be drawn from the same point A origin point.
Unlike traditional Trendline tools, this indicator takes into account numerous rules for each candlestick to determine valid support and resistance levels, which act as liquidity zones.
Unlike conventional Trendline tools, this indicator allows the user to define the pivot point left and right length to capture the proper ones as origins, then automatically recognizes and extends lines from them as liquidity zones where a reaction is expected. Moreover, the indicator monitors those Trendlines in real-time to switch them from buying to selling zones, and vice-versa, as the price structure changes.
Features
Log vs. Linear scale switch to show different Trendlines accordingly. When updating the Trendlines, or deciding whether Touches/Hard Closes are met, it makes a difference.
Ability to show all forms of Trendlines, final Trendlines or just backside Trendlines.
Why is it used?
For experienced traders, it offers the advantage of time efficiency, while new traders can bypass the steep learning curve of drawing Trendlines manually, which could practically be drawn between any two candlesticks on the chart (many variations).
🔶 MARKET STRUCTURE BREAKOUT (MSB)
The Market Structure Breakouts (MSB) tool is a trading tool that detects specific patterns on trading charts and provides ‘take profit’ regions based on the extended direction of the identified pattern. A breakout is a potential trading opportunity that presents itself when an asset's price moves away from a zone of accumulation (i.e. above a resistance level or below a support level) on increasing volume. The most famous form of market structure breakout is double/triple tops/bottoms, or what is referred to as W or M breakouts.
See this example below of how our MSB smart algorithm picked the local bottom of INDEX:BTCUSD
Here is a step-by-step scenario to demonstrate the algorithm:
First, the algorithm picks the pivot points according to our Machine Learning (ML) model, which uses Average True Range (ATR) and Moving Averages of various types to decide. It will then signal a Market Structure Breakout (MSB):
You may either short (sell) this MSB towards the targets (dotted green lines) and/or buy (long) at the targets (dotted green lines). Usually, these targets provide scalp moves, according to our model, but they may also act as strong reversal points on the chart.
Unlike standard indicators, the MSB tool identifies patterns that may not appear in every time frame due to specific conditions that need to be met, including Average True Range (ATR) and Moving Averages at the time of creation. Once these patterns are identified, the tool gives ‘take profit’ regions in the direction of the trading pattern and even allows for trading in the opposite direction (contrarian/counter-trend scalps) once those regions are reached. A confirmed breakout has the potential to drive the price to these specific targets, calculated based on our Machine Learning (ML) model. The Targets are the measured moves placed from the breakout point.
Features
Log vs. Linear scale switch to show different MSBs accordingly based on the ratios.
Detects trading patterns with specific conditions.
Ability to specify how sensitive the pivot points are for capturing market structure breakouts.
Provides take profit regions in the extended direction of the pattern.
Allows for versatile trading styles by permitting trades in the opposite direction (contrarian or counter-trend) once the take profit region is reached.
Highlights 2 levels of interest for potential trade initiation (or as targets of the MSB move).
🔶 ORDER BLOCK (OB) and REVERSAL ORDER BLOCK (ROB)
Before diving deeper into OBs and ROBs, you may consider the following chart for a general understanding of price ladders, and how they break. This is a bearish price ladder leaving Lower Lows and Lower Highs after an initial Low and High (L->H->LL->LH). Bullish ladders are the opposite (H->L->HH->HL).
In this bearish ladder case, notice the numbers representing the highs made (being lower). While this is a clean structure, markets don't always create such clean ladders, but you may switch to a higher timeframe to see it in a clearer form (usually, you will be able to spot it there).
In SMC or ICT concepts, the "Break Of Structure (BOS)" is pretty much creating a new lower low (LL) for the bearish ladder (and the creation of a higher high (HH) for the bullish ladder). By doing so, markets are grabbing liquidity below these levels and could either continue the ladder or stop/flip it. This gives you the context of how the ladder prints.
Price usually ends the ladder with a "Change of Character (CHoCH)", which represents a BOS (to grab liquidity) followed by an aggressive move in the opposite direction, which could lead the market to close the gaps and balance out. It is considered a good practice to then target liquidity in the opposite direction when a CHoCH happens, meaning for a bearish ladder you may target the pivots marked by 3, 2 and 1 at the top (start of the ladder).
Now we move to Order Blocks (OBs) and Reversal Order Blocks (ROBs). Think of them as sniper zones or micro ladders inside the bigger ladder/structure.
Order Blocks are usually used as zones of support and resistance on a trading chart where liquidity is present, or what some traders call "potential institutional interest zones". Order Blocks can be observed at the beginning of these strong moves of BOS or the CHoCH, leaving behind a zone (one or more candles) to be revisited later to balance the market. Therefore, these are interesting levels to place Limit/Market orders (sell the peaks or buy the valleys) instead of doing so at the swing highs or swing lows of the ladder (where BOS or CHoCH happened). The idea here is that the price could go deep into the ladder's step (peak or valley), and by doing so, it usually goes to these zones.
A bullish Order Block (Valley-OB) is the last bearish candle of a downtrend before a sequence of bullish candles (thus forming a "Valley"). A bearish Order Block (Peak-OB) is the last bullish candle of an uptrend before a sequence of bearish candles (thus forming a "Peak"). Our indicator captures the full range zones of the OB meaning not only the last candle but the sequence of same-type candles immediately next to it, which creates a zone, thus the name "OB/ROB Zone". Not only does the tool mark those levels on the chart, but it also has a smart tracking algorithm to remove the appropriate levels dynamically. It will monitor, candle by candle, what is happening to all the OBs/ROBs, and update them according to how they are being tested/visited (eg. weak testing being a touch, and strong testing being a touch of the same colour candle).
Bullish Valley-OB:
Bearish Peak-OB:
The indicator follows our concept of "Zone Activation" to determine whether to mark zones with dashed or solid lines.
If we take a bearish Peak-OB as an example, notice how it first gets drawn with a dashed red line (as the algorithm monitors how far the price moved away from the zone):
As price moves away (distance based on our Machin Learning (ML) model), it turns into solid lines:
Some people prefer to enter market orders or limit (pending) orders close to the zone, while others wait for it to hit. You may wait for these zones to turn into solid lines (meaning that the price made a decent move away from it before revisiting it). It depends on your trading strategy.
When Order Block (OB) zones break instead of holding the ladder, they turn into what we call Reversal Order Blocks (ROB); our algorithm of flipping these zones where price could react from the other side of the OB. Our algorithm monitor and highlight the most suitable ones to trade, based on +30 conditions and variables by our Machine Learning (ML) models. Examples of ROBs in the SMC or ICT trading community are a "Breaker Block", a "Mitigation Block" or a "Unicorn Setup". However, our algorithm filters the zones based on many factors such as ratios of price movement before, inside and after these zones, along with many other factors.
The algorithm monitors the ratios of how price moved into and away from the OB/ROB, as well as the type of move happening, to then filter the ones that are considered of high probability to break/not do a reaction.
A bullish Valley-OB (green) turns into a bearish Valley-ROB (neon red) where you may short (sell), while a bearish Peak-OB (red) turns into a bullish Peak-ROB (neon green) where you may long (buy).
Example of a bullish Valley-OB that turned into a bearish Valley-ROB:
Features
Log vs. Linear scale switch to show OBs/ROBs accordingly based on the ratios and the price action around these zones (before and after creation).
Uses our Machine Learning (ML) model to determine relevant Order Blocks (OBs) to show or hide based on price action.
Considers distribution and accumulation candles to find relevant Order Blocks.
Various types of triggers to mark those Order Blocks and their zones: breakout, close, hard close (open and close) or full close (low, high, open and close).
Monitors the 1:1 expansion of price from key areas of interest, which would change the importance of the zones through our concept of “Zone Activation”.
Allows for customization in the settings to display different types of Order Blocks (e.g., tested or untested).
Marking and invalidating levels based on many variables, including single or multiple candle zones, touching/closing beyond specific levels, weak/strong testing criteria, price tolerance % (near a level), and many more.
Provides color-coded visual representation for easier interpretation.
Why is it used?
Order Blocks (OB) and Reversal Order Blocks (ROB) represent the building blocks of price ladders, in conjunction with Swing Highs and Swing Lows. By identifying where liquidity is potentially present, they become common targets for big market players. Additionally, they provide clear invalidation points based on various types of candle closes, such as hard closes or simply a candle close.
One strategy that could be used is to open positions at these OB or ROB Levels as long as the chart maintains the trend (ladder), for a potentially higher win rate (or against it for a quick scalp). Be mindful of the breaking of a ladder or the building of a new one. A ladder breaks with a hard close (open and close) of a candle across the closest two levels; a ladder builds by not breaking back down across the levels it has tested. By definition, strong ladders will have a few untested levels and come back to wick them but still retain the structure of the laddering direction (trending with Lower Lows + Lower Highs or Higher Lows + Higher Highs).
🔶 COMBINING ALL TOOLS
In summary, Trendlines could be great tools to give you a general context of whether the price is laddering up or down. Once you spot the ladder, your goal is to either trade in its direction (not to go against the trend) or to counter-trend trade (contrarian). To do so, you could use the MSB tool to spot these BOS/CHoCH. And to give you more precise entries, you may rely on the OB/ROB zones which usually mesh over the ladder, to provide a sniper entry!
🔶 RISK DISCLAIMER
Trading is risky, and most day traders lose money. The risk of loss in trading can be substantial. Decisions to buy, sell, hold or trade in securities, commodities and other investments involve risk and are best made based on the advice of qualified financial professionals. Past performance does not guarantee future results. All content is to be considered hypothetical, selected after the fact, in order to demonstrate our product and should not be construed as financial advice. You should therefore carefully consider whether such trading is suitable for you in light of your financial condition.
SFX Signals & Overlays [YinYangAlgorithms]SFX Signals & Overlays aims to help traders Identify Buy & Sell locations, Reversals, Volatility Zones, Support & Resistance and Overbought & Oversold Zones. All of these may work in harmony with each other by helping to identify when to enter and exit a trade; as well as helping to determine the risk / reward the trade may ensue.
SFX Signals & Overlays’s Buy & Sell signals are momentum based, meaning the Initial ‘Buy’ & ‘Sell’ signal may not be exactly where you want to get in/out. What may occur is the initial signal appears, a few more continuation signals appear afterwards (always in a chain); and once the momentum has ended a ‘Reversal’ signal appears. The reversal is there to help signify that the ‘opportune’ time to buy/sell may have passed and the price may now correct in the opposite direction. This Indicator aims to Buy Low and Sell High; and therefore the Buy signal momentum may occur as the price is either about to fall, currently falling or has started to consolidate. When the Buy signal momentum has ended, this means the momentum is at an impasse, but is favoring Buy momentum and a reversal (correction) may occur.
Buying & Selling at reversal signals may be profitable, however it may be less risky to DCA into your long / short positions during the Buy/Sell momentum signals instead. Let's get into the Tutorial so you can better understand how our SFX Signals & Overlays indicator works.
Tutorial:
Our example above showcases how our SFX Signals & Overlays Indicator looks on the default settings ‘Medium’ for each of our Algorithm Settings:
Trend Sensitivity
Signal Sensitivity
Zone Sensitivity
All of our Algorithm Settings feature 3 different speeds:
Fast
Medium
Slow
These speeds may be applied to each Algorithm Setting individually and affect how quickly they adapt to the current market's momentum. This allows you to tailor this Indicator to fit your trading style by adjusting it to meet your needs accordingly. If you are someone who likes to swing trade on the 1-5 minute timeframe, you may find better confluence with all settings on ‘Fast’. Medium term holders and traders may find better results with all settings on ‘Medium’. Likewise, long term investors may find best results with all settings on ‘Slow’. However, this shouldn’t stop you from finding your own best result by adjusting them individually to meet your own unique trading style.
SFX Signals & Overlays helps you identify shifts in momentum by displaying Momentum Signals. Momentum Signals are shown by either a Green or Red Triangle. Momentum Signals can continue for quite some time until the momentum has ended. We rank the first Momentum Signal from 1/5 to 5/5 for their strength and may help determine the chances of the momentum shift occurring. Once the Momentum Signals have ended we display a Reversal Signal. This Reversal Signal helps signify that the Momentum has ended. When the Momentum ends it means that a reversal may have started. This reversal may mean the price will continue in the direction the signal mentioned; or it may mean the price will consolidate. If the price consolidates then the signal is void as when the consolidation ends the price could go in either direction. If you notice consolidation occurring after a Reversal Signal; wait for more confirmations as it is now too risky.
Our Indicator displays different evaluations for each INITIAL Buy and Sell signal. These evaluations rank the current start of the signal from 1-5; 1 being the lowest and least reliable, 5 being the highest and most reliable. These rankings aren’t indefinite and are simply an evaluation at the time of the initial signal. We may potentially provide evaluations at the reversal later on if requested enough. When a Buy or Sell signal occurs this defines where momentum is occurring in this direction. This momentum is indicated by momentum signals shown through red / green triangles. These triangles indicate that this momentum is present. When these momentum signals end is when the Reversal Signal appears indicating that since this momentum has ended, there may be a decent chance of a reversal occurring. There also adherently may be the potential of consolidation occurring; but generally it means there is either a reversal, or consolidation + then a reversal or a continuation; however it may be apparent that the momentum has ended.
ES:
NQ:
BTC:
If you refer to the 3 examples above, we show how the ES, NQ and BTC look within a 5 minute scalping example. Essentially you’d make your decision on the Buy / Sell signal, the momentum signals, the Reversal Signals, the Trend Colors as well as other oscillators and Due Diligence.
Remember, there’s no such thing as a perfect entry / exit, the more you understand about trading and do your own Due Diligence the better. These Buy and Sell as well as Reversal signals attempt to locate and rank momentum shifts to help you identify where the momentum may be ending and reversing in the opposite direction.
Our zones defined by the Outer (red) and Inner (green) are representations of not only Support and Resistance locations, but likewise Overbought and Oversold locations. These zones help in multiple ways. The hard lines that define each zone's start / end are very useful locations of support / resistance which may indicate where the price will bounce off of. Likewise, when the price is within these zones it represents the price being Overbought or Oversold. Then the price is for instance within the Red Resistance Zone, what generally may happen is the price will correct quickly to get back to the ‘Black Empty Zone’ between the Red and Green zones; OR it may consolidate sideways until it has entered the ‘Black Empty Zone’. This is how the price may redeem itself back to being valued correctly. These zones help you identify and understand, in concatenation with our signals when and how much the price may move.
Our Settings are minimalistic so you don’t need to worry and get overwhelmed about changing values and trying to fiddle to find which values works the best for what. Our Algorithms will take care of all of that for you. Simply select the speeds for your Trend, Signals and Zones and you’re good to start trading! You can likewise customize what information is visible to you and the colors to better customize your experience.
Fast:
Medium:
Slow:
The 3 examples above display what the same portion of the chart looks like when Trend, Signal and Zone Sensitivity is changed from Fast, Medium and Slow.
As you can see, they all look quite different in the results they produce. By default all settings are set to Medium, however they can all be individually changed to suit your trading style and needs.
Our Indicator offers many different alert options which may help you stay informed with how the market is moving and any momentum changes that may occur.
Settings:
1. Algorithm Settings
Trend Sensitivity (Fast, Medium, Slow): Trend Sensitivity refers to how quickly the Trend Bar Colors change. Fast: will change colors very quickly if it senses momentum is changing. Medium: will change almost as quickly as Fast, however, rather than swapping from Bullish to Bearish momentum right away it has an intermediate 'Neutral - Slightly Bullish (Yellow)' and 'Neutral - Slightly Bearish (Orange)'. This way you can better visualize when the momentum is dying in the trend and starting back up by having these trend 'Neutral/Consolidation' areas. Slow: will attempt to only change Trend Bar Colors when the momentum has surely shifted. This may result in a bit of lagging behind.
Signal Sensitivity (Fast, Medium, Slow): Signal Sensitivity refers to how quickly the Buy & Sell Momentum Signals & Reversal Signals appear. These signals are meant to appear when it thinks the price may reverse, but the speeds refer to how much of a reversal they think may happen. Fast: will attempt to locate any and all momentum swings. Medium: will attempt to only locate momentum swings which may drive the price up considerably. Slow: will attempt to locate only the most extreme momentum swings. This may result in some potentially good ones missed however; but the ones it finds may have a higher probability of occuring.
Zone Sensitivity (Fast, Medium, Slow): Zone Sensitivity refers to how quickly the Zones expand based on price movement. These zones may be useful for not only seeing Support & Resistance; but also identifying when it is Overbought & Oversold; as well as visualizing volatility between the Black (Empty area) and the zones. The lines that separate each zone are the Support and Resistance locations; the area within the zones are simply the spacing between these Support and Resistance locations. However, the further the price is to the outer zones does represent Overbought and Oversold. Fast: will expand very quickly. This causes the price to be within the Black (Empty area) more often. This may be useful for finding extremities in price movement which may have a better chance of correcting. Medium: moves fast but not anywhere close to as fast as 'Fast'. Medium will hold its values in an attempt to be as accurate as possible for identifying Support and Resistance locations. Slow: will expand very slowly. This may be useful for identifying Support & Resistance as well as Volatility targets on higher time frames since these zones move much slower.
2. Display Settings:
Show Trend Bar Colors: Trend Bar Color are a way of seeing how the Trend is holding up on a bar by bar basis. This may be useful for seeing momentum starting, ending or simply dying down before any signals actually appear.
Signal Text Display (Both, Buy & Sell, Reversals, None: Signals are a way of seeing potential changes in momentum and when they have actually occurred. Our signals also rank from 1/5 to 5/5 how strong of a chance this momentum change may occur (only at the time of the signal, not at the time of the reversal). These may be useful as potential Entry and Exit locations; as well as when you see the reversal, you know that this momentum change has either begun or a consolidation may be occurring. If a consolidation occurs, the signal is no longer valid as the price can now go either way and it is best to wait for more signals or other technical analysis to determine momentum and movement.
Zone Display (All, Outer + Middle, Inner + Middle, Outer, Middle, Inner, None): Zones are composed of 3 areas above and below. These areas attempt to project Support & Resistance locations as well as display when the Price is Overbought and Oversold. You can specify which zones you wish to view, however all are important.
3. Color Settings:
Buy Color: This is the color of all Buy Signals and Zones.
Sell Color: This is the color of all Sell Signals and Zones.
Buy Reversal Color: This is the color of all Buy Signal Reversals.
Sell Reversal Color: This is the color of all Sell Signal Reversals.
If you have any questions, comments, ideas or concerns please don't hesitate to contact us.
HAPPY TRADING!
Time Relative Volume Oscillator | Flux Charts💎 GENERAL OVERVIEW
The relative volume indicator aims to improve upon the default existing relative volume indicator by comparing volumes between previous trading sessions rather than previous candles. As such, it works best on lower time frames as there is more data to compare with. The purpose of the indicator is to show how the current bar’s volume compares to the volume at the same time on previous trading days.
There exists a couple different modes and combinations that each provide a different perspective on the trading volume.
Oscillator mode
Oscillator mode starts with the same relative volume calculation, but adds two EMAs of different lengths that diverge and converge. Like the MACD, it plots the difference as a histogram. This functions as an easy way to view when relative volume is increasing or decreasing.
How to use:
The oscillator oscillates between -1 and 1. It moves along with volume direction, so this mode can be used to view the current volume direction in a lagging fashion. In oscillating markets, this indicator can give an idea of how buy/sell volume is moving and where it currently stands. Small arrows mark where reversals are predicted, when the histogram crosses over 0. The biggest pitfall of this mode is that, in a straight trending market, the two EMAs converge and it gives a false reversal signal.
Delta mode
Delta volume mode is a step up from the buy/sell volume mode. It separates both sides into the top and bottom, while also displaying the actual volume behind it in a semi transparent overlay. The best feature, however, is the delta oscillator. This oscillator fluctuates depending on how buy/sell volume is changing and plots bullish/bearish labels when the dominant side (bullish/bearish) changes. The signals, while a bit common, can sometimes dictate large direction changes, started by a dominant volume switch.
On top of different display modes, there is also one more volume mode: buy/sell volume. Instead of only showing the total volume and relative volume, it calculates and separates buying and selling volume.
This volume mode displays differently in all three viewing modes, but the basic principle is the same. It adds a vital piece of information to the chart without adding clutter. The calculation for buy/sell volume uses the candle wicks and body to compare bullish and bearish movement.
Classic mode
Classic mode takes the default volume indicator and improves upon it by also displaying the relative volume on top of the actual volume. Relative volume is calculated similarly between the three display modes: simply by comparing the current bar’s volume to the volume at the same time during previous trading days. Classic mode displays this “relative volume” as well as a simple EMA over top of the actual trading volume.
Originality
The script improves upon the existing relative volume indicator by using previous trading days rather than previous candles to generate the relative volume. On top of that, the calculation methods are unique, using different formulas like variations of the sigmoid function to smooth noise. The main issue this script aims to fix is that towards the start or end of the day relative volume indicators all see spikes as volume grows into close. The new relative volume calculations fix this problem and show what the “true” relative volume is because they compare the current bar to the “same” bar on previous trading sessions.
TanHef RanksTanHef Ranks: A numeric compass to market tops and bottoms.
█ Simple Explanation:
This indicator is designed to signal 'buy low and sell high' opportunities through numerical rankings, where larger numbers represent stronger signals. These numbered rankings are negative for potential ‘buy’ opportunities and positive for possible ‘sell’ moments.
█ Understanding Numerical Rankings:
The numerical rankings (from +18 to -18) identify and take advantage of market tendencies of prices reverting back to their historical average, also known as mean reversion. It operates on a simple principle: smaller values signal a potential for short-term mean reversion, while larger values suggest a probable shift in both short and long-term mean reversion. These values are derived from a careful analysis of both short and long-term mean reversions, providing traders with a nuanced understanding of market movements.
█ Analyzing Numeric Ranking Extremes:
The historical occurrences of numeric rankings are recorded into a table to help identify the previous extreme rankings (for example anything -10/+10 is considered extreme), which historically signal key turning points in market movements. The previously extreme rankings offer insights into potential end-of trend scenarios or trend reversals, thereby attempting to make high-probability trading decisions.
█ Risk Management Integration:
This indicator combined with disciplined risk management, offers a more secure trading approach. Applying a stop-loss near lows after entries on the oversold side (negative rankings) protects from large losses. Additionally, once prices reach overbought territories (positive rankings) applying a tight stop-loss helps to lock in profits while continuing exposure to the aggressive upwards momentum.
█ Calculation Methodology:
The indicator evaluates market momentum by analyzing upward and downward movements. It does this by referencing the 10 'length' input parameters, where 'length' refers to the number of price bars referenced. Each 'length' increases in value to analyze trends from short to long-term. A numerical rank is given when these trends align, with higher ranks requiring agreement across both short and longer-term lengths. This alignment across different time periods helps to ensure the indicator's signals are robust.
█ Indicator Stability (No Repainting):
When a price bar closes, its associated ranking is fixed and remains unchanged (some other indicators repaint, which means signals can change after a bar closes). While a price bar is open, its numeric ranking may increase in absolute value but never decrease towards zero, ensuring further stability. This stability and consistency is crucial for reliable back-testing and real-time analysis. Notably, in the highly improbable scenario where a ranking may exhibit both a positive and negative value simultaneously during extreme volatility, both the positive and negative numeric ranking is displayed.
█ Practical Application:
Pro Tip: Use at a minimum -4/+4 rank as potential basic buy/sell signals. Higher absolute numeric rankings are ideal as they indicate stronger reversal potential due to higher rankings identifying longer period reversals.
Entry Scenario: Refer to the chart below. The -9 ranking (3 occurrences in the table) indicates potential oversold conditions, suggesting a buy. Add a stop-loss near recent lows to protect against losses.
Exit Scenario: Refer to the chart below. The +7 ranking (6 occurrences in the table) indicates potential overbought conditions, suggesting a sell. Place a stop-loss to protect profits and remain exposed to further gains.
█ Indicator Settings:
Additional Timeframe: Allows users to include an extra timeframe's data in the analysis for more nuanced insights.
Lengths: Defines the periods over which the indicator calculates its rankings, affecting the sensitivity and time horizon of the signals.
Max Number Calculated: Sets the upper limit for the numerical rankings the indicator can output, tuning the extremity of the signals it identifies. (Reducing improves indicator load time)
Visual Styling (Current Timeframe): Customizes the appearance of the indicator's output on the chart for the selected timeframe, enhancing visibility and readability.
Table Settings: Adjusts the display properties of the table that lists numerical rankings, including its visibility, location, and size on the chart.
Indicator Display Type: Selects the mode in which the indicator presents its data, either overlaying the main chart or in a separate pane as an oscillator.
Alerts: Configures the conditions and frequency at which the indicator will trigger trading alerts, based on the numeric rankings and user-defined parameters.
█ How To Access:
You can see the Author's Instructions below to get access.
Whalemap [BigBeluga]The Whalemap indicator aims to spot big buying and selling activity represented as big orders for a possible bottom or top formation on the chart.
🔶 CALCULATION
The indicator uses volume to spot big volume activity represented as big orders in the market.
for i = 0 to len - 1
blV.vol += (close > close ? volume : 0)
brV.vol += (close < close ? volume : 0)
When volume exceeds its own threshold, it is a sign that volume is exceeding its normal value and is considered as a "Whale order" or "Whale activity," which is then plotted on the chart as circles.
🔶 DETAILS
The indicator plots Bubbles on the chart with different sizes indicating the buying or selling activity. The bigger the circle, the more impact it will have on the market.
On each circle is also plotted a line, and its own weight is also determined by the strength of its own circle; the bigger the circle, the bigger the line.
Old buying/selling activity can also be used for future support and resistance to spot interesting areas.
The more price enters old buying/selling activity and starts producing orders of the same direction, it might be an interesting point to take a closer look.
🔶 EXAMPLES
The chart above is showing us price reacting to big orders, finding good bottoms in price and good tops in confluence with old activity.
🔶 SETTINGS
Users will have the options to:
Filter options to adjust buying and selling sensitivity.
Display/Hide Lines
Display/Hide Bubbles
Choose which orders to display (from smallest to biggest)
ATR & RSI ConfluenceIntroducing the "Confluence Strategy": Your Go-To for Savvy Trading!
1.ATR Trailing Stop - Your Market Volatility Compass:
What's ATR? Think of it as the pulse of market excitement. It measures how wildly prices are swinging.
ATR Trailing Stop: This is where the magic happens. Picture it as a dynamic line that dances with the price. When the market climbs, it climbs; when the market drops, it drops. It's your trend-tailored safety net, ensuring you ride the waves but bail before the tide turns!
2. RSI - The Market's Mood Ring:
RSI Lowdown: It's like a speedometer for price moves. Ranges from 0 to 100 – the closer to 100, the more it hints that prices might take a breather (overbought), and the closer to 0, the more it suggests prices might jump back up (oversold).
RSI Filter in Action: We're flipping the script here. No selling if the market's not in the oversold zone, and no buying if it's not feeling overbought. We're after that sweet momentum!
3. HEMA and Hull EMA - Your Trend Trackers:
HEMA & Hull EMA: These aren't your grandpa's moving averages. They're faster, sharper, and ready to catch the latest price trends. Like a hawk eyeing its prey, they zero in on the latest market moves.
4. Buy/Sell Signals - Where the Thrill Happens:
Buying (LONG): It's go-time when:
The price is strutting above HEMA.
RSI is strutting its stuff above the overbought catwalk.
ATR trailing stop is nodding along with an uptrend.
And hey, you're not already riding the long wave.
Selling (SHORT): You make your move when:
The price is dipping below HEMA.
RSI is lurking below the oversold alley.
ATR trailing stop is signaling a downhill.
And you're not already surfing the short tide.
How to Rock this Strategy:
New traders, tune in! This strategy's like a symphony of indicators – trend (HEMA and Hull EMA), momentum (RSI), and market volatility (ATR) – all harmonizing to cue your entry points. It's about syncing with the market's rhythm to up your trade game.
Absolutely, let's fine-tune it to a snappier beat:
Rock Your Trades with "Confluence Strategy," MACD & Volume Oscillator!
🔥 MACD: Set at 72/144 for a Smooth Groove:
Think of MACD (72/144 settings) as your market groove detector. It's calibrated to catch longer-term trends and momentum, perfect for harmonizing with our "Confluence Strategy." This setting helps smooth out market noise, giving you a clearer picture of the trend.
🎛️ Volume Oscillator: Your 0% Beat Check:
The Volume Oscillator is your go-to for checking the market's pulse. It's simple: look for it to be above 0% when considering a trade. This indicates that the market is vibing with enough volume to support your move, adding an extra layer of confidence to your strategy.
🚀 Trading Symphony:
Together, "Confluence Strategy," MACD (72/144), and a positive Volume Oscillator create a powerful trio. They align your trades with the market's rhythm and volume energy, setting you up for potentially harmonious and profitable trades.
Remember, the best tunes are played with practice. Test this setup, feel its rhythm, and when you're ready, let your trades sing on the market charts!
The Real Koops - Darvas Box v2.1What Is the Darvas Box?
The Darvas Box strategy was developed by Nicholas Darvas. Aside from being a well known dancer, he began trading stock in the 1950s. Based on his success in trading, he was approached to write a book on his strategy. The book, “How I Made $2,000,000 in the Stock Market,” outlines his approach together with “You can still make it in the market”.
Darvas Box Implementation
The intend behind the Darvas box was for it to be used for rapidly rising technology stocks, and in fact it was never tested or used by Darvas for Commodities. This implementation of the Darvas Box was created specifically in support of Commodity Trends, which tend to be very volatile over long periods of time. The main ones for an uptrend (e.g. longing the market. Shorting the market would work exactly the opposite):
1. When the price of a rapidly rising stock (pls note rapidly rising is key - we are not interested in a sideways trend) is reaching a resistance point, which is does not surpass for three or more consecutive days, that point represents the top of the box.
2. If, after falling from the upper limit, the stock reaches a downward resistance point which it does not penetrate for three of more consecutive days, that level represents the bottom of the box.
3. A stock is in a rising trend when it is in the topmost box. If it remains there, its price fluctuations should be ignored, and the stock is a HOLD.
4. If the price of the stock moves above the top of this topmost box, this stock becomes a BUY. A 10% stop loss should be set at the breakout.
5. Having formed a new higher box, if the price falls below the bottom into the stop loss area of this box, the stock is a SELL.
6. There is no reason to HOLD or BUY a stock that is not in its topmost box.
7. In case a candle pierces out of the top of the box while establishing the bottom of the box, the box is invalidated.
8. If the Box is broken out of on the top, the color is Yellow. If the Box is broken out of on the bottom, the color is Blue.
9. If a Box is being formed in the current timeframe, it is colored Grey, and has clear Buy and Stop Loss indicators so that the user knows how to configure his/her Broker.
10. All parameters for the implementation have been made configurable, so that users can tweak both the presentation of the boxes (background color, border width and style) as well as the configuration of the breakout %, stop loss %, textual presentation and box validation e.g. display arrows where the top and the bottom of the box was drawn, draw boxes only from All Time High back test after a configurable number of years, the number of boxes to be drawn from the last box etc.
11. In addition, two other key principles are critical for application of the indicator:
1. The stock’s price must be at or above its ATH for the past 3 years or more.
2. The volume profile needs to indicate a rapidly growing volume or insider buying (e.g., a volume spike).
How is this implementation different from others?
This implementation holds fully true to the way Darvas described his Darvas Box in his books, but applies it to Commodities. It is in addition, highly configurable, so that it can be used to debug itself (at which points have box boundaries been drawn), and it provides Buy/Sell/Stop Loss levels for entries and exits – again, highly configurable, with defaults set as per Darvas’ books.
Finally, it works over daily to quarterly timeframes (it is not suitable for high frequency trading).
How to use this Indicator?
First, use it with the default settings. Once a grey box is drawn for the current timeframe for the commodity you are interested in investing in (based on Darvas principles outlined above), this box will indicate a Buy level and a Stop loss level based on the principles described above, allowing you to make a purchase decision for that commodity asset accordingly. Then, stay the trade. As the stock continues to move up, more Darvas Boxes will be drawn with new Buy levels and stop loss levels – either add to your position or keep the original investment in play. Once a trend reversal occurs, the Stop loss level will be used to get you out of the trade.
Second, once you are comfortable with this trading methodology, you can refine the script to use a color scheme as you prefer for your Tradingview, as well as set buy, stop loss and sell levels, aligned with your own level of comfort to deal with volatility.
If you wonder why a certain box was drawn at certain levels, you can use the green and red arrows to show the levels based upon which the boxes were drawn.
Supply Demand Profiles [LuxAlgo]The Supply Demand Profiles is a charting tool that measures the traded volume at all price levels on the market over a specified time period and highlights the relationship between the price of a given asset and the willingness of traders to either buy or sell it, in other words, highlights key concepts as significant supply & demand zones, the distribution of the traded volume, and market sentiment at specific price levels within a specified time period, allowing traders to reveal dominant and/or significant price levels and to analyze the trading activity of a particular user-selected range.
In other words, this tool highlights key concepts as significant supply & demand zones, the distribution of the traded volume, and market sentiment at specific price levels within a specified time period, allowing traders to reveal dominant and/or significant price levels and to analyze the trading activity of a particular user-selected range.
Besides having the tool as a combo tool, the uniqueness of this version of the tool compared to its early versions is its ability to benefit from different volume data sources and its ability to use a variety of different polarity methods, where polarity is a measure used to divide the total volume into either up volume (trades that moved the price up) or down volume (trades that moved the price down).
🔶 USAGE
Supply & demand zones are presented as horizontal zones across the selected range, hence adding the ability to visualize the price interaction with them
By default, the right side of the profile is the volume profile which highlights the distribution of the traded activity at different price levels, emphasizing the value area, the range of price levels in which the specified percentage of all volume was traded during the time period, and levels of significance, such as developing point of control line, value area high/low lines, and profile high/low labels
The left side of the profile is the sentiment profile which highlights the market sentiment at specific price levels
🔶 DETAILS
🔹 Volume data sources
The users have the option to select volume data sources as either 'volume' (regular volume) or 'volume delta', where volume represents all the recorded trades that occur at a given bar and volume delta is the difference between the buying and the selling volume, that is, the net demand at a given bar
🔹 Polarity methods
The users are able to choose the methods of how the tool to take into consideration the polarity of the bar (the direction of a bar, green (bullish) or red (bearish) bar) among a variety of different options, such as 'bar polarity', 'bar buying/selling pressure', 'intrabar (chart bars at a lower timeframe than the chart's) polarity', 'intrabar buying/selling pressure', and 'heikin ashi bar polarity'.
Finally, the interactive mode of the tool is activated, as such users can easily modify the intervals of their interest just by selecting the indicator and moving the points on the chart
🔶 SETTINGS
The script takes into account user-defined parameters and plots the profiles and zones
🔹 Calculation Settings
Volume Data Source and Polarity: This option is to set the desired volume data source and polarity method
Lower Timeframe Precision: This option is applicable in case any of the 'Intrabar (LTF)' options are selected, please check the tooltip for further details
Value Area Volume %: Specifies the percentage for the value area calculation
🔹 Presentation Settings
Supply & Demand Zones: Toggles the visibility of the supply & demand zones
Volume Profile: Toggles the visibility of the volume profile
Sentiment Profile: Toggles the visibility of the sentiment profile
🔹 Presentation, Others
Value Area High (VAH): Toggles the visibility of the VAH line and color customization option
Point of Control (POC): Toggles the visibility of the developing POC line and color customization option
Value Area Low (VAL): Toggles the visibility of the VAL line and color customization option
🔹 Supply & Demand, Others
Supply & Demand Threshold %: This option is used to set the threshold value to determine supply & demand zones
Supply/Demand Zones: Color customization option
🔹 Volume Profile, Others
Profile, Up/Down Volume: Color customization option
Value Area, Up/Down Volume: Color customization option
🔹 Sentiment Profile, Others
Sentiment, Bullish/Bearish: Color customization option
Value Area, Bullish/Bearish: Color customization option
🔹 Others
Number of Rows: Specify how many rows the profile will have
Placment: Specify where to display the profile
Profile Width %: Alters the width of the rows in the profile, relative to the profile range
Profile Price Levels: Toggles the visibility of the profile price levels
Profile Background, Color: Fills the background of the profile range
Value Area Background, Color: Fills the background of the value area range
Start Calculation/End Calculation: The tool is interactive, where the user may modify the range by selecting the indicator and moving the points on the chart or can set the start/end time using these options
🔶 RELATED SCRIPTS
Volume-Profile
Volume-Profile-Maps
Volume-Delta
SMA/EMA/RSImagic 36.963 by IgorPlahutaTwo Elements in this script:
Alerts: These are notifications that draw your attention to specific market conditions. There are two types:
RSI Higher Lows or Lower Highs: This alert triggers when the Relative Strength Index (RSI) forms higher lows or lower highs.
RSI Exiting 30 (Up) or RSI Exiting 70 (Down): These alerts activate when the RSI crosses the 30 threshold upwards or the 70 threshold downwards.
ALL BUY/SELL: to catch both of them with one setting
To Set Up an Alert: To configure an alert, select the one relevant to your trading strategy, choose the "Greater than" option, and input a value of "0" (this essentially activates the alert). Adjust other settings as per your requirements.
Please note that these alerts should be used in conjunction with a system you trust for confirmation.
Moving Averages: This involves monitoring several moving averages:
SMA12, SMA20, EMA12, EMA20: These moving averages are highlighted with background colors to help you quickly identify changes or crossovers. They are superimposed on each other for easy comparison.
SMA 50, SMA200: These moving averages are also highlighted with background colors to spot crossovers, and their lines change color depending on their direction (falling in red or rising in green).
Enjoy using these tools in your trading endeavors!