itradesize /\ Time Cycles x Zeussy supplementaryThis is a supplementary script to my previous itradesize /\ Time Cycles x Zeussy script. It should be displayed in a new pane.
This script will display the 30 and 90 AMD Time Cycles, along with the Asia, London, and New York AM & PM sessions in a new pane, based on the times taught by Zeussy.
You have the option to customize which cycles you would like to display, as well as the arrangement of the cycles based on the location of the pane (above or below the current chart).
The script can also be used for backtesting; just uncheck the 'Draw Today's Only' option.
Session timings are as follows:
Asia: 20:00 - 00:00
London: 02:30 - 07:00
NY AM: 07:00 - 11:30
NY PM: 11:30 - 16:00
London Cycles:
- 02:30 - 04:00
- 04:00 - 05:30
- 05:30 - 07:00
AM Cycles:
- 07:00 - 08:30
- 08:30 - 10:00
- 10:00 - 11:30
PM Cycles:
- 11:30 - 13:00
- 13:00 - 14:30
- 14:30 - 16:00
Concept
itradesize /\ Time Cycles x ZeussyI created this script based on Zeussy's & TOTK time cycle tweets.
The base 90-minute cycle starts at 2:30 AM NY time. For the best outcome, trade only during the New York AM & PM cycles. If you are a London trader, use mainly the Asian high and low instead of those 90-minute cycles as the algorithm mostly refers to them instead of the 90M cycles high or low.
In the current time cycle, we use the high and low of the previous cycle(s) to determine order flow.
During the current time cycle, IPDA refers to the previous cycle(s) as high or low. How the price reacts to these price levels is crucial for measuring order flow.
Every turning point in the market is timed and predetermined beforehand. The importance of timing can be seen by glancing at the history of the charts.
To measure order flow, we look for the following signs of reversal or continuation:
- If the price was bullish but does not find support at the previous cycle's high after breaking above it, it is the first warning sign that the order flow is potentially changing.
- If the price was bearish but does not find resistance at the previous cycle's low after breaking below it, it is the first warning sign that the order flow is potentially changing.
- If the price is bullish, then it should find support at the previous cycle's high after breaking above it.
- If the price is bearish, then it should find support at the previous cycle's low after breaking below it.
Each cycle has its Accumulation , Manipulation , and Distribution (AMD) characteristics within the larger sessions.
Even smaller cycles have these characteristics too. You can divide them further or add them up to get a more complex picture.
The indicator primarily shows the 90-minute cycles, but you can also view the multiples of 90-minute cycles to get a higher 270-minute picture. You can even divide them further into 30-minute cycles. (These 30-minute cycles can also be divided into 10-minute cycles.)
The AM sessions are from:
- 07:00 - 8:30
- 8:30 - 10:00
- 10:00 - 11:30
The PM sessions are from:
- 11:30 - 13:00
- 13:00 - 14:30
- 14:30 - 16:00
Regarding the features of the indicator, you can show the cycles as dividers or use boxes to highlight them.
The indicator also comes with a pivot high & low for the 90-minute cycles, which means the script automatically lengthens the high or low of the former 90-minute cycle until it's taken. If it has not been taken until the 90-minute cycle ends, it stops drawing.
BTC Purchasing Power 2009-20XX! Hello, today I'm going to show you something that shifts our perspective on Bitcoin's value, not just in nominal terms, but adjusted for the real buying power over the years. This Pine Script TAS developed for TradingView does exactly that by taking into account inflation rates from 2009 to the present.
As you know, inflation erodes the purchasing power of money. That $100 in 2009 does not buy you the same amount in goods or services today. The same concept applies to Bitcoin. While we often look at its price in terms of dollars, pounds, or euros, it's crucial to understand what that price really means in terms of purchasing power.
What this script does is adjust the price of Bitcoin for cumulative inflation since 2009, allowing us to see not just how the nominal price has changed, but how its value as a means of purchasing goods and services has evolved.
For example, if we see Bitcoin's price at $60,000 today, that number might seem high compared to its early years. However, when we adjust this price for inflation, we might find that in terms of 2009's purchasing power, the effective price might be somewhat lower. This adjusted price gives us a more accurate reflection of Bitcoin's true value over time.
This script plots two lines on the chart:
The Original BTC Price: This is the unadjusted price of Bitcoin as we typically see it.
BTC Purchasing Power: This line shows Bitcoin's price adjusted for inflation, reflecting how many goods or services Bitcoin could buy at that point in time compared to 2009.
By comparing these lines, we can observe periods where Bitcoin's purchasing power significantly increased, even if the nominal price was not at its peak. This can help us identify moments when Bitcoin was undervalued or overvalued in real terms.
This analysis is crucial for long-term investors and traders who want to understand Bitcoin's value beyond the surface-level price movements. It helps us appreciate Bitcoin's potential as a store of value, especially in contexts where traditional currencies are losing purchasing power due to inflation.
Remember, investing is not just about riding price waves; it's about understanding the underlying value. And that's precisely what this script helps us to uncover
Dynamic Gradient Filter
Sigmoid Functions:
History and Mathematical Basis:
Sigmoid functions have a rich history in mathematics and are widely used in various fields, including statistics, machine learning, and signal processing.
The term "sigmoid" originates from the Greek words "sigma" (meaning "S-shaped") and "eidos" (meaning "form" or "type").
The sigmoid curve is characterized by its smooth S-shaped appearance, which allows it to map any real-valued input to a bounded output range, typically between 0 and 1.
The most common form of the sigmoid function is the logistic function:
Logistic Function (σ):
Defined as σ(x) = 1 / (1 + e^(-x)), where:
'x' is the input value,
'e' is Euler's number (approximately 2.71828).
This function was first introduced by Belgian mathematician Pierre François Verhulst in the 1830s to model population growth with limiting factors.
It gained popularity in the early 20th century when statisticians like Ronald Fisher began using it in regression analysis.
Specific Sigmoid Functions Used in the Indicator:
sig(val):
The 'sig' function in this indicator is a modified version of the logistic function, clamping a value between 0 and 1 on the sigmoid curve.
siga(val):
The 'siga' function adjusts values between -1 and 1 on the sigmoid curve, offering a centered variation of the sigmoid effect.
sigmoid(val):
The 'sigmoid' function provides a standard implementation of the logistic function, calculating the sigmoid value of the input data.
Adaptive Smoothing Factor:
The ' adaptiveSmoothingFactor(gradient, k)' function computes a dynamic smoothing factor for the filter based on the gradient of the price data and the user-defined sensitivity parameter 'k' .
Gradient:
The gradient represents the rate of change in price, calculated as the absolute difference between the current and previous close prices.
Sensitivity (k):
The 'k' parameter adjusts how quickly the filter reacts to changes in the gradient. Higher values of 'k' lead to a more responsive filter, while lower values result in smoother outputs.
Usage in the Indicator:
The "close" value refers to the closing price of each period in the chart's time frame
The indicator calculates the gradient by measuring the absolute difference between the current "close" price and the previous "close" price.
This gradient represents the strength or magnitude of the price movement within the chosen time frame.
The "close" value plays a pivotal role in determining the dynamic behavior of the "Dynamic Gradient Filter," as it directly influences the smoothing factor.
What Makes This Special:
The "Dynamic Gradient Filter" indicator stands out due to its adaptive nature and responsiveness to changing market conditions.
Dynamic Smoothing Factor:
The indicator's dynamic smoothing factor adjusts in real-time based on the rate of change in price (gradient) and the user-defined sensitivity '(k)' parameter.
This adaptability allows the filter to respond promptly to both minor fluctuations and significant price movements.
Smoothed Price Action:
The final output of the filter is a smoothed representation of the price action, aiding traders in identifying trends and potential reversals.
Customizable Sensitivity:
Traders can adjust the 'Sensitivity' parameter '(k)' to suit their preferred trading style, making the indicator versatile for various strategies.
Visual Clarity:
The plotted "Dynamic Gradient Filter" line on the chart provides a clear visual guide, enhancing the understanding of market dynamics.
Usage:
Traders and analysts can utilize the "Dynamic Gradient Filter" to:
Identify trends and reversals in price movements.
Filter out noise and highlight significant price changes.
Fine-tune trading strategies by adjusting the sensitivity parameter.
Enhance visual analysis with a dynamically adjusting filter line on the chart.
Literature:
en.wikipedia.org
medium.com
en.wikipedia.org
Cryptocurrency Altcoin Screener
This indicator works as a screener for bullish/bearish moves. There are two versions showing two different sets of Altcoins, just choose version 1 or 2. Load up any chart and it will show all selected pairs and their current state regardless of asset or timeframe. Assets can be shown/unshown and longs/shorts can be shown/unshown.
It shows (asset) +1 if it considers it bullish
(asset) -1 if it considers it bearish
(asset) 0 if considers the asset to be neutral/choppy
You can see how effective the indicator is by loading up the asset you're looking at, this will show the true history of the markers for that asset.
This script utilises MACD and RSI on the daily timeframe on both USDT and BTC pairs in order to identify a trend.
The main purpose of the script is to easily identify strong trends that allow you to do TA with rather than manually looking at every asset
itradesize /\ IPDA Look Back - for any timeframeThe script automatically calculates the 20-40-60 look-back periods and their premium and discount ranges.
The base concept is from ICT’s IPDA which should be applied to the daily timeframe but now you can use that same concept on the lower timeframes .
The higher the timeframes you use the more reliable it will be ( when we are talking about lower timeframes than Daily ).
- With the use of the indicator you can apply it on any timeframe with ease.
- You can customize the coloring of premium & discount, frame lines, and even the look of it.
- Hide or show the EQ levels
Below the IPDA texts the indicator shows the actual percentage of the selected range based on the current price fluctuations.
The script handles the 20-40-60 days look-back as fractals so it can be applied on lower timeframes.
The basics:
- The Interbank Price Delivery Algorithm (IPDA): The algorithm creates a shift on the daily chart every 20, 40, and 60 trading days.
- These are the IPDA look-back periods. Every 20 trading days or so there is a new liquidity pool forming on both sides of the market based on ICT concepts.
- Determine the IPDA Data Range of the land 20 trading days.
- Note the highest high & lowest low in the past 20 trading days. Identify the institutional order flow and mark the relevant PD arrays in the selected IPDA look-back period we deemed useful for our trading style.
- This is your current dealing range.
- If the price consolidates for 20 days, consider switching to a 40-day look back.
Inside this dealing range, we look for the next draw on liquidity. Is it reaching for a liquidity pool or is it looking to rebalance at a particular PD Array. This is going to the Bias.
Which IPDA data range should you use?
IPDA20 can be our Short Term range - fit for intraday traders at most
IPDA40 can be our Swing Trade range - have a clear indication of the market profile
IPDA60 can be our range for position trading - have a clear indication of the market profile
itradesize /\ Silver Bullet x Macro x KillzoneThis indicator shows the best way to annotate ICT Killzones, Silver Bullet and Macro times on the chart. With the help of a new pane, it will not distract your chart and will not cause any distractions to your eye, or brain but you can see when will they happen.
The indicator also draws everything beforehand when a proper new day starts.
You can customize them how you want to show up.
Collapsed or full view?
You can hide any of them and keep only the ones you would like to.
All the colors can be customized, texts & sizes or just use shortened texts and you are also able to hide those drawings which are older than the actual day.
You should minimize the pane where the script has been automatically drawn to therefore you will have the best experience and not show any distractions.
The script automatically shows the time-based boxes, based on the New York timezone.
Killzone Time windows ( for indices ):
London KZ 02:00 - 05:00
New York AM KZ 07:00 - 10:00
New York PM KZ 13:30 - 16:00
Silver Bullet times:
03:00 - 04:00
10:00 - 11:00
14:00 - 15:00
Macro times:
02:33 - 03:00
04:03 - 04:30
08:50 - 0910
09:50 - 10:10
10:50 - 11:10
11:50 - 12:50
"Daily Range with Filtre [Hunter_Algo]
- The script calculates the high and low ranges based on the specified session time, such as the Asia Liquidity session.
- It uses the timeinrange function to determine if the current bar is within the specified session.
- High and low values are updated based on whether the current high or low surpasses the previous values within the specified session.
- The script includes functions to convert day strings to integers and style strings to enumeration values.
- There are additional inputs related to the start and end of the day range, as well as colors and styles for various elements.
- The script calculates daily high (Dh), daily low (Dl), and other variables based on certain conditions, including the day of the week.
MONEY ZONEA volume profile is an advanced charting tool that displays the traded volume at different price levels over a specific period. It helps you visualize where the majority of trading activity has occurred.
This indicator is a Market Profiling tool used to analyse the Point of Control (POC) and Value Area (VAH/VAL) on the daily, weekly and monthly timeframes. It also optionally displays historical Value Areas to help find confluence with past data.
The Point of Control describes the price level where the most volume was traded. A Naked Point of Control (also called a Virgin Point of Control) is a previous POC that has not been traded.
The Value Area is a range of prices where the majority of trading volume took place on the prior trading day. In specific, this area is the range where 70% of the prior day’s volume happened. The value area is approximately one standard deviation above and below the average highest volume price. With this knowledge, there are specific probabilities of market behavior we can understand to digest the value area. The value area gives us an idea of where the smart money is playing ball and where the institutions are guiding the market. From this data, we can derive intra-day strategies that capitalize on market behavior.
🔹 Point of Control (PoC)
Point of Control (POC) – The price level for the time period with the highest traded volume
🔹 Value Area (VA)
Value Area (VA) – The range of price levels in which the specified percentage of all volume was traded during the time period.
CAMARILLA PIVOTSThis indicator is based on the Pivot study. Traders will be able to plot CPR, Standard floor pivots as well as Camarilla Pivots on multiple timeframes.
Why pivots from multiple timeframes are relevant and included in this one indicator?
We can analyse pivots on multiple timeframes for different trading setups. As in, Daily floor pivots are best suited for analysing the market trend for Day trading. Similarly, Weekly and Monthly floor pivots can be analysed for Swing and positional trading entries. Whereas yearly pivot is best suited for trend analysis for investment purpose.
What is the relevance of plotting tomorrow's pivot level in advance?
Pivot are calculated based on the price happened on a previous day. And hence trader can plot tomorrow pivots in advance to shortlist stocks for tomorrow's trading session.
TimeFrames Available to traders are –
- Auto (1H)
1. Daily
2. Weekly
3. Monthly
4. Quarterly
5. Yearly
A) Daily Pivots
Present Day –
1. Trader can plot Daily CPR
2. Trader can plot Daily R1, R2, R3 and R4 pivot resistance levels
3. Trader can plot Daily S1, S2, S3 and S4 pivot support levels
4. Trader can plot Daily Camarilla levels
Future Day –
1. Trader can plot Tomorrow CPR
2. Trader can plot Tomorrow R1, R2, R3 and R4 pivot resistance levels
3. Trader can plot Tomorrow S1, S2, S3 and S4 pivot support levels
4. Trader can plot Tomorrow Camarilla levels
5. Previous Day High and Low
B) Weekly Pivots
Present Week –
1. Trader can plot Present week CPR
2. Trader can plot Present week R1, R2, R3 and R4 pivot resistance levels
3. Trader can plot Present week S1, S2, S3 and S4 pivot support levels
4. Trader can plot Present week Camarilla levels
Next Week –
1. Trader can plot Next week CPR
2. Trader can plot Next week R1, R2, R3 and R4 pivot resistance levels
3. Trader can plot Next week S1, S2, S3 and S4 pivot support levels
4. Trader can plot Next week Camarilla levels
5. Previous Week High and Low
C) Monthly Pivots
Present Month –
1. Trader can plot Present Month CPR
2. Trader can plot Present Month R1, R2, R3 and R4 pivot resistance levels
3. Trader can plot Present Month S1, S2, S3 and S4 pivot support levels
4. Trader can plot Present Month Camarilla levels
Next Month –
1. Trader can plot Next Month CPR
2. Trader can plot Next Month R1, R2, R3 and R4 pivot resistance levels
3. Trader can plot Next Month S1, S2, S3 and S4 pivot support levels
4. Trader can plot Next Month Camarilla levels
5. Previous Month High and Low
EXTREME REVERSAL SETUP:
This is by far my favorite setup in the lot. Classic Mean Reversion setup.
The logic, as explained in the book, goes like this,
1. The first bar of the pattern is about two times larger than the average size of the candles in the lookback period.
2. The body of the first bar of the pattern should encompass more than 50 percent of the bar’s total range, but usually not more than 85 percent.
3. The second bar of the pattern opposes the first.
The setup works extremely well in high beta stocks like Vedanta VEDL.
Feel free to play with the settings in order to better align this pattern with your favorite stock.
OUTSIDE REVERSAL SETUP:
My second favorite setup, it is quite good at catching intraday trends.
Here’s the logic,
1. The engulfing bar of a bullish outside reversal setup has a low that is below the prior bar’s low and a close that is above the prior bar’s high. Reverse the conditions for bearish outside reversal.
2. The engulfing bar is usually 5 to 25 percent larger than the size of the average bar in the lookback period.
Settings for this pattern simply reflect these conditions. Feel free to modify them as you wish.
DOJI REVERSAL SETUP:
Doji candles signify market indecision and this pattern tries to profit off these market conditions.
Logic:
1. The open and close price of the doji should fall within 10 percent of each other, as measured by the total range of the candlestick.
2. For a bullish doji, the high of the doji candlestick should be below the ten-period simple moving average. Vice-versa for bearish.
3. For a bullish doji setup, one of the two bars following the doji must close above the high of the doji. Vice-versa for bearish.
Feel free to modify the settings and optimize according to the stock you are trading.
Don't optimize too much :)
This pattern works brilliantly well on larger intraday timeframes, like 15m/30m/60m.
This pattern also has a higher propensity to give false indications than the two described above.
Doji reversal typically helps to catch larger trend reversals.
WICK REVERSAL SETUP:
This pattern tries to capture candlesticks with large wick sizes, as they often indicate trend reversal when coupled with significant support and resistance levels.
Logic:
1. The body is used to determine the size of the reversal wick. A wick that is between 2.5 to 3.5 times larger than the size of the body is ideal.
2. For a bullish reversal wick to exist, the close of the bar should fall within the top 35 percent of the overall range of the candle.
3. For a bearish reversal wick to exist, the close of the bar should fall within the bottom 35 percent of the overall range of the candle.
This pattern must always be coupled with important support resistance levels, else there will be a lot of false signals.
This indicator helps you identify market structure by plotting swing highs and lows (HH, LH, HL, LL).
Indicator Settings Overview
SWING LENGTH
The number of leftbars and rightbars when searching for swing points. The lower the value, the more swing points are shown and the higher the value, the less swing points are shown. I suggest adjusting it to fit your style and when switching between different timeframes.
Oops!Oops! is based on an overemotional response, then a quick reversal of the concomitant overreaction of price. The overreaction we are looking for to give us a buy signal is an opening that is below the previous day's low. The entry comes when, following the lower open, price then rallies back to the previous day's low (selling pressures have been abated and a market rally should follow). A sell signal is just the opposite. We will be looking for an open greater than the prior day's high. Our entry then comes from price falling back to the prior high, giving us a strong short-term suggestion of lower prices to come.
Cycle OscillatorThe Cycle Oscillator is a tool developed to help traders analyze market cycles thanks to a simplified version of the Hurst theory and the easy visualization provided by the detrended cycle.
This indicator has two functions:
- The first one is the plotting of a line that oscillates above and below the zero line, which can be used to find the cycle direction and momentum
- The second feature is the next-cycle bottom forecaster, useful for estimating the timing of the future pivot low based on the pivot low of the oscillator.
This last feature shows graphically the period in which the next low will probably happen, using as a calculation method the timing of the previous indicator's lows.
Additionally, the user can choose to modify the cycle length to analyze bigger or smaller price movements.
This indicator can be greatly used in combination with other Cycle Indicators to gain more confluence in the plotted time areas.
Cycle IndicatorThe Cycle Indicator is a tool developed to help traders analyze market cycles thanks to a simplified version of the Hurst theory.
This indicator has two functions:
- The first one is the plotting of a line that can be used to find the cycle direction and momentum
- The second feature is the next-cycle bottom forecaster, useful for estimating the timing of the future pivot low.
This last feature shows graphically the period in which the next low will probably happen, using as a calculation method the timing of the previous lows.
Additionally, the user can choose to extend this time zone or to limit them to the range between the last pivot high and low.
itradesize /\ Previous HTF x OHLC Box
FYI: It is an invite-only script, if you are interested in, please scroll down to see the Author's instructions.
Introducing an indicator which inspired by ICT concepts that use a model, based on what TTrades teaches in some of his DOL videos about how to get a proper bias.
Having a daily bias can be frustrating and this script could make it easy for you besides creating a ton of opportunities for scalpers as well as not only helpful for a daily bias, it can also help you to determine the actual H4 or H1 bias or even lower.
Always keep in mind: the higher the timeframe you use, the more accurate it can be.
You can use OHLC to determine the current or higher time frame bias as it can be used on any of them and properly gain a sentiment of a drawn of liquidity.
This model integrates the previous candle's open, high, low, and close values (or open, low, high close) in addition to their equilibrium to make it easier to identify where the price should go moreover they can be used as reference points for potential trading opportunities.
The 50% also known as equilibrium creates premium and discount zones within the previous candles. Using the former higher timeframe candle’s OHLC you can simply have an external range of liquidity and where the current price should it drawn to.
With this tool, you can achieve a proper trading framework as you can easily recognize the external & internal range of liquidity, so whether you are a scalper or a day trader you are able to rely on the indicator.
A bit of a candlestick analysis:
When the price wicks below means a potential bullish reversal is incoming.
When the price wicks above, then it means a potential bearish reversal is happening.
Closing below means lower prices. (Bearish trend)
Closing above means higher prices. (Bullish trend)
This indicator is an absolute monster for the OHLC guys.
How to use it?
- Analyse the trend on the higher timeframe, bullish trend is when the price continuously takes the previous candle’s high over and over again. Bearish trend is the total opposite.
- Wait for external liquidity to be taken.
- When it's happening there should be a displacement back to the range with an actual structure shift.
- Looking for an imbalance in the displacement.
- Aiming for an imbalance that is above 50% of the former move.
- Aggressive stop: below or above the candle which has an imbalance
- Conservative stop: below or above the former swing
Classic sell setup:
Classic buy setup:
The indicator has a ton of customizable features, the power of the tool is really in there, as you can find or refine your own model with it. Once you're familiar with your setup you will be really feeling the power of the tool, I promise.
Indicator Features:
• M5/M15/H1/H4/D Time frames
• OHLC bar with an offset (you can have a look at the current HTF bar developing or you can use it as a locked previous bar)
• Current time frame OHLC / OLHC box with extended lines to the current time
• Showing the previous time frame OHLC / OLHC box with extended lines and the ability to add labels. The color of the OHLC or OLHC box is based on the candle closing. If it's a bear candle, if it's a bull candle.
• Previous high time frame open / close lines with labels, customisable colours, label sizes
• It has a lot of customisable features, the power of the tool is really in there as you can find or refine your own model with it.
• Every box and bar automatically switches its colors based on the close of the candle whether it's a bear or a bull candle.
• The color of the labels is switching automatically based on the coloring of your chart.
• You can customize each and every box color - OHLC/OLHC based on your taste, and the open and closing lines of the previous HTF.
Additional Information:
You can combine it with my own model. If you are not familiar with it, you can find here .
Or you can combine it with other frameworks for extra confluences like combining it with Daye’s QT in some simple equation:
Open → Q1 , High → Q2, Low → Q3, Close → Q4
Open → Q1, Low → Q2, High → Q3, Close → Q4
itradesize /\ Model x RTH Gap
I’m happy to announce my model and sharing it with you as an indicator.
About the model
The model is based on a range from 18:00 until 1:30. If you are keen you probably know that it's something that based on a bit of Daye's Theory. As Daily Q4 is from 18:00 until 0:00 and I've added a 90's Q1 to it as well that's why it ended up at 1:30.
It's an accumulation range and where we are looking for some opportunities above or below it when the algo is trying to fake the traders as the high and the low of the range are both important zones for liquidity pools. This model works on almost every pair but I've been mostly focusing on indices, especially on ES, NQ, and EUR/USD.
Do not trade before 1:30 AM and do not trade this model after 6:00 AM. So any tradable setup must be valid until 6:00 AM.
*All the mentioned times are based on America/NewYork timezone.
A simple sell setup
∆ If it takes the high of the model, then look for short opportunities.
∆ The best reliable scenario is when a high is taken while retracing back to an HTF PD Array so it will end up in a failure swing, Judas swing, you name it.
∆ When a high is taken you should wait for a market structure shift then it should give a nice displacement where it should retrace.
∆ The imbalance after the shift can be on every timeframe, based on your trade idea.
∆ If there are more imbalances, your decision on which to go with (as if there is a BPR, Breaker, OB, etc.. - can change the view of an FVG).
The same story goes for a buy setup.
∆ The first target is always the EQ of the model's range.
∆ The second target could be liquidity inside the EQ and the other side of the model (optional).
∆ The third target is the other side of the model.
∆ You can always leave a runner there if you eyeing some levels outside the model.
Additional information
∆ You can use silver bullet range as an extra confirmation when you looking for the actual displacement.
∆ An RTH range is also added to the indicator (starts drawing at 9:30 when the futures market opens) as it can be used to trade in the NY session and it is a must-have thing when trading indices.
∆ The colors of every label are switched automatically based on your chart's coloring.
NormInvTargetSeekerNormInvTargetSeeker
The NormInvTargetSeeker is a trading tool designed to aid traders in identifying and capitalizing on Distribution and Accumulation zones, highlighting specific price levels that could serve as targets for future price movements. Although the indicator itself is not multi-timeframe, an effective trading strategy might involve signal validation across multiple timeframes.
🔶 USAGE
The indicator identifies Distribution and Accumulation zones, providing potential targets for future price moves.
Traders are encouraged to use these zones as profit targets or potential reversal points.
Confluence Zones
These zones are identified as regions where various factors or levels converge, signaling an increased probability of price reaction.
They can be used to reinforce signals or identify levels where price might encounter significant resistance or support.
🔹 Trading Strategy
First, identify a signal on your primary trading timeframe.
Manually check higher timeframes to ensure the signal aligns with them.
Use the identified zones, whether Distribution or Accumulation, as target zones for your trades.
🔶 Order Blocks
The NormInvTargetSeeker identifies "Order Blocks" by examining a specified number of consecutive candles with a specific condition: the current candle must completely engulf the previous candle. This means that both the high and low of the current candle are higher and lower, respectively, than the high and low of the previous candle, signifying a dominant move in the direction of the current candle.
🔹 Trading Strategy
Target Confirmation: Order Blocks can serve to confirm target points, providing additional validation for identified levels.
Market Insight: They offer crucial insights into whether "big hands" or institutional players are positioned as buyers or sellers in the market.
Traders can use Order Blocks as a means to validate targets or key price levels, observing if the price reacts significantly upon reaching these blocks.
They can also provide insights into the general market direction or underlying market strength by identifying where the major market players are placing their orders.
🔶 SETTINGS
The indicator allows users to adjust various parameters to customize the display and logic of the tool to fit their needs.
🔹 Display Settings
Users can customize the colors and displays of various zones and labels to match their preferences.
🔶 LICENSE AND CREDITS
This work is licensed under Attribution-NonCommercial-ShareAlike 4.0 International (CC BY-NC-SA 4.0). More information here: creativecommons.org
This indicator utilizes a TypeScript implementation of the Normal Inverse function as a reference, which can be found here : github.com
Special thanks to the authors of the referenced code for providing a foundation upon which this indicator was built.
🔶 UPDATES
Current Version: 1.0.0
For future updates, please check the comment section.
🔶 CONTACT
For any questions or suggestions, please feel free to contact @RickSimpson on TradingView.
Earnings LevelsI am proud to announce that the formerly secret "Key Earnings Levels" graphing tool will be freely available to TradingView users whereas before it was only available by monthly or annual subscription since its invention here at TradingView many years ago by Tim West. TradingView code writers wrote the original code for using this powerful tool and then Johannes Falkenburg re-wrote the code several years ago.
The most important FOUR days a year in a stock chart are the days that the company gives its quarterly update. Since the GRAND majority of companies have earnings, the indicator is called the "Key Earnings Level", or KEL for short. The unique part of the release of the quarterly update is that it can be "before the open" or "after the close" and the price action leading up to the earnings and immediately after the earnings are useful for future reference, as you'll see shortly.
The Key Earnings indicator plots a triangle for the range around the day before and the day after earnings and draws a mid-point line to capture the over/under level for that report. That mid-point line is then extended into the future for a minimum of one quarter until the next earnings report and as long as a year with the current code.
This triangle plot allows you to see how a stock is trading RELATIVE TO where it was trading when earnings were announced and when a glimpse into the current quarter along with projections for the upcoming year.
Simply put: Key Earnings Levels are the easiest way to see how a stock is doing relative to the most important four days a year.
You can devise your own trading strategies around these levels, but I want you to have this information so you can see it and know it too. I've kept this little secret of Key Hidden Levels to myself and my followers in the Key Hidden Levels Chat Room here at TradingView for far too long. I have occasionally published charts with the Key Earnings Levels but have not made the code freely available to TradingView subscribers.
If anyone has paid me for access to these indicators and wants a refund, I will be glad to do that. This is too important to keep from everyone any longer. I think it is essential to make this available to everyone to make sure we all have the most advantage we can get when investing and trading in the markets.
I hope you can all find the powerful benefit from using Key Earnings Levels and please thank Johannes Falkenburg aka @Vollchaot here at TradingView for writing the latest version of this code.
The idea itself came from using TradingView and the powerful graphing and layout features here to track our observations and to do research. Thank you TradingView for such a great product.
I look forward to answering any questions.
Sincerely,
Tim West
3M_RANGE/ErkOzi/Hello Dear Investors,
Today, I'd like to introduce you to an indicator called "3M Range" and explain how this indicator is calculated, as well as the kind of strategy it can offer.
What is the 3M Range Indicator?
"3M Range" is an analytical tool designed to identify and visualize market movements within three-month periods. This indicator employs specific levels and Fibonacci levels to assist investors in understanding market trends.
How is it Calculated?
The indicator utilizes the opening, highest, and lowest prices of three-month periods starting on Mondays. By using these prices, the indicator tracks weekly opening prices and marks the opening prices every Monday.
How Does the Indicator's Strategy Work?
Using this indicator, you can refine your long-term investment strategies:
Identify Three-Month Periods: The indicator follows the opening, highest, and lowest prices in three-month periods. This allows for a clearer understanding of long-term trends.
Utilize Fibonacci Levels: The indicator calculates Fibonacci levels to show support and resistance levels. These levels can help predict potential reversals or ongoing movements.
Observe Monday Opening Prices: The indicator distinctly marks Monday opening prices. This helps you capture potential movements at the beginning of the week.
Evaluate Trends and Opportunities: By using the indicator, you can observe long-term trends and potential market opportunities more clearly.
In Conclusion,
The "3M Range" indicator provides long-term investors with a better analytical tool by showcasing market movements within three-month periods. The indicator marks Monday opening prices and allows for analysis supported by Fibonacci levels. By using this indicator, you can shape your long-term investment strategies more consciously.
Always remember that, as with anything, making careful and informed decisions is crucial when investing. I hope this indicator helps you better navigate your long-term investments.
Note: Understanding market risks and utilizing analytical tools carefully is always important. Best of luck!
Baha'i Reversal Points [CC]The Baha'i Reversal Points is a custom creation that combines some of my favorite passions, creating stock indicator scripts and my faith. The Baha'i Faith believes in the oneness of God and all religions, and sees the number 9 as significant because that is the number of major world religions as well as the Baha'i symbol is a nine-pointed star. The number 19 is also seen as significant because in the Baha'i calendar, there are 19 months, and each month is made up of 19 days. Anyway, with all that being explained, I created these reversal points to find the points where the last 19 highs or lows are higher or lower, respectively than the previous high or low nine days ago. As with many indicators, this does have some hits and misses but does a pretty good job of finding reversal points based on these criteria.
There are a few different ways to analyze this data to determine when to buy or sell. I have set the default behavior for when we encounter the first time that the amount of highs or lows is greater than or equal to the length amount using a crossover or crossunder alert. You could also ignore the crossover or crossunder alerts and buy when the count is greater than or equal to the length, which can happen for extended periods depending on the underlying trend. Overall, buy when the buy label appears and sell when the sell label appears.
Let me know if there are any other custom indicators or scripts you would like to see me publish!
KeitoFX Dynamic Indicator Free vers.This script represents a versatile dynamic indicator called "KeitoFX Dynamic Indicator Free version." It is developed by the author "KeitoFX" and operates as a custom indicator overlaying on financial charts. The indicator utilizes a unique algorithm to dynamically identify bullish and bearish candlestick patterns with specific criteria.
Key Features:
- The indicator visually marks bullish and bearish candlestick patterns using triangle shapes, providing quick visual cues to traders.
- Bullish patterns are detected when the closing price is higher than the opening price and the high and low prices of the candlestick form a narrow range.
- Bearish patterns are identified when the closing price is lower than the opening price, and the high and low prices also form a narrow range.
The indicator incorporates flexible settings that users can customize to fit their trading preferences:
- Users can choose the table's placement, either at the "Top Right," "Middle Right," or "Bottom Right" of the chart.
- Customizable dimensions for the width and height of the table are available.
- Adjustable text size settings ranging from "Auto" to "Huge" are provided for the displayed text.
- A descriptive table containing trading rules and conditions is optionally displayed below the price chart.
Additional Information:
- The indicator's color scheme is harmonious, with shades of purple and neutral tones.
- The "Require FVG" setting influences the pattern detection's sensitivity.
- A dynamic standard deviation is calculated based on the selected displacement settings and historical candle ranges.
- A "FVG" condition enhances pattern accuracy.
- Bullish and bearish pattern detection includes overlapping with other predefined arrays to increase pattern significance.
Note:
This indicator is provided under the Mozilla Public License 2.0, as indicated by the source code comment at the beginning of the script. Users are encouraged to review and comply with the license terms when using this indicator in their trading activities.
Omega OscillatorThe Omega Oscillator is a toolkit designed to help both experienced and new traders with their trading decisions.
This indicator is a part of the omega toolkit, and his creation method is based on the concept that every trading strategy should have a way to determine the trend, or the bias, that answers the question “long or short?”; the location, which identifies the best price level to enter into a position and to exit, both in profit and in loss, and that will decide the final risk-to-reward ratio of the trade you take; the signal, which is useful to determine the best moment to enter into a position and that if paired with the trend point, his purpose is to identify when the large trend picture is in confluence with the small term; and last but not least the filter point, the filter is used to have another way to have an additional confluence with the trade you want to take, and it’s important to reduce the number of false signals and to increase the win rate.
This tool aims to help traders with the identification of the filter, to allow traders to judge their trades with other tools that can reduce false signals. It’s important to note that indicator and technical analysis is only one of the several different ways to analyze an asset.
One of the main things to keep in mind when working with the financial markets is that not every asset, every historical phase, and every market condition is the same, this is why this tool can be highly personalized and adjustable and provide different overlay tools in order to allow traders to choose the best settings considering these variables and your backtests.
The Oscillator can potentially work on any timeframe and any market thanks to these characteristics, and contains several different unique features:
- Optimization for the perception length parameter, used to analyze data.
- Optimization for the analysis length parameter, used to display data.
- Faculty to personalize the aesthetics of the indicators with the colors and the line width of the main line.
- 5 different tools to let the user choose the optimal way to filter out false signals and analyze the markets.
This script contains several different oscillators, each one precisely designed to remove false signals of different methods of trade.
The first one, called “Omega” is a combination of the best functionality of the other indicator. It contains the “Pendulum” advanced stochastic lines and overbought and oversold lines to analyze reversals, a long-term smoothed histogram to analyze the trend direction based on the “Pullback” formula, and the excess in the volume of the “Interest” oscillator.
The second one is called “Efficiency” and it aims to be the optimal tool to combine with the popular volume spread analysis. His purpose is to analyze the efficiency that the volume has to move the price and this means that when the oscillator is positive, either for the short term with the separated colored lines or the histograms that show the difference between the two lines in the middle-long term trend, this means that the volume has more strength compared to the opposite site volume. The usage of this indicator is to filter out bad signals in the area you are evaluating to take a trade. Be aware that using this oscillator at the beginning of open sessions can lead to false results.
The third one is called “Interest” and it does not include the price in his calculation, but only the volume. It has both the main line and the histogram that like other indicators display respectively the short and the medium-long-term trend. His usage, with the deviation bands automatically displayed, is to detect if there is more strength in the positive candle volume or in the negative candles, to use the volume strength analysis, it’s great to predict reversal and to analyze divergences.
The fourth one is called “Pendulum” and it displays an advanced formula of the popular stochastic oscillator that includes volume, with the oversold and overbought formula that if crossed origin the colored area that you see at the opposite levels, his usage is to determine potential reversal and trend direction, occasionally you can also use the cross of the two lines as a signal to enter a trade.
Additionally, this tool has a histogram that displays the true momentum of the asset you are trading.
The fifth and last one is the Pullback oscillator, and it contains several unique features. This tool will show you the price, displayed as standard candles, of the price. This oscillator can be used both for trend following and for mean reversal trading analysis. The middle area and the smoothed line that you can see aim to be potential support and resistance zones for the price. Note that the price on the moving average of the oscillator is based on volume pressure, and the color of the middle zone area is on the direction of the large trend.
This oscillator also has reversal zones that can help traders identify potential trend exhaustion and reversal price levels, that dynamically change based on the trend situation and adapt their width to the price volatility.
Risk Disclaimer:
All content and scripts provided are purely for informational & educational purposes only and do not constitute financial advice or a solicitation to buy or sell any securities of any type. Past performance does not guarantee future results. Trading can lead to a loss of the invested capital in the financial markets. I will not accept liability for any loss or damage, including without limitation any loss of profit, which may arise directly or indirectly from the use of or reliance on such information. All investments involve risk, and the past performance of a security, industry, sector, market, financial product, trading strategy, backtest, or individual's trading does not guarantee future results or returns. Investors are fully responsible for any investment decisions they make. Such decisions should be based solely on an evaluation of their financial circumstances, investment objectives, risk tolerance, and liquidity needs.
Omega AnalystThe Omega Analyst is a toolkit designed to help both experienced and new traders with their trading decisions.
This indicator is a part of the omega toolkit, and his creation method is based on the concept that every trading strategy should have a way to determine the trend, or the bias, that answers the question “long or short?”; the location, which identifies the best price level to enter into a position and to exit, both in profit and in loss, and that will decide the final risk-to-reward ratio of the trade you take; the signal, which is useful to determine the best moment to enter into a position and that if paired with the trend point, his purpose is to identify when the large trend picture is in confluence with the small term; and last but not least the filter point, the filter is used to have another way to have an additional confluence with the trade you want to take, and it’s important to reduce the number of false signals and to increase the win rate.
This tool aims to help traders with the identification of the location points, thanks to different technical analysis tools that allow determining objectively if the price is in a discount area or in a premium area, to evaluate both entry and exit points. It’s important to note that indicator and technical analysis is only one of the several different ways to analyze an asset.
One of the main things to keep in mind when working with the financial markets is that not every asset, every historical phase, and every market condition is the same, this is why this tool can be highly personalized and adjustable and provide different overlay tools in order to allow traders to choose the best settings considering this variable and your backtests.
This tool, thanks to the previously cited characteristics, can work on any market and any horizontal time frame, and it has different features:
- 7 different tools of technical analysis to analyze the market, some of them with multiple variants.
- An additional tool to display the open price of different sessions
- Easy setup: You can easily choose which indicator to display in order to analyze the markets the best.
- Easy to use and easy to adjust: common settings for all the indicators are easily configurable in the settings with the length or the size parameter. Note that not all the indicators use both parameters, in particular: the indicator mode works for the consolidation levels, the range of motion, the sr zones, and the regression line; the continuous length parameter changes the settings to the consolidation levels, the range of motion, the sr zones, the Fibonacci area, and the regression line; the interval size parameter change the anchor to the volume price, the pivot points and the range of motion.
- Common aesthetics: You can easily change the default premium, discount, and average color in order to have the best view of the indicators together with the line width, or choose to have the monochrome setting to have a more minimalistic style.
- Common usage: Every one of these uses has the same functionality: determine if the price is the fair value, in a premium situation, or in the discount area.
- Automatic settings: The indicator can be used in “Auto” mode if it works with resets like the range of motion interval, the VWAP, the pivot points, and the open prices. This way the indicator will automatically adjust itself to show the optimal results for the analysis you want to make on your chosen timeframe.
The first tool is called Consolidation levels, and it’s a great tool to use during ranging markets.
The consolidation levels are support and resistance levels and zones automatically displayed on the chart to identify the range of bargaining, that adapts considering the price volatility and automatically moves once the price has broken the extreme levels.
This tool has two variants. The fixed variants have, just like the name says, all fixed levels that stay the same until the price doesn’t break one of them.
The Adaptive variants of the Consolidation levels tool have a unique feature that makes the support and resistance zones move considering the price volatility and standard deviation.
The second tool is called “Range of Motion” and it comes in two different versions, called “Continuous” and “Interval”. The difference is just that the “Interval” version stays the same for the whole duration of the interval length you choose.
The range of motion indicator allows the user to see the level that works like support and resistance and the area that works like premium and discount areas. The levels are calculated using the ATR indicator on the mean center line.
On the fixed variant of the range of motion indicator, these levels, once plotted, stay the same until the end of the chosen time frame in the interval size setting to plot the indicator. This way it’s easier to adopt a kind of analysis that uses passive orders like limit buy and limit sell orders. The interval range of motion indicator works like fixed extension levels that display the optimal range of bargaining of that specific asset.
The third tool is the Support and Resistance zones. With this tool, you'll see automatic support and resistance based on past prices and pivot data.
The area and the least efficient levels can be disabled using the "Interval" indicator mode.
The color area automatically changes looking at the effective support or resistance purpose of that area. The area also changes with the "Continuous length" parameter.
The fourth tool is the Fibonacci zones, which display the area of discount and premium pricing using the quartile theory, showing the 25% and the 75% of the current swings as area and the golden zone as a standard line, that includes the space between the 61.8% and the 38.2%, with the 50% line in the middle. This tool works like a Donchian Channel but it shows areas instead of simple lines. The usage of this indicator is both for trend following and for mean reversal, the general definition is that it shows attention zones.
Now in the photo, you can see the fifth tool which is the Anchored VWAP, under the name of "Volume Price". The Volume-weighted average price is a powerful indicator that aims to give the average price of a determined time period and can be used, combined with the standard deviation, to find not only support and resistance levels but also the volume-objective premium and discount zone.
This specific indicator displays 5 lines: the VWAP, the first upper and lower deviation, and the first and second upper deviation lines, that create the previously mentioned zone.
The sixth tool is the Pivot Points standard. This tool is a popular indicator that displays key levels for a determined period of time.
The levels for each interval time are five different lines. The middle one, colored by default in gray, should be the prediction, based on the key price levels of the previous period chosen, of the fair value. The other one, called S1 and R1 are respectively the first level of support and resistance and are great if used as exit points and when combined with other S/R tools, the same is valid for the S2 and R2 levels, on the extreme part of the indicator.
Between the R1 and the R2, and between the S1 and S2 lines there are the previously mentioned Discount and Premium zones.
The seventh tool is the Regression Line. This indicator will show the deviation bands from the standard regression line. Given the fact that the usual linear regression channels available are repainting, and so they don't give realistic outcomes, this tool will give you past results based on the data of the channel in that price moment, being non-repainting. This tool also has an extension that aims to be a prediction about future outcomes in terms of volatility and direction of the price, and this extension can be disabled using the "Continuous" mode.
Just like other tools in this indicator, the linear regression channel will display the middle line and the two premium and discount zones.
The last tool of the Omega Analyst is the open prices.
With this simple-to-read tool, you will see plotted as dotted lines the open prices of the period you have chosen.
The open prices are common support and resistance level and can be used both for entry and exit points. Additionally, on higher timeframes, such as the open prices of the different months, these levels can be further extended to the recent days to have more support and resistance levels.
This tool needs to be adjusted based on your time zone in order to have the best results and can be done directly in the settings of the indicator under the Open prices section, just simply write down at what time it’s midnight in your country watching the desired hour on the chart.
In order to determine the premium or discount area with this tool, you’ll need to pay attention if the current open price indicator is higher or lower than the previous one plotted, if it’s higher you can assume that the price is in an up trend and this way the zone under the current dotted line is the discount zone.
The lines you’ll see plotted are either in the chosen discount or premium color, based if the price is above or below the current open prices indicator plotted.
Risk Disclaimer:
All content and scripts provided are purely for informational & educational purposes only and do not constitute financial advice or a solicitation to buy or sell any securities of any type. Past performance does not guarantee future results. Trading can lead to a loss of the invested capital in the financial markets. I will not accept liability for any loss or damage, including without limitation any loss of profit, which may arise directly or indirectly from the use of or reliance on such information. All investments involve risk, and the past performance of a security, industry, sector, market, financial product, trading strategy, backtest, or individual's trading does not guarantee future results or returns. Investors are fully responsible for any investment decisions they make. Such decisions should be based solely on an evaluation of their financial circumstances, investment objectives, risk tolerance, and liquidity needs.
Omega IndicatorThe Omega Trend and Signal indicator is a toolkit designed to help both experienced and new traders with their trading decisions.
This indicator is a part of the omega toolkit, and his creation method is based on the concept that every trading strategy should have a way to determine the trend, or the bias, that answers the question “long or short?”; the location, which identifies the best price level to enter into a position and to exit, both in profit and in loss, and that will decide the final risk-to-reward ratio of the trade you take; the signal, which is useful to determine the best moment to enter into a position and that if paired with the trend point, his purpose is to identify when the large trend picture is in confluence with the small term; and last but not least the filter point, the filter is used to have another way to have an additional confluence with the trade you want to take, and it’s important to reduce the number of false signals and to increase the win rate.
This tool aims to help traders with the identification of the trend and the signal points, based on a large number of different formula that works combined to display the final output. It’s important to note that indicator and technical analysis is only one of the several different ways to analyze an asset.
One of the main things to keep in mind when working with the financial markets is that not every asset, every historical phase, and every market condition is the same, this is why this tool can be highly personalized and adjustable and provide different overlay tools in order to allow traders to choose the best settings considering this variable and your backtests.
This tool, thanks to the previously cited characteristics, can work on any market and any horizontal time frame, and it has different features:
- Both Trends following and Mean Reversal usage: with different trend detection and signal formulas (not to be followed blindly like any other indicator or trading method).
- Minimalistic usage: with easy-to-enable functions both functionally and aesthetically, to keep your charts clean and to give you the power to choose only what you want to use this indicator for.
- Candle coloring: the easiest way to identify the trend current situation based on the technical formula, with the color you have chosen, and with 5 different variations: strong sell, sell (same color of strong sell but less opacity), neutral, buy, strong buy (same color of buy with more opacity).
- Automatic signal coloring, that will change the way the signals are visualized based on the mid-term trend condition, giving you both entry and exit suggested signals.
- Trend signals: an option that will display the signal based on the same algorithm that works for the candle coloring, but visualizing only the most significant trend changes
- Signal filters, that works differently for trend following and for mean reversal settings, and are divided into three different categories: additional filters remove the repetitive signals in the trend following usage and the low volume signals in the mean reversal usage; location filter remove the signal that is over/below the current trend fair value, giving you only premium or discount signal based on the direction of the trade; and the confluence filter, that for trend following usage filter out signal not in confluence with the Trend cloud overlay indicator and for mean reversal keeps only the signal that is at least in the first band of the Extreme zones overlay indicator.
- Signal sensitivity optimization with the “Fast length” parameter, with base value “1” you can choose the multiplier for that parameter.
- Trend detection optimization with the “Slow length” parameter, with base value “1” you can choose the multiplier for that parameter.
- Overlay indicator optimization with the “Trend length” parameter, with base value “1” you can choose the multiplier for that parameter.
- 4 Overlay indicator to keep the analysis simple and to assist traders to see the trend clearer and identifying the best zones and conditions to enter a trade.
- The option to visualize as numbers that go from 0 to 10 the current trend strength based on the settings to want to use and calculated with the historical best number that has been displayed (it’s shown under the last candles, only if you have selected the trend following or the mean reversal settings).
- Automatic alerts for Buy and Sell signals based on the settings and the filter that you have chosen.
- The option to show only some parts of the indicator, such as the signals or the candle coloring.
- Heikin Ashi: a modified and more simple version of the classic Heikin Ashi candle that is not realistic on the market when used improperly. This option enables the overlay of the candle with the same high, low, and close of the original candle, but the open is the average of the previous open and the previous close.
The signals work this way: if the script has detected a buy signal if the current trend strength is in confluence with the signal, you’ll see a colored dot under the candle (or over if it’s sell), but if the signal is not in confluence, you’ll see a gray (or the color you have chosen for neutral color settings) mark in the same location, so under the candle, if it’s a buy signal not supported by the trend and over the candle if it’s a sell signals not in confluence with the trend parameters, and in this cases the signals aim to suggest to close your open opposite position. This works both for Trend following and for Mean reversal usage.
In this image, there are enable the Adaptive Zone and the Extreme Zones overlay indicators, with the Mean Reversal candle coloring and signal usage.
As you can see, the Extreme Zones are designed to give with a complex script the zones in which the price is likely to reverse, of course depending on the market condition and asset.
The Adaptive Zone is a modified version of the popular super trend indicator, and is designed to work in a different way: instead of giving a buy and sell signal at the switch of the direction, this tool gives its best when used as an area of support and resistance to enter a trade with a bigger risk to reward ratio.
In these other photos, you can see the Trend Midline and the Trend Cloud overlay indicators, with the Trend Following candle coloring and signal usage.
The Trend Midline is a powerful tool that includes different calculations inside and can work like a moving average to identify the level of support and resistance, take profit and stop loss. In addition to that, the Trend Midline overlay indicator is colored based on a large number of different indicators that display the final output as colors, this way, whenever the indicator is colored as the positive color (blue by default) you’ll have another confirmation that the trend is bullish, and vice versa.
The Trend Cloud is a modified version of the popular Ichimoku Kumo, created to help traders identify the trend direction the best. Another great way to use this tool is to mark a horizontal line at the price level in which the two lines of the indicator have switched in position to identify potential future levels of support and resistance.
Risk Disclaimer:
All content and scripts provided are purely for informational & educational purposes only and do not constitute financial advice or a solicitation to buy or sell any securities of any type. Past performance does not guarantee future results. Trading can lead to a loss of the invested capital in the financial markets. I will not accept liability for any loss or damage, including without limitation any loss of profit, which may arise directly or indirectly from the use of or reliance on such information. All investments involve risk, and the past performance of a security, industry, sector, market, financial product, trading strategy, backtest, or individual's trading does not guarantee future results or returns. Investors are fully responsible for any investment decisions they make. Such decisions should be based solely on an evaluation of their financial circumstances, investment objectives, risk tolerance, and liquidity needs.