[Suitable Hope] Crypto Upside Model 3.0The "Crypto Upside Model 3.0" indicator dynamically calculates the potential price of any cryptocurrency based on various percentages of Ethereum or Bitcoin's market capitalization.
By fetching and analyzing marketcap data from TradingView sources, it allows traders to visualize potential price targets if their chosen cryptocurrency reaches specific market dominance levels. This tool is designed for daily timeframe analysis and can be used to set informed price expectations and strategic investment goals, providing valuable insights for long-term investment planning.
Why using the Crypto Upside Model 3.0?
Strategic Planning: Helps traders and investors set realistic price targets and investment goals by visualizing potential market cap scenarios.
Informed Decision-Making: Provides a data-driven approach to understanding how a cryptocurrency might perform relative to major assets like Bitcoin and Ethereum.
Customizable Analysis: Allows users to choose different comparison assets (ETH or BTC) and visualize various market cap dominance percentages, offering tailored insights.
Daily Timeframe Focus: Ideal for swing traders and long-term investors who operate on a daily analysis timeframe, providing relevant and actionable data.
Bull Markets: Identify potential price targets if your cryptocurrency's market cap increases significantly.
Bear Markets: Assess how much value could be retained relative to major cryptocurrencies.
Strategic Entry/Exit Points: Use the visualized targets to plan entry or exit points in your trading strategy.
Comparative Advantage
Dynamic Adaptation: Unlike fixed indicators, this tool adapts to any active chart, making it versatile for multiple cryptocurrencies.
Market Cap Insights: Provides a unique perspective by linking price targets to market cap dominance, a critical factor in the crypto market.
User Instructions
Setup: Add the " Upside Model 3.0" indicator to your TradingView chart.
Configuration: Use the input settings to select the comparison cryptocurrency (ETH or BTC) and enable the desired market cap percentage plots.
Analysis: The indicator will display potential price targets based on the selected market cap percentages, providing a visual guide for setting price expectations.
Limitations
Marketcap Data Availability: The indicator relies on marketcap data from TradingView, which may not be available for all cryptocurrencies. If the data is unavailable, the indicator will not function for that asset. This tool is more likely to work with older, established cryptocurrencies, as marketcap data for newer cryptocurrencies may not yet be available.
Daily Timeframe Restriction: The indicator is designed to work exclusively on the daily timeframe, limiting its applicability for intraday trading.
Assumptions of Market Dynamics: The calculations assume a direct correlation between market dominance and price, which may not account for other market dynamics and external factors influencing prices.
Data Accuracy: The accuracy of the indicator depends on the reliability of the data provided by TradingView, which may sometimes experience delays or inaccuracies.
Currently available cryptocurrencies: Bitcoin, Ethereum, Solana, Binance Coin, Cardano, Ripple, Polkadot, Avalanche, Chainlink, Litecoin, Dogecoin, Terra, Uniswap, VeChain, Stellar, Internet Computer, Hedera, Filecoin, Monero, Aave, TRON, NEAR Protocol, Compound, Maker,... For all compatible cryptocurrencies, please consult CRYPTOCAP's documentation.
Final notes
Although various sources ask a payment or user data for similar kind of private indicators, this one is entirely free and open source. "Uncanny" isn't it? I hope this indicator will provide you value. Feel free to leave a message if you have any questions or constructive feedback.
Examples of how I use this indicator
When using ETH's historical price as a reference compared to Bitcoin's marketcap, we can notice that price generally has been held between the +-30% and 50% lines of BTC's marketcap. If history is repeating again, we can expect major resistances around the 50% looking ahead into the future. This for me would be a great area to potentially reduce my ETH spot position.
When using SOL's historical price action, we can notice that the 15% line of ETH's marketcap has been a top in the previous cycle. Today SOL (July 2024), is back at this level. Could this be a top again or could price break this 15% level and head perhaps towards 30% which currently sits around $260? Time will tell.
These are 2 simple example of how I interpret the data. I'm keen to hear what other findings with other pairs you can find.
피봇 포인트와 레벨
Visible Range Support and Resistance [AlgoAlpha]🌟 Introducing the Visible Range Support and Resistance 🌟
Discover key support and resistance levels with the innovative "Visible Range Support and Resistance" indicator by AlgoAlpha! 🚀📈 This advanced tool dynamically identifies significant price zones based on the visible range of your chart, providing traders with crucial insights for making informed decisions.
Key Features:
Dynamic support and resistance levels based on visible chart range 📏
User-defined resolution for tailored analysis 🎯
Clear visual representation of significant key zones 🖼️
Easy integration with any trading strategy 💼
How to Use:
🛠 Add the Indicator : Add the indicator to favourites. Adjust settings like resolution and horizontal extension to suit your trading style.
📊 Market Analysis : Identify key support and resistance zones based on the highlighted areas. These zones indicate significant price levels where the market may react.
How it Works:
The indicator segments the price range into user-defined resolutions, analyzing the highest and lowest points to establish boundaries. It calculates the frequency of price action within these segments, highlighting key levels where price movements are least concentrated (areas where price tends to pivot). Customizable settings like resolution and horizontal extension allow for tailored analysis, while the intuitive visual representation makes it easy to spot potential support and resistance zones directly on your chart.
By leveraging this indicator, you can gain deeper insights into market dynamics and improve your trading strategy with data driven support and resistance analysis. Happy trading! 💹✨
[SGM Volatility Lvl]Choppiness Index (CI)
The Choppiness Index is a technical analysis tool used to determine whether a market is trending or consolidating. CI values range between 0 and 100:
- Higher values (close to 100) indicate a choppy market (i.e., the market is consolidating and not trending strongly).
- Lower values (close to 0) signify a trending market (either up or down).
In this script:
- CI values above 62 are considered to represent high volatility.
- CI values below 28 are viewed as representing lower volatility or consolidation.
How the Indicator Works
Choppiness Index Calculation
The CI is calculated using the average true range (ATR) and the high-low range over the specified length:
ci = 100 * math.log10(math.sum(ta.atr(1), length_line) / (ta.highest(length_line) - ta.lowest(length_line))) / math.log10(length_line)
Volatility Determination
The script determines the market's volatility state based on CI:
if ci >= 62
ischarge := 2
if ci <= 28
ischarge := 0
- ischarge = 2 indicates high volatility.
- ischarge = 0 indicates consolidation.
Line Setup
Lines are set on the chart based on the market's volatility:
- If CI increases and indicates high volatility, a line (colored with `volcolor`) is drawn at the close price of the bar.
- If CI decreases and indicates consolidation, a line (colored with `conColor`) is drawn at the close price of the bar.
Line Extension
The lines are automatically extended to the next indicator update or bar:
for i = 0 to array.size(ray) - 1
if i < array.size(ray) - 1
current_line = array.get(ray, i)
next_line = array.get(ray, i + 1)
if not na(current_line) and not na(next_line)
line.set_x2(current_line, line.get_x1(next_line))
else
line.set_x2(current_line, bar_index)
Relevance
Identifying Key Levels
The indicator helps traders identify key levels as follows:
- High Volatility : Lines indicating high volatility suggest strong trending movements. These levels can signify breakout points or areas where the price has made significant moves.
- Consolidation : Lines indicating consolidation suggest the market is ranging. These levels can be used to identify sideways movements, areas of accumulation or distribution, and potential breakout zones.
Potential Future Points of Interest
- High Volatility Lines: Can serve as resistance or support levels if the market revisits these areas.
- Consolidation Lines: Highlight potential zones for price breakouts or reversals when the market transitions from consolidation to a trending phase.
In summary, this indicator can be particularly useful for traders looking to identify periods of high volatility and consolidation. By marking such periods on the chart, traders can better understand market behavior and spot potential trading opportunities.
Pivot Point Profile [LuxAlgo]The Pivot Point Profile indicator groups and displays data accumulated from previous pivot points, providing a comprehensive method for prioritizing and displaying areas of interest directly given by swing highs and lows.
Users have access to common settings present in other profile-type indicators.
🔶 USAGE
The Pivot Point Profile is particularly helpful in identifying highly active reversal zones that have been visited multiple times by price. Because of this, we could generally expect these areas to serve as future points of interest, often acting as support or resistance when re-visited.
The profile displays data associated with both Pivot Highs and Pivot Lows. Each row consists of pivot high and pivot low counts side-by-side, forming the total width of the row.
By analyzing the row as a whole, we can gain a better understanding of WHERE to look for interactions.
By analyzing the pivot counts independently, we can gain a better understanding of WHAT to expect when returning to these areas.
For example:
If a row in the profile contains entirely Pivot Lows, this could be seen as an indication to look for buyers to hold that level for a continuation upwards. A break of this level could be interpreted as a lack of interest from previous buyers at this level, indicating a further move down.
🔹 Concentrated Areas
Each row in the profile displays the current count of high pivots and low pivots within the selected lookback. The largest count for each pivot direction is identified as a "Concentrated Area (CA)", these CAs are highlighted over the chart with a line displaying the average of all pivots within that CA. The CA Average is the average of all pivot points (in the majority direction) within the given row.
These can hold more importance as potential support/resistance areas.
Note: The CA Threshold can be manually adjusted to highlight all rows based on a user-selected value.
🔶 DETAILS
🔹 Calculation
The idea behind the Pivot Point Profile is a new analysis method for pivot points, taking the idea of a volume profile and adapting it to display pivot points instead of volume. By using this data, in theory, we should be able to better prioritize zones to anticipate reversals, as well as identify key levels to watch for buyer & seller interactions to use as confirmations in direction.
The (vertical) width of each row is the product of the script's "Row Size", this is the number of rows that the profile will consist of. With a max of 250, the profile can be decently granular. That being said, A more granular profile will have fewer overlapping pivot points. By decreasing the row size (Using fewer rows in the profile) you will increase the tolerance for grouping pivot points. Potentially leading to a more comprehensive Profile. Inversely, By reducing the tolerance for grouping, you will better visualize only similar highs and lows but may have noisier data to sift through.
The Profile is calculated based on a "Lookback" parameter, using only the lookback amount of previous high and low pivots to calculate the profile. Configuring this parameter alongside "Pivot Length", will allow for great control over the frame of reference of the profile.
Note: This indicator is capable of utilizing the full chart history of pivot points, this can be done by enabling the "Use Full Chart History" setting, this will cause the script will calculate from everything it has access to on your current chart.
🔹 Display
The Pivot Point Profile display can be customized to fit a various range of chart styles and visual needs. The specific settings to adjust these can be located in the "Profile Display" Section of the User Inputs.
Profile Width: Sets the Left to Right Width of the Profile. This is the maximum width that the profile will occupy and will scale to fit within this width.
Profile Offset: Sets the distance of the Profile's Axis from the current chart candle. This moves the entire profile left and right to enable to user to set the distance between the profile and the current candle.
Direction: Changes the display direction of the profile, allowing for "Left", "Right", or "Center" display styles.
🔶 SETTINGS
🔹 Pivot Point Parameters
Pivot Type: Choose between "Fractal Pivots" or "SMC Structure" to use as the basis for pivots.
Length: Sets the length for the pivot calculations.
🔹 Profile Calculations Parameters
Lookback: Sets the number of pivots to calculate within, in increments of high and low pairs. (Setting this to 1 = 1 Pivot High & 1 Pivot Low)
Use Full Chart History: Disregards the set lookback and instead uses all available chart data to calculate from.
Row Size: Sets the total number of rows to calculate the profile with.
🔹 Profile Display
Profile Width: Sets the max left & right width (in bars) that the profile will occupy.
Profile Offset: Sets the distance of the profile axis from the last chart bar.
Direction: Sets the display direction
🔹 Concentrated Areas
Highlight CAs: Extends the rows left from concentrated areas.
CA Threshold: Manually set the threshold for determining concentrated areas, when disabled, only the largest rows will be displayed.
CA Averages: Toggles the concentrated area averages for each pivot direction.
Note: CA Averages can be displayed independently without CA Highlights being displayed, and vice versa.
Falcon - Volume & Level reaction Falcon - Volume & Level Reaction
Our indicator, Falcon - Volume & Level Reaction, is designed to provide traders with comprehensive insights into price behavior through the calculation of horizontal volume profiles. By analyzing these profiles, the indicator identifies key levels and assesses price reactions, offering valuable trading signals.
---
# Concept
The Falcon - Volume & Level Reaction indicator is built to help traders identify and capitalize on key market levels by analyzing volume profiles and price behavior. This indicator enhances trading strategies by providing clear signals based on robust analysis, allowing traders to make informed decisions and improve their trading outcomes.
---
# Functions
1. Volume Profile Calculation
- Profile Period: Calculates horizontal volume profiles over a specified number of bars.
- Peak Volumes: Identifies peak volume levels based on the sensitivity parameter.
2. Price Behavior Analysis
- Primary Check: Determines if bars close above or below the peak level.
- Secondary Checks:
- Volume Decrease: Confirms a decrease in volume after the price touches the level.
- Volatility Check: Ensures bars do not exceed the average ATR range.
3. Signal Generation
- Combined Signals: The primary check generates initial long/short signals, while secondary checks strengthen these signals.
- Real-time Alerts: Provides "Potential" short or long signals based on the current candle's closure relative to the level.
4. Comprehensive Analysis: Helps identify multiple factors that validate level protection and potential price reversals.
---
# Description of Checks
1. Primary Check: Price Closure
- This check assesses whether the bars close above or below the identified peak volume levels. If the price closes above the level, it generates a long signal; if it closes below, it generates a short signal. This check is fundamental as it directly indicates the price's interaction with significant volume levels.
2. Secondary Check 1: Volume Decrease
- After the price touches a peak volume level, this check verifies if there is a subsequent decrease in trading volume. A decrease in volume after touching the level suggests reduced market interest at that price, which can indicate potential reversals or continuations based on the overall market context.
3. Secondary Check 2: Volatility Check
- This check ensures that the price bars do not exceed the average ATR range after touching the peak volume level. Lower volatility near key levels indicates stability and strengthens the signal generated by the primary check, confirming the market's reaction to these levels.
---
# How to Use the Indicator
1. Set Parameters: Define volume profile parameters such as profile period, number of peaks, and level sensitivity.
2. Analyze the Chart: Observe the peak volume levels displayed on the chart.
3. Receive Signals: Follow the buy or sell signals that appear when the price touches the level and the primary and secondary checks are met.
4. Respond to Alerts: When a "Potential" long or short signal appears, evaluate the closure of the current candle relative to the level to make a trading decision.
Example of Work
- Setup:
- Result:
---
# Input Parameters
- Profile back: Defines the lookback period for volume profiles (10–500, step 1).
- Max Profile: Sets the maximum number of profiles (10–300, step 5).
- Profiles Length: Specifies the length of profiles (10–100, step 1).
- Profiles Offset: Determines the offset for profiles (0–100, step 1).
- Profiles Width: Sets the width of profiles (1–10).
- Profiles Color: Chooses the color for profiles.
- Lvls Color: Chooses the color for levels.
- Lvl's sensitivity: Adjusts the sensitivity of levels (1–10).
- tolerance: Sets the tolerance level (0.000–0.003, step 0.001).
- tolerance ATR: Defines the ATR tolerance (1.0–4.0).
---
Falcon - Volume & Level Reaction
Индикатор на основе горизонтальных объемов помогает трейдерам выявлять ключевые уровни объемной проторговки, предоставляя четкие сигналы для принятия торговых решений.
Функции
– Определение и отображение пиковых уровней объемной проторговки.
– Сигналы на покупку (Long) и продажу (Short) на основе поведения цены.
– Анализ объема торгов до и после касания уровня.
– Оценка волатильности цены в период консолидации.
– Автоматическая подстройка под выбранный таймфрейм.
– Отображение локальных максимумов и минимумов.
Настройки
– Количество баров назад VRVP: определяет период для расчета горизонтальных объемов.
– Множитель ATR: коэффициент для вычисления волатильности.
– Множитель погрешности: допустимая погрешность касания уровня.
– Период расчета ATR: количество баров для расчета среднего ATR.
– Отображение Local HH/LL: включение/выключение отображения локальных максимумов и минимумов.
Версии
Данный скрипт – упрощенная версия нашего индикатора с закрытым доступом. Открытая версия доступна для BTC и ETH, только на дневном таймфрейме, без возможности изменения параметров
Uptrick: Supply and Demand Zones with RSI, MACD and TP signalsUptrick: Supply and Demand Zones with RSI, MACD Signals and TP Signals
This script is a comprehensive technical analysis indicator for the TradingView platform, combining multiple strategies and indicators to assist traders in making informed decisions. The script incorporates supply and demand zones, Relative Strength Index (RSI), Moving Average Convergence Divergence (MACD) signals, and trend and take profit signals. Below is a detailed explanation of each feature, its purpose, how to use it, and how it differs from other indicators.
Key Features
Supply and Demand Zones:
Purpose: Identify key price levels where buying (demand) or selling (supply) pressure has historically been strong.
Inputs:
supplySwingLength (Default: 20): Determines the number of bars to consider for identifying swing highs for supply zones.
demandSwingLength (Default: 20): Determines the number of bars to consider for identifying swing lows for demand zones.
zoneExtensionBars (Default: 50): Specifies how many bars to extend the zones to the right for visibility.
Usage: The indicator highlights these zones on the chart, making it easier for traders to spot potential reversal points.
Relative Strength Index (RSI) and Moving Average of RSI:
Purpose: RSI measures the speed and change of price movements, helping to identify overbought or oversold conditions. The moving average of RSI smoothens the RSI values to reduce noise.
Inputs:
lengthrsi (Default: 14): The period for calculating RSI.
lengthrsima (Default: 8): The period for calculating the moving average of RSI.
Usage: Buy and sell signals are generated when the RSI crosses above or below the 50 level, respectively, indicating potential entry or exit points.
MACD (Moving Average Convergence Divergence):
Purpose: MACD is a trend-following momentum indicator that shows the relationship between two moving averages of a security’s price.
Inputs:
macdFastLength (Default: 12): The short period for the fast EMA.
macdSlowLength (Default: 26): The long period for the slow EMA.
macdSignalSmoothing (Default: 9): The period for the signal line.
Usage: Buy and sell signals are generated when the MACD line crosses above or below the signal line, respectively. This is an optional feature that can be enabled or disabled.
Signal Type Selection:
Purpose: Allows the trader to choose between RSI signals or supply/demand zone signals.
Inputs:
signalType (Default: "RSI"): Options are "RSI" or "Supply/Demand".
Usage: The chosen signal type determines the logic for plotting buy and sell signals on the chart.
Take Profit Signals:
Purpose: Provide take profit signals based on statistical volatility.
Inputs:
TheLength (Default: 20): The period for calculating the basis SMA and standard deviation.
tpmult (Default: 2.5): The multiplier for the standard deviation to set the take profit levels.
Usage: Generates buy and sell take profit signals when the price crosses over or under the calculated levels.
Detailed Explanation
Supply and Demand Zones Logic:
Swing High and Swing Low:
Functions isSwingHigh and isSwingLow determine whether the current high or low is the highest or lowest within a specified length, indicating potential supply or demand zones.
Zone Visualization:
When a new swing high or low is detected, a box is drawn from the identified bar and extended to the right for visibility. This helps traders visually identify these critical zones.
The boxes are updated dynamically as new swings are detected, ensuring the most relevant zones are always displayed.
RSI and MACD Signals:
RSI Calculation:
The script calculates the RSI using the specified period and then smooths it using an exponential moving average.
Buy and sell signals are generated based on the RSI's crossover with the 50 level.
MACD Calculation:
The MACD line and signal line are calculated using the specified periods.
Buy and sell signals are generated based on crossovers between the MACD line and the signal line.
These signals can be enabled or disabled based on user preference.
Trend Detection and Take Profit Signals:
Trend Detection:
The script calculates the basis (SMA) and upper and lower bands based on the standard deviation.
It determines the trend strength and direction by comparing the current price to these bands.
Take Profit Levels:
Take profit levels are set by multiplying the standard deviation by a user-defined multiplier.
Signals are plotted when the price crosses these take profit levels, indicating potential exit points.
Differences from Other Indicators
Combination of Multiple Indicators:
This script integrates supply and demand zones with RSI and MACD signals, offering a comprehensive tool for technical analysis.
Most other indicators focus on a single strategy, whereas this script provides a holistic view by combining multiple strategies.
Customizable Inputs:
The script offers a high degree of customization, allowing traders to adjust various parameters to suit their trading style and preferences.
Many indicators have fixed settings, limiting their adaptability to different market conditions.
Dynamic Zone Visualization:
The supply and demand zones are dynamically updated, providing real-time insights into key price levels.
This feature is not commonly found in other indicators, which may rely on static levels or less visually intuitive methods.
Usage Guide
Setup:
Add the script to your TradingView chart.
Adjust the input parameters as needed to match your trading strategy.
Interpreting Signals:
Supply and Demand Zones: Look for potential reversal points at these zones.
RSI and MACD Signals: Use these signals to identify potential entry and exit points.
Take Profit Signals: Set take profit levels based on the calculated signals to manage risk and lock in profits.
Combining Signals:
Combine signals from different features to increase the reliability of your trading decisions.
For example, a buy signal from RSI combined with a price approaching a demand zone may indicate a stronger buy opportunity.
Inputs Explained
Supply and Demand Zones:
supplySwingLength: The length of bars to consider for identifying swing highs.
demandSwingLength: The length of bars to consider for identifying swing lows.
zoneExtensionBars: The number of bars to extend the zones to the right.
RSI:
lengthrsi: The period for calculating the RSI.
lengthrsima: The period for calculating the EMA of the RSI.
MACD:
macdFastLength: The short period for the fast EMA.
macdSlowLength: The long period for the slow EMA.
macdSignalSmoothing: The period for the signal line.
Signal Type:
signalType: Choose between "RSI" and "Supply/Demand" signals.
Take Profit:
TheLength: The period for calculating the basis SMA and standard deviation.
tpmult: The multiplier for the standard deviation to set the take profit levels.
Conclusion
The "Uptrick: Supply and Demand Zones with RSI, MACD Signals and TP signals" script is a powerful and versatile indicator that combines multiple strategies to provide traders with a comprehensive analysis tool. Its detailed visualization of supply and demand zones, coupled with RSI and MACD signals, and trend-based take profit signals, makes it an invaluable tool for both novice and experienced traders. By understanding and utilizing its features effectively, traders can make more informed and confident trading decisions.
Relative Equal Highs/LowsThis Pine script indicator is designed to create a visual representation of the relative equal highs & lows formed and automatically removed mitigated ones. Unlike indicators designed to show exact equal high/lows this indicator allows a small, configurable degree of variance between price to identify areas where price stops.
Relevance:
Relative Equal highs and lows can serve as valuable tools in identifying potential shifts in trend direction. They come into play when the price hits a support or resistance level and can’t advance further, signaling a possible reversal or pivot point. When the price sufficiently retreats from these levels, relative equal highs and lows can also indicate liquidity draws where buy/sell stops might be positioned, in accordance with SMC/ICT concepts.
How It Works:
The indicator tracks all unmitigated highs & lows within the chart’s present timeframe, limited to the user-defined max bars lookback for optimal performance. If the prices are within the configured variance they are marked as relatively equal and at that point are visually identified by a horizontal line, which connects the two (or more) points of price. Depending on configuration of the indicator, a line is rendered from the 1st, last or both values within the relatively equal range of price. A unique feature of this indicator is its ability to remove the line once the price mitigates the relative equal high/low by falling below the lows or rising above highs. This ensures the chart remains uncluttered and highlights only the currently relevant levels, setting it apart from other indicators providing similar functionality.
Configurability:
The indicator offers five style settings for complete customization of the lines that represent equal highs/lows. These settings include line style, color, and width, along with an option to extend the lines to the right of the chart for enhanced visibility of equal high/low levels. To optimize performance, the indicator allows users to configure the lookback length, determining how far back the price history should be examined. In most instances, the default setting of 500 bars proves more than adequate. Additionally, you can set thresholds via separate configs for stocks & indices that will determine if the price is relatively equal and lastly allow you to configure where the indicator line should be drawn, the first, last or all the values.
Additional notes:
This uses a different approach then my “equal highs/lows” indicator to identify price levels and because it focuses specifically on relative as opposed to exact values it is entirely different and may show “weaker”, but still important levels of liquidity. This indicator is more suited for analysis of stocks and indices or higher-timeframes where price-action rarely forms exact equal values instead more frequently forming almost equal values. My other indicator is more suited for smaller (15m or less) timeframe on indices where exact equal prices are often identical. Depending on situation different indicators should be used.
Double FVG-BPR [QuantVue]The Double FVG BPR Indicator is a versatile tool that helps traders identify potential support and resistance levels through the concept of balanced price ranges.
A Balanced Price Range (BPR) is a zone on a price chart where the market has found equilibrium after a period of price imbalance.
It is identified by detecting a Fair Value Gap (FVG) in one direction, followed by an overlapping Fair Value Gap in the opposite direction.
Components of a Balanced Price Range
Fair Value Gap (FVG): A FVG occurs when there is a rapid price movement, creating a gap in the price chart where minimal trading occurs. This gap represents an imbalance between supply and demand.
Bullish FVG: A bullish FVG is identified when the low of a candle is higher than the high of a candle two periods ago, and the close of the previous candle is higher than the high of that same period.
Bearish FVG: A bearish FVG is identified when the high of a candle is lower than the low of a candle two periods ago, and the close of the previous candle is lower than the low of that same period.
Overlapping Fair Value Gap: For a BPR to be formed, an initial FVG must be followed by an overlapping FVG in the opposite direction. This creates a balanced zone where the price has moved up (or down) quickly and then moved down (or up) with similar intensity, suggesting a temporary equilibrium.
The area between the high and low points of these overlapping FVGs forms the BPR. This zone represents a temporary market equilibrium where supply and demand have balanced out after a period of significant price movement in both directions.
How to Use
Support and Resistance Levels: The upper and lower boundaries of the BPR act as dynamic support and resistance levels. Traders can use these levels to place buy and sell orders, anticipating that the price may find support or face resistance within these zones.
Trend Reversal and Continuation: The BPR can signal potential trend reversals or continuations.
If the price moves back into the BPR after a breakout, it may indicate a reversal. Conversely, if the price breaks out of the BPR with strong momentum, it may signal a trend continuation.
Supports & Resistances [UAlgo]The "Supports & Resistances " indicator is designed to identify and visualize key support and resistance levels on the price chart. It utilizes the Average True Range (ATR) and Pivot Points to define the boundaries of S & R zones and considers historical price action to assess the strength of these zones.
🔶 How to Obtain Zones
The script continuously analyzes the price action and identifies potential support and resistance zones based on the following criteria:
Zone Creation: For swing highs, a zone is created with the high price at the zone length as the top and the top minus the Average True Range (ATR) as the bottom. Conversely, for swing lows, the zone is created with the low price at the zone length as the bottom and the low plus the ATR as the top.
Zone Strength Calculation: The script iterates through historical bars within the zone and counts how many times the price (low for support, high for resistance) touched but failed to break entirely through the zone. This count is assigned as the zone's "strength".
Zone Display and Removal: It identifying zones by assigning a "strength" value based on how many times the price has approached but failed to break the zone. This helps prioritize stronger potential support/resistance levels. Only zones exceeding the defined "strength threshold" are visually displayed on the chart. Weaker zones or those broken by price are automatically removed.
🔶 Parameters
Zone Length: Traders can adjust S & R detection sensitivity, length to be used to find pivot points.
Strength Threshold: Set the minimum number of times the price needs to touch but fail to break a zone for it to be considered "strong" and displayed.
Visual Settings: Tailor the appearance of the support/resistance zones by defining separate colors and text size for borders, backgrounds, and zone text.
🔶 Disclaimer
The "Supports & Resistances " indicator is provided for educational and informational purposes only.
It should not be considered as financial advice or a recommendation to buy or sell any financial instrument.
The use of this indicator involves inherent risks, and users should employ their own judgment and conduct their own research before making any trading decisions. Past performance is not indicative of future results.
🔷 Related Scripts
Support and Resistance with Signals
ATR Based Support and Resistance Zones
Algos Asia Sweep"Algos Asia Sweep" Indicator is here to help "Asia sweep" traders with statistics and technical analysis.
This indicator includes three main parts:
1. It shows the three major sessions (Asia, London, and New York) as three boxes on the chart, so users can easily find the difference in volume and volatility in each session and use it to take trades with their own strategy.
2. It displays a "statistics table" in the upper-right corner of the chart with information about the breakouts of Asia session highs and lows during the last X days (the number of days used for the calculations can be changed depending on different timeframes and the TradingView edition the user has; it appears in the "session counted" row).
3. It indicates on each day if the Asia session high/low has been broken by creating a circle above the first bar that breaks the Asia high and below the first bar that breaks the Asia low. In addition, it creates a horizontal line at the last session's Asia low and high if they have not yet been broken.
HOW THE CALCULATIONS WORK?
Every day, the script finds each session's high and low. The script counts the number of Asia sessions that have occurred since it started working, and on each day, it identifies if the Asia session high/low/both have been broken. At the end, the indicator divides the number of times the Asia session high/low/both have been broken by the number of sessions executed.
-The indicator is set to GMT+3. Change it to your timezone.
-The indicator can't be used in higher timeframes than 4H, and it is not recommended to use it in higher timeframes than 1H.
-Everything you get from this indicator is NOT considered trading advice. The programmer is not a financial advisor. Any action/decision you make based on this indicator is at your own discretion. Always do your own research and trade only based on your personal judgment.
I would like to know your opinion about using this indicator. Please let me know in the comments.
Dynamic Support & Resistance Tracker with MTFDynamic Support & Resistance Tracker with Weekly, Monthly & Daily Levels
The Dynamic Support & Resistance Tracker is designed to help traders identify key support and resistance levels across multiple timeframes, enhancing market analysis and decision-making. This indicator calculates and plots support and resistance levels for daily, weekly, and monthly periods, along with extension lines that provide insights into potential price targets.
Key Features:
Multi-Timeframe Analysis:
Daily Levels: Identifies the high, low, and midpoint for each trading day. These levels help traders recognize important price points for short-term trading strategies.
Weekly Levels: Plots the high, low, and midpoint for each week. This feature is valuable for swing traders who need to understand broader market trends.
Monthly Levels: Displays the high, low, and midpoint for each month, which is essential for long-term investors.
Extension Lines:
Calculates extension lines beyond the standard support and resistance levels to help anticipate potential price targets and reversals. These extensions are based on the distance between the high/low and midpoint levels.
Real-Time Updates:
Automatically updates the levels based on the most recent market data, ensuring traders have the most current information for their analysis.
Clear Visuals:
The indicator provides clearly labeled and color-coded lines for easy identification of key levels, improving the visual clarity of market analysis.
How It Works:
Daily, Weekly, and Monthly Levels: The indicator calculates the high, low, and midpoint levels for daily, weekly, and monthly timeframes and plots them on the chart. These levels serve as potential areas of support and resistance where price action may react.
Extension Lines: The extension lines are calculated based on the distance between the high/low and midpoint levels, projecting potential areas where price may find support or resistance beyond the standard levels.
Automatic Updates: The indicator continuously updates the plotted levels based on the latest market data, providing real-time insights.
Benefits:
Improved Market Analysis: By providing a clear view of support and resistance levels across multiple timeframes, this indicator helps traders understand market trends and price movements more effectively.
Informed Trading Decisions: The detailed plotting of levels and extensions allows traders to make more informed decisions, enhancing their trading strategies.
Versatility: Suitable for various trading styles, including intraday trading, swing trading, and long-term investing.
Instructions for Use:
Analyze the Levels: Observe the plotted high, low, and mid-levels for daily, weekly, and monthly timeframes.
Plan Your Trades: Use the identified support and resistance levels to set your entry and exit points, stop-losses, and profit targets.
Monitor the Market: Stay updated with real-time adjustments of the levels, ensuring you always have the latest market information.
Note: This indicator is designed to enhance your trading analysis by providing clear and reliable support and resistance levels. However, it should be used as part of a comprehensive trading strategy and not as the sole basis for trading decisions.
Propulsion Blocks | Flux Charts💎 GENERAL OVERVIEW
Introducing our new Propulsion Blocks indicator! This new indicator can find & render ICT's propulsion blocks in the current ticker. It's highly customizable with detection, invalidation and style settings. For more information, please visit the "HOW DOES IT WORK ?" section.
Features of the new Propulsion Blocks indicator :
Render Bullish & Bearish Propulsion Blocks
Customizable Algorithm
Enable / Disable Historic Zones
Visual Customizability
📌 HOW DOES IT WORK ?
Order blocks occur when there is a high amount of market orders exist on a price range. It is possible to find order blocks using specific formations on the chart. One of which this indicator uses requires a large engulfing candlestick right after another one of the opposite direction. Then if the price comes back to retest the area that two candlesticks create, then it's an order block pattern.
Propulsion blocks are a specific type of order block used in the trading methodology. They build on the concept of order blocks and aim to identify potential areas for strong price movements. They are detected when a candlestick wicks to any existing order block, retesting it. Then a strong momentum in the direction of the order block is needed for the propulsion block to get created. Check this example :
You can use them as entry / exit points, or for confirmations for your trades. For example, a successful retest attempt to a bullish propulsion block might hint a strong bullish momentum. This indicator works best when used together with other ICT concepts.
🚩UNIQUENESS
Propulsion blocks can help traders identify key levels in a chart, and can be used mainly for confirmation. This indicator can identify and show them automatically in your chart, and provides customization settings for order & propulsion block detection and invalidation. Another capability of the indicator is that it combines overlapping order & propulsion blocks so you will have a clean look at the chart without any overlapping zones.
⚙️SETTINGS
1. General Configuration
Show Historic Zones -> This setting will hide invalidated propulsion blocks if enabled.
Max Distance To Last Bar -> This setting defines the maximum range that the indicator will find propulsion blocks to the past. Higher options will make older zones visible.
Zone Invalidation -> Select between Wick & Close price for Order Block & Propulsion Block Invalidation.
Swing Length -> Swing length is used when finding order block formations. Smaller values will result in finding smaller order blocks.
Price Excess with Adjustable RecoveryIndicator: Price Excess with Adjustable Recovery
This indicator detects excessive price movements and displays a potential recovery level. It is particularly useful for identifying trading opportunities after significant market movements.
>> Key Features:
1. Detection of upward and downward price excesses
2. Display of an adjustable recovery level
3. Customizable parameters to adapt to different instruments and timeframes
>> Adjustable Parameters:
- Period: Number of candles for calculating the average and standard deviation (default: 14)
- Excess Threshold: Number of standard deviations to consider a movement as excessive (default: 1.5)
- Recovery Percentage: Recovery level as a percentage (default: 50%)
>> Usage:
1. Red triangles indicate a downward excess
2. Green triangles signal an upward excess
3. The blue line represents the potential recovery level
>> Possible Strategies:
- Counter-trend: Consider buying during downward excesses and selling during upward excesses
- Trend-following: Use the recovery level as a potential profit target
>> Usage Tips:
- Combine this indicator with other technical analysis tools to confirm signals
- Adjust the parameters according to the asset's volatility and your trading horizon
- Use appropriate risk management, as excessive movements can sometimes continue
Feel free to experiment with the parameters to find the configuration that best suits your trading style. Happy trading!
By DL INVEST
Capitulation Candle for Bitcoin and Crypto V1.0 [ADRIDEM]Overview
The Capitulation Candle for Bitcoin and Crypto script identifies potential capitulation events in the cryptocurrency market. Capitulation candles indicate a significant sell-off, often marking a potential market bottom. This script highlights such candles by analyzing volume, price action, and other technical conditions. Below is a detailed presentation of the script and its unique features.
Unique Features of the New Script
Volume-Based Analysis : Uses a volume multiplier to detect unusually high trading volumes, which are characteristic of capitulation events. The default multiplier is 5.0, but it can be adjusted to suit different market conditions.
Support Level Detection : Looks back over a customizable period (default is 150 bars) to find support levels, helping to identify significant price breaks.
ATR-Based Range Condition : Ensures that the price range of a capitulation candle is a multiple of the Average True Range (ATR), confirming significant price movement. The default ATR multiplier is 10.0.
Dynamic Dot Sizes : Plots dots of different sizes below capitulation candles based on volume thresholds, providing a visual indication of the volume's significance.
Visual Indicators : Highlights capitulation candles and plots support levels, offering clear visual cues for potential market bottoms.
Originality and Usefulness
This script uniquely combines volume analysis, support level detection, and ATR-based range conditions to identify capitulation candles. The dynamic dot sizes and clear visual indicators make it an effective tool for traders looking to spot potential reversal points in the cryptocurrency market.
Signal Description
The script includes several features that highlight potential capitulation events:
High Volume Detection : Identifies candles with unusually high trading volumes using a customizable volume multiplier.
Support Level Breaks : Detects candles breaking significant support levels over a customizable lookback period.
ATR Range Condition : Ensures the candle's range is significant compared to the ATR, confirming substantial price movement.
Dynamic Dot Sizes : Plots small, normal, and large dots below candles based on different volume thresholds.
These features assist in identifying potential capitulation events and provide visual cues for traders.
Detailed Description
Input Variables
Volume Multiplier (`volMultiplier`) : Detects high-volume candles using this multiplier. Default is 5.0.
Support Lookback Period (`supportLookback`) : The period over which support levels are calculated. Default is 150.
ATR Multiplier (`atrMultiplier`) : Ensures the candle's range is a multiple of the ATR. Default is 10.0.
Small Volume Multiplier Threshold (`smallThreshold`) : Threshold for small dots. Default is 5.
Normal Volume Multiplier Threshold (`normalThreshold`) : Threshold for normal dots. Default is 10.
Large Volume Multiplier Threshold (`largeThreshold`) : Threshold for large dots. Default is 15.
Functionality
High Volume Detection : The script calculates the simple moving average (SMA) of the volume and checks if the current volume exceeds the SMA by a specified multiplier.
```pine
smaVolume = ta.sma(volume, supportLookback)
isHighVolume = volume > smaVolume * volMultiplier
```
Support Level Detection : Determines the lowest low over the lookback period to identify significant support levels.
```pine
supportLevel = ta.lowest(low , supportLookback)
isLowestLow = low == supportLevel
```
ATR Range Condition : Calculates the ATR and ensures the candle's range is significant compared to the ATR.
```pine
atr = ta.atr(supportLookback)
highestHigh = ta.highest(high, supportLookback)
rangeCondition = (highestHigh - low ) >= (atr * atrMultiplier)
```
Combining Conditions : Combines various conditions to identify capitulation candles.
```pine
isHigherVolumeThanNext = volume > volume
isHigherVolumeThanPrevious = volume > volume
bodySize = math.abs(close - open )
candleRange = high - low
rangeBiggerThanPreviousBody = candleRange > bodySize
isCapitulationCandle = isHighVolume and isHigherVolumeThanPrevious and isHigherVolumeThanNext and isLowestLow and rangeCondition and rangeBiggerThanPreviousBody
```
Dynamic Dot Sizes : Determines dot sizes based on volume thresholds and plots them below the identified capitulation candles.
```pine
isSmall = volume > smaVolume * smallThreshold and volume <= smaVolume * normalThreshold
isNormal = volume > smaVolume * normalThreshold and volume <= smaVolume * largeThreshold
isLarge = volume > smaVolume * largeThreshold
plotshape(series=isCapitulationCandle and isSmall, location=location.belowbar, offset=-1, color=color.rgb(255, 82, 82, 40), style=shape.triangleup, size=size.small)
plotshape(series=isCapitulationCandle and isNormal, location=location.belowbar, offset=-1, color=color.rgb(255, 82, 82, 30), style=shape.triangleup, size=size.normal)
plotshape(series=isCapitulationCandle and isLarge, location=location.belowbar, offset=-1, color=color.rgb(255, 82, 82, 20), style=shape.triangleup, size=size.large)
```
Plotting : The script plots support levels and highlights capitulation candles with different sizes based on volume significance.
```pine
plot(supportLevel, title="Support Level", color=color.rgb(255, 82, 82, 50), linewidth=1, style=plot.style_line)
```
How to Use
Configuring Inputs : Adjust the volume multiplier, support lookback period, ATR multiplier, and volume thresholds as needed.
Interpreting the Indicator : Use the plotted support levels and highlighted capitulation candles to identify potential market bottoms and reversal points.
Signal Confirmation : Look for capitulation candles with high volumes breaking significant support levels and meeting the ATR range condition. The dynamic arrow sizes help to assess the volume's significance.
This script provides a detailed and visual method to identify potential capitulation events in the cryptocurrency market, aiding traders in spotting possible reversal points and making informed trading decisions.
PM&4HRThe PM&4HR indicator basically shows you a bunch of important price levels on your chart:
Premarket Levels:
Premarket High
Premarket Low
Premarket Median (middle point between high and low)
4-Hour Levels:
Current 4-hour High
Current 4-hour Low
Previous 4-hour High
Previous 4-hour Low
It calculates these levels and draws lines on your chart for each one. on any time frame The pre-market levels are only calculated during the pre-market hours (4:00 AM to 9:30 AM), but they stay on the chart even after the market opens. They'll stick around during after-hours trading too, only disappearing when the next pre-market session starts.
The 4-hour levels update every 4 hours, giving you an idea of the recent price range.
Each line has a label that tells you what it is (like "PM High" or "Current 4H Low").
You can turn each line on or off if you don't want to see all of them.
You can also change the colors of the lines to whatever you want.
The idea is to help you see important price levels at a glance, which might be useful for finding entry or exit points for trades, or just understanding where the price has been recently.
Equal Highs and LowsDescription:
The ‘Equal Highs and Lows’ indicator is a technical analysis tool that marks identical price levels on a trading chart using the current time-frame, assisting traders in identifying potential support and resistance zones or liquidity draws. It creates a horizontal line connecting points where the price has created equal highs and lows within a specified lookback period. Unique to this tool, it maintains a clean chart by removing the line once the price surpasses the equal highs or falls below the equal lows, ensuring only the currently relevant equal highs and lows are highlighted.
Features:
Customization Options: Users can adjust the appearance of the lines (color, width, and style) to match their chart setup or preferences. Users can also choose to extend the lines marking the equal highs/lows to the right of the chart making the equal high/low levels more easier to visualize.
User-Defined Lookback Length: The number of bars to look back for finding equal highs and lows can be set by the user, allowing for flexibility in different market conditions.
How It Works:
The indicator meticulously scans the chart over a user-specified lookback duration, identifying bars with matching high or low values that have not been mitigated on the current chat timeframe, thereby constructing an index of equal values. It subsequently connects these equal values on the chart with a line. While this intuitive indicator does not forecast future market trends, it emphasizes significant price levels derived from historical data.
Usage:
Identifying Support and Resistance: The lines drawn by the indicator can be used to identify potential support and resistance zones and/or draws of liquidity, which are crucial for making informed trading decisions.
Strategy Development: Traders can incorporate the visual cues provided by the indicator into their trading strategies, using them as one of the factors for entry or exit decisions.
Originality:
This indicator presents a distinctive method for pinpointing and illustrating equal highs and lows, granting traders a crucial insight into key price levels. It stands apart from conventional indicators by offering extensive personalization and employing a novel approach to augment chart analysis. Uniquely, it retains only unmitigated equal high/low levels on the chart, automatically discarding mitigated price levels once the price has reached that level.
Conclusion:
The "Equal Highs and Lows" indicator is a practical tool for traders looking to enhance their chart analysis with visual cues of significant price levels. Its customization options and innovative approach make it a valuable addition to the trading toolkit, suitable for various trading styles and strategies.
Pivot Points Level [TradingFinder] 4 Methods + Reversal lines🔵 Introduction
"Pivot Points" are places on the price chart where buyers and sellers are most active. Pivot points are calculated based on the previous day's price data and serve as reference points for traders to make decisions.
Types of Pivot Points :
Floor
Woodie
Camarilla
Fibonacci
🟣 Floor Pivot Points
Floor pivot points are widely used in technical analysis. The central pivot point (PP) serves as the main level of support or resistance, indicating the potential direction of the trend.
The first to third levels of resistance (R1, R2, R3) and support (S1, S2, S3) provide additional signals for potential trend reversals or continuations.
Floor Pivot Points Formula :
Pivot Point (PP): (H + L + C) / 3
First Resistance (R1): (2 * P) - L
Second Resistance (R2): P + H - L
Third Resistance (R3): H + 2 * (P - L)
First Support (S1): (2 * P) - H
Second Support (S2): P - H + L
Third Support (S3): L - 2 * (H - P)
🟣 Camarilla Pivot Points
Camarilla pivot points include eight levels that closely align with support and resistance. These points are particularly useful for setting stop-loss and profit targets.
Camarilla Pivot Points Formula :
Fourth Resistance (R4): (H - L) * 1.1 / 2 + C
Third Resistance (R3): (H - L) * 1.1 / 4 + C
Second Resistance (R2): (H - L) * 1.1 / 6 + C
First Resistance (R1): (H - L) * 1.1 / 12 + C
First Support (S1): C - (H - L) * 1.1 / 12
Second Support (S2): C - (H - L) * 1.1 / 6
Third Support (S3): C - (H - L) * 1.1 / 4
Fourth Support (S4): C - (H - L) * 1.1 / 2
🟣 Woodie Pivot Points
Woodie pivot points are similar to floor pivot points but place more emphasis on the closing price. This method often results in different pivot levels than the floor method.
Woodie Pivot Points Formula :
Pivot Point (PP): (H + L + 2 * C) / 4
First Resistance (R1): (2 * P) - L
Second Resistance (R2): P + H - L
First Support (S1): (2 * P) - H
Second Support (S2): P - H + L
🟣 Fibonacci Pivot Points
Fibonacci pivot points use the standard floor pivot points and then apply Fibonacci retracement levels to the range of the previous trading period. The common retracement levels used are 38.2%, 61.8%, and 100%.
Fibonacci Pivot Points Formula :
Pivot Point (PP): (H + L + C) / 3
Third Resistance (R3): PP + ((H - L) * 1.000)
Second Resistance (R2): PP + ((H - L) * 0.618)
First Resistance (R1): PP + ((H - L) * 0.382)
First Support (S1): PP - ((H - L) * 0.382)
Second Support (S2): PP - ((H - L) * 0.618)
Third Support (S3): PP - ((H - L) * 1.000)
These pivot point calculations help traders identify potential support and resistance levels, enabling more informed decision-making in their trading strategies.
🔵 How to Use
🟣 Two Methods for Trading Pivot Points
There are two primary methods for trading pivot points: trading with "pivot point breakouts" and trading with "price reversals."
🟣 Pivot Point Breakout
A breakout through pivot lines provides a significant signal to the trader, indicating a change in market sentiment. When an upward breakout occurs and the price crosses these lines, a trader can enter a long position and place their stop-loss below the pivot point (P).
Similarly, if a downward breakout happens, a short order can be placed below the pivot point.
When trading with pivot point breakouts, if the upward trend breaks, the first and second support levels can be the trader's profit targets. In a downward trend, the first and second resistance levels will serve this role.
🟣 Price Reversal
Another method for trading pivot points is waiting for the price to reverse from the support and resistance levels. To execute this strategy, one should trade in the opposite direction of the trend as the price reverses from the pivot point.
It's worth noting that although traders use this tool in higher time frames, it yields better results in shorter time frames such as one-hour, 30-minute, and 15-minute intervals.
Fundur - Easy ZonesFundur Easy Zones Trading Indicator
The Fundur Easy Zones trading indicator is designed to simplify market analysis by visually marking critical trading zones. This tool helps traders identify optimal buy and sell areas based on historical price action, making it easier to make informed trading decisions.
Calculation Methodology
The Easy Zones indicator employs pivot point calculations combined with price action analysis and the Average True Range (ATR) to determine key trading zones. These zones are calculated by analyzing market volatility and price movements within each timeframe, allowing the identification of significant discount and premium levels.
Pivot Points: The indicator calculates pivot points based on the average of high, low, and close prices from previous periods. These pivot points serve as the foundational levels from which discount and premium zones are derived.
Price Action Analysis: Historical price data is scrutinized to identify patterns and behaviors that signify potential reversal points. This analysis helps in pinpointing zones where the market is likely to experience significant support (discount) or resistance (premium).
Average True Range (ATR): ATR is used to measure market volatility. By incorporating ATR into the calculations, the indicator adjusts the zone boundaries to reflect current market conditions, ensuring that the zones remain relevant and accurate. Higher ATR values indicate greater volatility and wider zones, while lower ATR values result in narrower zones.
Discount and Premium Levels: Based on the pivot points and ATR, the indicator calculates various tiers of discount and premium levels. These tiers (D1, D2, D3 for discounts and P1, P2, P3 for premiums) represent increasing levels of price deviation from the mean, providing traders with clear entry and exit points.
Features Overview
Zones Settings:
Zones History Length: Adjust the number of historical zones displayed on the chart to analyze past price behavior.
Levels Line Width: Customize the thickness of the zone lines for better visibility.
Structure Settings:
Show Fair Value: Display the fair value zone, providing a visual reference for equilibrium price levels. The fair value is calculated based on the median price over the selected period.
DP (Discount and Premium) Settings:
Enable Discount and Premium Levels: Activate the display of critical buy (discount) and sell (premium) zones. These zones are determined using price deviation analysis from the mean, identifying significant discount (support) and premium (resistance) levels.
Tiered Levels: Visualize up to three levels of discount and premium zones, each with specific target prices (TP1, TP2, TP3), representing different levels of price deviation significance.
Highlight Buy and Sell Zones:
Enable Background: Highlight the background of buy and sell zones for enhanced clarity.
Label Settings:
Enable All Labels: Ensure all labels are visible for quick reference.
Show Descriptive Title: Display titles for each zone, making it easier to understand the context.
Show Take Profit Targets (TP): Clearly mark take profit targets within each zone.
Show Price: Display price levels for each zone for precise entry and exit points.
Symbols Settings:
Fair Value, Premium, and Discount Indicators: Customize symbols to represent gaining or losing fair value, premium, and discount levels, enhancing visual cues for market sentiment.
How to Use the Easy Zones Indicator
Identifying Entry Points:
Use the Discount Zones to identify optimal buy areas. The levels (D1, D2, D3) represent increasing levels of discount, with D1 being the least discounted and D3 the most.
Place buy orders at or near these zones to take advantage of potential price reversals.
Identifying Exit Points:
Use the Premium Zones to identify optimal sell areas. The levels (P1, P2, P3) represent increasing levels of premium, with P1 being the least and P3 the highest.
Place sell orders at or near these zones to maximize profits on upward price movements.
Using Fair Value:
The Fair Value Zone provides a balanced price level where the market is likely to return. Use this as a reference point for setting realistic entry and exit targets.
Strategic Planning:
Combine Discount and Premium Zones with the Fair Value Zone to create a strategic trading plan.
Monitor the zones for price reactions and adjust your trading strategy accordingly.
Best Practices
Historical Analysis:
Regularly review historical price actions within the marked zones to understand market behavior.
Customization:
Adjust the settings to suit your trading style and market conditions. Experiment with different zone lengths and line widths for optimal clarity.
Risk Management:
Always use stop-loss orders in conjunction with the identified zones to manage risk effectively.
By integrating the Fundur Easy Zones indicator into your trading strategy, you can enhance your market analysis, make more informed decisions, and ultimately improve your trading performance.
ACD Indicator [TradingFinder] M Fisher Pivots Methodology Signal🔵 Introduction
The book "The Logical Trader" begins with a comprehensive review of the ACD Methodology principles, which include identifying specific price points related to the opening range.
This method allows you to set reference points for trading and use points "A" and "C" for trade entry. You will also learn about the "Pivot Range" and how to combine them with the ACD method to maximize position size and minimize risk.
In this indicator, the strategy is implemented to make it easier to use.
🔵 How to Use
The "ACD" strategy can be applied to various markets such as stocks, commodities, or forex, providing buy and sell signals that allow you to set your price targets and stop losses.
This strategy is based on the assumption that the opening range of trades is statistically significant each day, meaning the initial market fluctuations influence the market until the end of the day.
The ACD trading strategy is known as a breakout strategy and performs best in volatile or strongly trending markets, such as crude oil and stocks.
Some of the rules for using the ACD strategy include the following :
Consider points A and C as reference points and continuously pay attention to these points during trades. These points serve as entry and exit points for trades.
Examine daily and multi-day pivot ranges to analyze market trends. If the price is above the pivots, the trend is upward, and if below the pivots, the trend is downward.
Trading with the ACD strategy in forex is possible using the ACD indicator. This indicator is a technical tool used to measure the balance between supply and demand in the market. By analyzing trading volume and price, this indicator helps traders identify trend strength and suitable entry and exit points.
To use the ACD indicator, consider the following :
Identifying strong trends: The ACD indicator can help you identify strong and stable trends in the market.
Determining entry and exit points: ACD provides buy and sell signals to enter or exit trades at the best possible time.
Bullish Setup :
When the "A up" line is broken, it is advisable to wait for some time to ensure that this is not a "Fake Breakout" and that the price stabilizes above this line.
After entering the trade, the best stop loss you can choose is below the "A down" line. However, it is recommended to test this in backtests to achieve the best results. The suitable reward-to-risk ratio for this strategy is 1, which should also be backtested.
Bearish Setup :
When the "A down" line is broken, it is advisable to wait for some time to ensure that this is not a "Fake Breakout" and that the price stabilizes below this line.
After entering the trade, the best stop loss you can choose is above the "A up" line. However, it is recommended to test this in backtests to achieve the best results. The suitable reward-to-risk ratio for this strategy is 1, which should also be backtested.
🔵 Setting
NDay Pivot Range Period : Using this entry you can specify the number of days to calculate NDay Pivot Range.
Show Daily Pivot Range : Set the Daily Pivot color and displayed or not.
Show NDay Pivot Range : Set the NDay Pivot color and displayed or not.
ATR Period Levels : Determining the period of the ATR indicator, which is used to determine the A and C levels.
Show Tokyo ACD Setup : Set the Tokyo ACD Setup color and displayed or not.
Tokyo Opening Range Time : The amount of time taken to determine the opening range. You can set this number between 5 and 60 minutes.
Tokyo Session : Market start and end time.
A Level Multiplier : The coefficient that is multiplied by ATR to determine the distance of line A up and A down.
C Level Multiplier : The coefficient that is multiplied by ATR to determine the distance of line C up and C down.
The same settings exist for the London and New York sessions.
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.
Depth of Market (DOM) [LuxAlgo]The Depth Of Market (DOM) tool allows traders to look under the hood of any market, taking price and volume analysis to the next level. The following features are included: DOM, Time & Sales, Volume Profile, Depth of Market, Imbalances, Buying Pressure, and up to 24 key intraday levels (it really packs a punch).
As a disclaimer, this tool does not use tick data, it is a DOM reconstruction from the provided real-time time series data (price and volume). So the volume you see is from filled orders only, this tool does not show unfilled limit orders.
Traders can enable or disable any of the features at will to avoid being overwhelmed with too much information and to make the tool perform faster.
The features that have the biggest impact on performance are Historical Data Collection, Key Levels (POC & VWAP), Time & Sales, Profile, and Imbalances. Disable these features to improve the indicator computational performance.
🔶 DOM
This is the simplest form of the tool, a simple DOM or ladder that displays the following columns:
PRICE: Price level
BID: Total number of market sell orders filled or limit buy orders filled.
SELL: Sell market orders
BUY: Buy market orders
ASK: Total number of market buy orders filled or limit sell orders filled.
The DOM only collects historical data from the last 24 hours and real-time data.
Traders can select a reset period for the DOM with two options:
DAILY: Resets at the beginning of each trading day
SESSIONS: Resets twice, as DAILY and 15.5 hours later, to coincide with the start of the RTH session for US tickers.
The DOM has two main modes, it can display price levels as ticks or points. The default is automatic based on the current daily volatility, but traders can manually force one mode or the other if they wish.
For convenience, traders have the option to set the number of lines (price levels), and the size of the text and to display only real-time data.
By default, the top price is set to 0 so that the DOM automatically adjusts the price levels to be displayed, but traders can set the top price manually so that the tool displays only the desired price levels in a fixed manner.
🔹 Volume Profile
As additional features to the basic DOM, traders have access to the volume profile histogram and the total volume per price level.
This helps traders identify at a glance key price areas where volume is accumulating (high volume nodes) or areas where volume is lacking (low volume nodes) - these areas are important to some traders who base their decision-making process on them.
🔹 Imbalances
Other added features are imbalances and buying pressure:
Interlevel Imbalance: volume delta between two different price levels
Intralevel Imbalance: delta between buy and sell volume at the same price level
Buying Pressure Percent: percentage of buy volume compared to total volume
Imbalances can help traders identify areas of interest in the price for possible support or resistance.
🔹 Depth
Depth allows traders to see at a glance how much supply is above the current price level or how much demand is below the current price level.
Above the current price level shows the cumulative ask volume (filled sell limit orders) and below the current price level shows the cumulative bid volume (filled buy limit orders).
🔶 KEY LEVELS
The tool includes up to 24 different key intraday levels of particular relevance:
Previous Week Levels
PWH: Previous week high
PWL: Previous week low
PWM: Previous week middle
PWS: Previous week settlement (close)
Previous Day Levels
PDH: Previous day high
PDL: Previous day low
PDM: Previous day middle
PDS: Previous day settlement (close)
Current Day Levels
OPEN: Open of day (or session)
HOD: High of day (or session)
LOD: Low of day (or session)
MOD: Middle of day (or session)
Opening Range
ORH: Open range high
ORL: Open range low
Initial Balance
IBH: Initial balance high
IBL: Initial balance low
VWAP
+3SD: Volume weighted average price plus 3 standard deviations
+2SD: Volume weighted average price plus 2 standard deviations
+1SD: Volume weighted average price plus 1 standard deviation
VWAP: Volume weighted average price
-1SD: Volume weighted average price minus 1 standard deviation
-2SD: Volume weighted average price minus 2 standard deviations
-3SD: Volume weighted average price minus 3 standard deviations
POC: Point of control
Different traders look at different levels, the key levels shown here are objective and specific areas of interest that traders can act on, providing us with potential areas of support or resistance in the price.
🔶 TIME & SALES
The tool also features a full-time and sales panel with time, price, and size columns, a size filter, and the ability to set the timezone to display time in the trader's local time.
The information shown here is what feeds the DOM and it can be useful in several ways, for example in detecting absorption. If a large number of orders are coming into the market but the price is barely moving, this indicates that there is enough liquidity at these levels to absorb all these orders, so if these orders stop coming into the market, the price may turn around.
🔶 SETTINGS
Period: Select the anchoring period to start data collection, DAILY will anchor at the start of the trading day, and SESSIONS will start as DAILY and 15.5 hours later (RTH for US tickers).
Mode: Select between AUTO and MANUAL modes for displaying TICKS or POINTS, in AUTO mode the tool will automatically select TICKS for tickers with a daily average volatility below 5000 ticks and POINTS for the rest of the tickers.
Rows: Select the number of price levels to display
Text Size: Select the text size
🔹 DOM
DOM: Enable/Disable DOM display
Realtime only: Enable/Disable real-time data only, historical data will be collected if disabled
Top Price: Specify the price to be displayed on the top row, set to 0 to enable dynamic DOM
Max updates: Specify how many times the values on the SELL and BUY columns are accumulated until reset.
Profile/Depth size: Maximum size of the histograms on the PROFILE and DEPTH columns.
Profile: Enable/Disable Profile column. High impact on performance.
Volume: Enable/Disable Volume column. Total volume traded at price level.
Interlevel Imbalance: Enable/Disable Interlevel Imbalance column. Total volume delta between the current price level and the price level above. High impact on performance.
Depth: Enable/Disable Depth, showing the cumulative supply above the current price and the cumulative demand below. Impact on performance.
Intralevel Imbalance: Enable/Disable Intralevel Imbalance column. Delta between total buy volume and total sell volume. High impact on performance.
Buying Pressure Percent: Enable/Disable Buy Percent column. Percentage of total buy volume compared to total volume.
Imbalance Threshold %: Threshold for highlighting imbalances. Set to 90 to highlight the top 10% of interlevel imbalances and the top and bottom 10% of intra-level imbalances.
Crypto volume precision: Specify the number of decimals to display on the volume of crypto assets
🔹 Key Levels
Key Levels: Enable/Disable KEY column. Very high performance impact.
Previous Week: Enable/Disable High, Low, Middle, and Close of the previous trading week.
Previous Day: Enable/Disable High, Low, Middle, and Settlement of the previous trading day.
Current Day/Session: Enable/Disable Open, High, Low and Middle of the current period.
Open Range: Enable/Disable High and Low of the first candle of the period.
Initial Balance: Enable/Disable High and Low of the first hour of the period.
VWAP: Enable/Disable Volume-weighted average price of the period with 1, 2, and 3 standard deviations.
POC: Enable/Disable Point of Control (price level with the highest volume traded) of the period.
🔹 Time & Sales
Time & Sales: Enable/Disable time and sales panel.
Timezone offset (hours): Enter your time zone\'s offset (+ or −), including a decimal fraction if needed.
Order Size: Set order size filter. Orders smaller than the value are not displayed.
🔶 THANKS
Hi, I'm makit0 coder of this tool and proud member of the LuxAlgo Opensource team, it's an honor to be part of the LuxAlgo family doing something I love as it's writing opensource code and sharing it with the world. I'd like to thank all of you who use, comment on, and vote for all of our open-source tools, and all of you who give us your support.
And of course thanks to the PineCoders family for all the work in front of and behind the scenes that makes the PineScript community what it is, simply the best.
Peace, Love & PineScript!
CPR By Ask Dinesh Kumar(ADK)Simple CPR Indicator to increase probability of profitable trades:
The Central Pivot Range (CPR) is a trading tool used by traders to identify potential support and resistance levels in the market. Here's a simplified explanation of how traders can potentially profit using the Central Pivot Range with 10 lines:
1. *Understanding CPR*: CPR consists of three lines: the pivot point (PP), upper resistance level (R1), and lower support level (S1). Additionally, traders often add five more of profitable tradeslines above and below the PP to create a 10-line CPR.
2. *Identify Trend*: Determine the prevailing market trend. If the market is bullish, traders will look for buying opportunities near support levels. If the market is bearish, they'll seek selling opportunities near resistance levels.
3. *Entry Points*: Look for entry points near the support (S1) or resistance (R1) levels within the CPR. These levels can act as potential turning points where price may reverse.
4. *Risk Management*: Set stop-loss orders to manage risk. Stop-loss orders should be placed slightly below support levels for long positions and slightly above resistance levels for short positions.
5. *Profit Targets*: Determine profit targets based on the distance between entry point and the next support or resistance level. Some traders use a risk-reward ratio to ensure potential profits outweigh potential losses.
6. *Confirmation*: Use additional technical indicators or price action patterns to confirm potential entry or exit points within the CPR.
7. *Monitor Price Action*: Continuously monitor price action around the CPR levels. Traders should be prepared to adjust their positions if price breaks through support or resistance levels convincingly.
8. *Trade Management*: Once in a trade, actively manage it by adjusting stop-loss orders, trailing stops, or taking partial profits as price moves in the desired direction.
9. *Market Conditions*: Consider broader market conditions, such as economic indicators, geopolitical events, or news releases, which can impact price movements and the effectiveness of CPR.
10. *Practice and Analysis*: Practice using CPR on historical price charts and analyze past trades to refine strategies and improve decision-making skills.
Remember, trading involves risks, and no strategy guarantees profits. It's essential to thoroughly understand the concepts behind CPR and practice disciplined risk management to increase the likelihood of successful trades.
How does central pivot range work:
Sure here's a concise explanation of how the Central Pivot Range (CPR) works in 10 points:
1. *Calculation*: CPR is calculated using the previous day's high (H), low (L), and close (C) prices.
2. *Pivot Point (PP)*: The central point of CPR is the average of the previous day's high, low, and close prices: PP = (H + L + C) / 3.
3. *Upper Resistance Levels (R1, R2, R3)*: These are potential price levels above the pivot point where resistance may occur. They are calculated by adding a multiple of the range (H - L) to the pivot point: R1 = (2 * PP) - L, R2 = PP + (H - L), R3 = PP + 2 * (H - L).
4. *Lower Support Levels (S1, S2, S3)*: These are potential price levels below the pivot point where support may occur. They are calculated similarly to resistance levels but subtracting multiples of the range from the pivot point: S1 = (2 * PP) - H, S2 = PP - (H - L), S3 = PP - 2 * (H - L).
5. *Trading Signals*: Traders use CPR to identify potential support and resistance levels where price may reverse or stall.
6. *Range Bound Markets*: In range-bound markets, traders may buy near support levels (S1, S2, S3) and sell near resistance levels (R1, R2, R3).
7. *Breakout Trading*: When price breaks through a CPR level convincingly, it may indicate a potential trend continuation or reversal, providing breakout trading opportunities.
8. *Volume and Momentum*: Traders often look for confirmation from volume and momentum indicators when price approaches CPR levels.
9. *Intraday Trading*: CPR can be applied to intraday timeframes as well, providing shorter-term traders with potential trading levels for the day.
10. *Dynamic Indicator*: CPR is dynamic and recalculates daily based on new price data, allowing traders to adapt their strategies to current market conditions.
Understanding how to interpret CPR levels and integrate them into a trading strategy can help traders identify potential entry and exit points in the market.
Intraday CPR with Previous Highs and Lows and Swing Highs/LowsThis Pine Script indicator plots the Central Pivot Range (CPR) for the current trading day along with previous day's high (PDH), low (PDL), and swing high/low (Swing H/L) values. It also includes the high, low, and swing high/low values from two days back for reference.
Key Features:
Central Pivot Range (CPR):
Pivot Point (PP): The central pivot point.
Bottom Central Pivot (BC): The lower boundary of the CPR.
Top Central Pivot (TC): The upper boundary of the CPR.
The area between the BC and TC is shaded for better visualization.
Previous Day and Two Days Back Values:
Previous Day High (PDH) and Low (PDL): Plots the high and low of the previous trading day.
Two Days Back High and Low: Plots the high and low from two trading days ago.
Previous Day Swing High/Low: The highest high and lowest low from a specified period (swing period) of the previous trading day.
Two Days Back Swing High/Low: The highest high and lowest low from a specified period (swing period) of two trading days ago.