Heffae Clouds v1.00Heffae Clouds v1.0 - Ichimoku Modernized
Heffae Clouds Alpha release Version 1.0
Heffae Clouds functions as adaptive support and resistance. It has real-time paths and offset clouds, similar to ichimoku.
Paths are calculated by the complex discovery of prior behaviour for any crypto or forex asset.
Uses 5 single layer networks to calculate the optimal path fitting for any asset or timeframe.
The cloud color provides granular detail on path validity.
Please see the pastebin link for access information and links:
pastebin.com
Video introduction and trading strategy:
Some Beta-tester comments:
"It's like now having a microscope if you get what I mean. Which says great things about what you have done here. Love it man"
"I just find myself makes so many good decisions with your system it's hard to believe"
"this is without a doubt an improvement of Ichimoku (Which is my favorite tool by far). So much more info with your cloud system.."
Pesquisar nos scripts por "ichimoku"
Nef33 Forex & Crypto Trading Signals PRO
1. Understanding the Indicator's Context
The indicator generates signals based on confluence (trend, volume, key zones, etc.), but it does not include predefined SL or TP levels. To establish them, we must:
Use dynamic or static support/resistance levels already present in the script.
Incorporate volatility (such as ATR) to adjust the levels based on market conditions.
Define a risk/reward ratio (e.g., 1:2).
2. Options for Determining SL and TP
Below, I provide several ideas based on the tools available in the script:
Stop Loss (SL)
The SL should protect you from adverse movements. You can base it on:
ATR (Volatility): Use the smoothed ATR (atr_smooth) multiplied by a factor (e.g., 1.5 or 2) to set a dynamic SL.
Buy: SL = Entry Price - (atr_smooth * atr_mult).
Sell: SL = Entry Price + (atr_smooth * atr_mult).
Key Zones: Place the SL below a support (for buys) or above a resistance (for sells), using Order Blocks, Fair Value Gaps, or Liquidity Zones.
Buy: SL below the nearest ob_lows or fvg_lows.
Sell: SL above the nearest ob_highs or fvg_highs.
VWAP: Use the daily VWAP (vwap_day) as a critical level.
Buy: SL below vwap_day.
Sell: SL above vwap_day.
Take Profit (TP)
The TP should maximize profits. You can base it on:
Risk/Reward Ratio: Multiply the SL distance by a factor (e.g., 2 or 3).
Buy: TP = Entry Price + (SL Distance * 2).
Sell: TP = Entry Price - (SL Distance * 2).
Key Zones: Target the next resistance (for buys) or support (for sells).
Buy: TP at the next ob_highs, fvg_highs, or liq_zone_high.
Sell: TP at the next ob_lows, fvg_lows, or liq_zone_low.
Ichimoku: Use the cloud levels (Senkou Span A/B) as targets.
Buy: TP at senkou_span_a or senkou_span_b (whichever is higher).
Sell: TP at senkou_span_a or senkou_span_b (whichever is lower).
3. Practical Implementation
Since the script does not automatically draw SL/TP, you can:
Calculate them manually: Observe the chart and use the levels mentioned.
Modify the code: Add SL/TP as labels (label.new) at the moment of the signal.
Here’s an example of how to modify the code to display SL and TP based on ATR with a 1:2 risk/reward ratio:
Modified Code (Signals Section)
Find the lines where the signals (trade_buy and trade_sell) are generated and add the following:
pinescript
// Calculate SL and TP based on ATR
atr_sl_mult = 1.5 // Multiplier for SL
atr_tp_mult = 3.0 // Multiplier for TP (1:2 ratio)
sl_distance = atr_smooth * atr_sl_mult
tp_distance = atr_smooth * atr_tp_mult
if trade_buy
entry_price = close
sl_price = entry_price - sl_distance
tp_price = entry_price + tp_distance
label.new(bar_index, low, "Buy: " + str.tostring(math.round(bull_conditions, 1)), color=color.green, textcolor=color.white, style=label.style_label_up, size=size.tiny)
label.new(bar_index, sl_price, "SL: " + str.tostring(math.round(sl_price, 2)), color=color.red, textcolor=color.white, style=label.style_label_down, size=size.tiny)
label.new(bar_index, tp_price, "TP: " + str.tostring(math.round(tp_price, 2)), color=color.blue, textcolor=color.white, style=label.style_label_up, size=size.tiny)
if trade_sell
entry_price = close
sl_price = entry_price + sl_distance
tp_price = entry_price - tp_distance
label.new(bar_index, high, "Sell: " + str.tostring(math.round(bear_conditions, 1)), color=color.red, textcolor=color.white, style=label.style_label_down, size=size.tiny)
label.new(bar_index, sl_price, "SL: " + str.tostring(math.round(sl_price, 2)), color=color.red, textcolor=color.white, style=label.style_label_up, size=size.tiny)
label.new(bar_index, tp_price, "TP: " + str.tostring(math.round(tp_price, 2)), color=color.blue, textcolor=color.white, style=label.style_label_down, size=size.tiny)
Code Explanation
SL: Calculated by subtracting/adding sl_distance to the entry price (close) depending on whether it’s a buy or sell.
TP: Calculated with a double distance (tp_distance) for a 1:2 risk/reward ratio.
Visualization: Labels are added to the chart to display SL (red) and TP (blue).
4. Practical Strategy Without Modifying the Code
If you don’t want to modify the script, follow these steps manually:
Entry: Take the trade_buy or trade_sell signal.
SL: Check the smoothed ATR (atr_smooth) on the chart or calculate a fixed level (e.g., 1.5 times the ATR). Also, review nearby key zones (OB, FVG, VWAP).
TP: Define a target based on the next key zone or multiply the SL distance by 2 or 3.
Example:
Buy at 100, ATR = 2.
SL = 100 - (2 * 1.5) = 97.
TP = 100 + (2 * 3) = 106.
5. Recommendations
Test in Demo: Apply this logic in a demo account to adjust the multipliers (atr_sl_mult, atr_tp_mult) based on the market (forex or crypto).
Combine with Zones: If the ATR-based SL is too wide, use the nearest OB or FVG as a reference.
Risk/Reward Ratio: Adjust the TP based on your tolerance (1:1, 1:2, 1:3)
HYE Trend Hunter [Indicator]*** İndikatörün Türkçe ve İngilizce açıklaması aşağıya eklenmiştir.
HYE Trend Hunter
In this indicator, two of the most basic data (price and volume) necessary for detecting trends as early as possible and entering the trade on time are used. In this context, the approaches of some classical and new generation indicators using price and volume have been taken into account.
The indicator is prepared to generate buy signals only. The following steps were followed to generate the buy and exit signals.
1-) First of all, the two most basic data of the indicator, “slow leading line” and “fast leading line” need to be calculated. For this, we use the formula of the “senkou span A” line of the indicator known as the Ichimoku Cloud. We also need to calculate lines known as tenkan sen and kijun sen in ichimoku because they are used in the calculation of this formula.
The high and low values of the candles are taken into account when calculating the Tenkansen, Kijunsen and Senkou Span A lines in the Ichimoku cloud. In this indicator, the highest and lowest values of the periodic VWAP are taken into account when calculating the "slow leading line" and "fast leading line". (The periodic vwap formula was coded and made available by @neolao on tradingviev). Also, in the ichimoku cloud, while the Senkou Span A line is plotted 26 periods into the future, we consider the values of the fast and slow leading lines in the last candle in this indicator.
ORIGINAL ICHIMOKU SPAN A FORMULA
Tenkansen = (Highest high of the last 9 candles + Lowest low of the last 9 candles) / 2
Kijunsen = (Highest high of the last 26 candles + Lowest low of the last 26 candles) / 2
Senkou Span A = Tenkansen + Kijunsen / 2
HYE TREND HUNTER SPAN A FORMULA*
Tenkansen = (Highest VWAP of the last 9 candles + Lowest VWAP of the last 9 candles) / 2
Kijunsen = (Highest VWAP of the last 26 candles + Lowest VWAP of the last 26 candles) / 2
Senkou Span A = Tenkansen + Kijunsen / 2
* We use the original ichimoku values 9 and 26 for the slow line, and 5 and 13 for the fast line. These settings can be changed from the indicator settings.
2-) At this stage, we have 2 lines that we obtained by using the formula of the ichimoku cloud, one of the most classical trend indicators, and by including the volume-weighted average price.
a-) Fast Leading Line (5-13)
b-) Slow Leading Line (9-26)
For the calculation we will do soon, we get a new value by taking the average of these two lines. Using this value, which is the average of the fast and slow leading lines, we plot the Bollinger Bands indicator, which is known as one of the most classic volatility indicators of technical analysis. Thus, we are trying to understand whether there is a volatility change in the market, which may mean the presence of a trend start. We will use this data in the calculation of buy-sell signals.
In the classical Bollinger Bands calculation, the standard deviation is calculated by applying a multiplier at the rate determined by the user (2 is used in the original settings) to the moving average calculated with the “closing price”, and this value is added or subtracted from the moving average and upper band and lower band lines are drawn.
In the HYE Trend Hunter indicator, instead of the moving average calculated with the closing price in the Bollinger Band calculation, we consider the average of the fast and slow leading lines calculated in the 1st step and draw the Bollinger upper and lower bands accordingly. We use the values of 2 and 20 as the standard deviation and period, as in the original settings. These settings can also be changed from the indicator settings.
3-) At this stage, we have fast and slow leading lines trying to understand the trend direction using VWAP, and Bollinger lower and upper bands calculated by the average of these lines.
In this step, we will use another tool that will help us understand whether the invested market (forex, crypto, stocks) is gaining momentum in volume. The Time Segmented Volume indicator was created by the Worden Brothers Inc. and coded by @liw0 and @vitelot on tradingview. The TSV indicator segments the price and volume of an investment instrument according to certain time periods and makes calculations on comparing these price and volume data to reveal the buying and selling periods.
To trade in the buy direction on the HYE Trend Hunter indicator, we look for the TSV indicator to be above 0 and above its exponential moving average value. TSV period and exponential moving average period settings (13 and 7) can also be changed in the indicator settings.
BUY SIGNAL
1-) Fast Leading Line value should be higher than the Fast Leading Line value in the previous candle.
2-) Slow Leading Line value should be higher than the Slow Leading Line value in the previous candle.
3-) Candle Closing value must be higher than the Upper Bollinger Band.
4-) TSV value must be greater than 0.
5-) TSV value must be greater than TSVEMA value.
EXIT SIGNAL
1-) Fast Leading Line value should be lower than the Fast Leading Line value in the previous candle.
2-) Slow Leading Line value should be lower than the Slow Leading Line value in the previous candle.
TIPS AND WARNINGS
1-) The standard settings of the indicator work better in higher timeframes (4-hour, daily, etc.). For lower timeframes, you should change the indicator settings and find the best value for yourself.
2-) All lines (fast and slow leading lines and Bollinger bands) except TSV are displayed on the indicator. For a simpler view, you can hide these lines in the indicator settings.
3-) You can see the color changes of the fast and slow leading lines as well as you can specify a single color for these lines in the Indicator settings.
4-) Alarms have been added for Buy and Exit. When setting up the alarm, you should set it to be triggered at "every bar close". Otherwise it may repaint. There is no repaint after the candle closes.
5-) It is an indicator for educational and experimental purposes. It cannot be considered as investment advice. You should be careful and make your own risk assessment when opening real market trades using this indicator.
_______________________________________________
HYE Trend Avcısı
Bu indikatörde, trendlerin olabildiğince erken tespit edilebilmesi ve zamanında işleme girilebilmesi için gerekli olan en temel iki veriden (fiyat ve hacim) yararlanılmaktadır. Bu kapsamda, fiyat ve hacim kullanan bazı klasik ve yeni nesil indikatörlerin yaklaşımları dikkate alınmıştır.
İndikatör yalnızca alış yönlü sinyaller üretecek şekilde hazırlanmıştır. Alış ve çıkış sinyallerinin üretilmesi için aşağıdaki adımlar izlenmiştir.
1-) Öncelikle, indikatörün en temel iki verisi olan “yavaş öncü çizgi” ve “hızlı öncü çizgi” hesaplamasının yapılması gerekiyor. Bunun için de Ichimoku Bulutu olarak bilinen indikatörün “senkou span A” çizgisinin formülünü kullanıyoruz. Bu formülün hesaplamasında kullanılmaları nedeniyle ichimoku’da tenkan sen ve kijun sen olarak bilinen çizgileri de hesaplamamız gerekiyor.
Ichimoku bulutunda Tenkansen, Kijunsen ve Senkou Span A çizgileri hesaplanırken mumların yüksek ve düşük değerleri dikkate alınıyor. Bu indikatörde ise “yavaş öncü çizgi” ve “hızlı öncü çizgi” hesaplanırken periyodik VWAP’ın en yüksek ve en düşük değerleri dikkate alınıyor. (Periyodik vwap formülü, tradingviev’de @neolao tarafından kodlanmış ve kullanıma açılmış). Ayrıca, ichimoku bulutunda Senkou Span A çizgisi geleceğe yönelik çizilirken (26 mum ileriye dönük) biz bu indikatörde öncü çizgilerin son mumdaki değerlerini dikkate alıyoruz.
ORJİNAL ICHIMOKU SPAN A FORMÜLÜ
Tenkansen = (Son 9 mumun en yüksek değeri + Son 9 mumun en düşük değeri) / 2
Kijunsen = (Son 26 mumun en yüksek değeri + Son 26 mumun en düşük değeri) / 2
Senkou Span A = Tenkansen + Kijunsen / 2
HYE TREND HUNTER SPAN A FORMÜLÜ*
Tenkansen = (Son 9 mumun en yüksek VWAP değeri + Son 9 mumun en düşük VWAP değeri) / 2
Kijunsen = (Son 26 mumun en yüksek VWAP değeri + Son 26 mumun en düşük VWAP değeri) / 2
Senkou Span A = Tenkansen + Kijunsen / 2
* Yavaş çizgi için orijinal ichimoku değerleri olan 9 ve 26’yı kullanırken, hızlı çizgi için 5 ve 13’ü kullanıyoruz. Bu ayarlar, indikatör ayarlarından değiştirilebiliyor.
2-) Bu aşamada, elimizde en klasik trend indikatörlerinden birisi olan ichimoku bulutunun formülünden faydalanarak, işin içinde hacim ağırlıklı ortalama fiyatı da sokmak suretiyle elde ettiğimiz 2 çizgimiz var.
a-) Hızlı Öncü Çizgi (5-13)
b-) Yavaş Öncü Çizgi (9-26)
Birazdan yapacağımız hesaplama için bu iki çizginin de ortalamasını alarak yeni bir değer elde ediyoruz. Hızlı ve yavaş öncü çizgilerin ortalaması olan bu değeri kullanarak, teknik analizin en klasik volatilite indikatörlerinden birisi olarak bilinen Bollinger Bantları indikatörünü çizdiriyoruz. Böylelikle piyasada bir trend başlangıcının varlığı anlamına gelebilecek volatilite değişikliği var mı yok mu anlamaya çalışıyoruz. Bu veriyi al-sat sinyallerinin hesaplamasında kullanacağız.
Klasik Bollinger Bantları hesaplamasında, “kapanış fiyatıyla” hesaplanan hareketli ortalamaya, kullanıcı olarak belirlenen oranda (orijinal ayarlarında 2 kullanılır) bir çarpan uygulanarak standart sapma hesaplanıyor ve bu değer hareketli ortalamaya eklenip çıkartılarak üst bant ve alt bant çizgileri çiziliyor.
HYE Trend Avcısı indikatöründe, Bollinger Bandı hesaplamasında kapanış fiyatıyla hesaplanan hareketli ortalama yerine, 1. adımda hesapladığımız hızlı ve yavaş öncü çizgilerin ortalamasını dikkate alıyoruz ve buna göre bollinger üst ve alt bantlarını çizdiriyoruz. Standart sapma ve periyot olarak yine orijinal ayarlarında olduğu gibi 2 ve 20 değerlerini kullanıyoruz. Bu ayarlar da indikatör ayarlarından değiştirilebiliyor.
3-) Bu aşamada, elimizde VWAP kullanarak trend yönünü anlamaya çalışan hızlı ve yavaş öncü çizgilerimiz ile bu çizgilerin ortalaması ile hesaplanan bollinger alt ve üst bantlarımız var.
Bu adımda, yatırım yapılan piyasanın (forex, kripto, hisse senedi) hacimsel olarak ivme kazanıp kazanmadığını anlamamıza yarayacak bir araç daha kullanacağız. Time Segmented Volume indikatörü, Worden Kardeşler şirketi tarafından oluşturulmuş ve tradingview’de @liw0 ve @vitelot tarafından kodlanarak kullanıma açılmış. TSV indikatörü, bir yatırım aracının fiyatını ve hacmini belirli zaman aralıklarına göre bölümlere ayırarak, bu fiyat ve hacim verilerini, alış ve satış dönemlerini ortaya çıkarmak için karşılaştırmak üzerine hesaplamalar yapar.
HYE Trend Avcısı indikatöründe alış yönünde işlem yapmak için, TSV indikatörünün 0’ın üzerinde olmasını ve kendi üstel hareketli ortalama değerinin üzerinde olmasını arıyoruz. TSV periyodu ve üstel hareketli ortalama periyodu ayarları da (13 ve 7) indikatör ayarlarından değiştirilebiliyor.
ALIŞ SİNYALİ
1-) Hızlı Öncü Çizgi değeri bir önceki mumdaki Hızlı Öncü Çizgi değerinden yüksek olmalı.
2-) Yavaş Öncü Çizgi değeri bir önceki mumdaki Yavaş Öncü Çizgi değerinden yüksek olmalı.
3-) Kapanış Değeri, Üst Bollinger Bandı değerinden yüksek olmalı.
4-) TSV değeri 0’dan büyük olmalı.
5-) TSV değeri TSVEMA değerinden büyük olmalı.
ÇIKIŞ SİNYALİ
1-) Hızlı Öncü Çizgi değeri bir önceki mumdaki Hızlı Öncü Çizgi değerinden düşük olmalı.
2-) Yavaş Öncü Çizgi değeri bir önceki mumdaki Yavaş Öncü Çizgi değerinden düşük olmalı.
İPUÇLARI VE UYARILAR
1-) İndikatörün standart ayarları, yüksek zaman dilimlerinde (4 saatlik, günlük vs.) daha iyi çalışıyor. Düşük zaman dilimleri için indikatör ayarlarını değiştirmeli ve kendiniz için en iyi değeri bulmalısınız.
2-) İndikatörde tüm çizgiler (hızlı ve yavaş öncü çizgiler ile bollinger bantları) -TSV dışında- açık olarak gelmektedir. Daha sade bir görüntü için bu çizgilerin görünürlüğünü indikatör ayarlarından gizleyebilirsiniz.
3-) Hızlı ve yavaş öncü çizgilerin renk değişimlerini görebileceğiniz gibi bu çizgiler için tek bir renk olarak da İndikatör ayarlarında belirleme yapabilirsiniz.
4-) Alış ve Çıkış için alarmlar eklenmiştir. Alarm kurulumu yaparken “Her çubuk kapanışında” tetiklenecek şekilde ayarlama yapmalısınız. Aksi takdirde repaint yapabilir. Mum kapanışından sonra repaint söz konusu değildir.
5-) Eğitim ve deneysel amaçlı bir indikatördür. Yatırım tavsiyesi olarak değerlendirilemez. Bu indikatörü kullanarak gerçek piyasa işlem açarken dikkatli olmalı ve kendi risk değerlendirmenizi yapmalısınız.
nTrend ULTIMATEHello traders
With this fabulous script, you can color the candles based on the indicator and timeframe you want
You can only apply one indicator at a given time obviously
The list of indicators are the following:
- Price vs Moving Average : if price is above, bullish color, if price is below, bearish color
- Trend Signal : if the Trend signal is pointing upwards, bullish color, if the Trend signal is point downwards, bearish color
- Supertrend : if supertrend is below the price, bullish color, if supertrend is above the price, bearish color
- MACD : if MACD is positive, bullish color, if MACD is negative, bearish color
- MACD ZERO LAG : if MACD ZERO LAG is positive, bullish color, if MACD ZERO LAG is negative, bearish color
- MM Cross : if MM cross is bullish , bullish color, if MM cross is bearish , bearish color
- Ichimoku: if price is above the cloud, bullish color, if price is below the cloud, bearish color
Hope you'll like it
Please feel free to comment to ask me to add any other indicator you like or simply to say how much you love it.
Positive vibes are always appreciated and will encourage me to give you more free content.
Dave
RSI 𝝙 MapRSI 𝝙 Map is a on-chart application of signals produced by the original RSI 𝝙 Indicator.
RSI 𝝙 is a full study system of several RSI analysis that can be used on different timeframes and adapt strategy to trending markets or trading ranges.
Default Settings:
RSI: 13
Linear Regression of RSI: 34
Signal RSI: 5
Long RSI: 55
RSI 𝝙 Histogram: Delta between RSI and Long RSI based on Signal RSI_Length.
Activate Vertical Bar Highlights and/or Signal Candle Flags for:
- RSI Oversold/Overbought. (Default: Highlight Bar)
- Signal RSI Oversold/Overbought. (Default: Highlight Bar)
- RSI crossing its Linear Regression . (Default: Signal Candle Flag)
- RSI crossing its Long RSI . (Default: Off)
- Signal RSI crossing its RSI . (Default: Off)
- Signal RSI crossing its Long RSI . (Default: Off)
- RSI 𝝙 Histogram crossing baseline. (Default: Off)
Users can also do extra tuning in Style Section of Format options.
The market behaves differently when the pacing changes, volatility changes and when it trends or when it ranges. Develop an understanding of it with the help of this study.
Avoid risking more than 1% per trade. Be responsible for always making a priority about protecting capital and risk management. Develop emotional control and use this RSI study to develop a more complete trading system without any need for extra indicators other than Price and Volume .
👆active signals:
RSI Overbought/Oversold
Signal RSI Overbought/Oversold
RSI crossing Linear Regression
👆active signals:
RSI Overbought/Oversold
Signal RSI Overbought/Oversold
Signal RSI crossing RSI
Signal RSI crossing Long RSI
👆active signals:
RSI Overbought/Oversold
Signal RSI Overbought/Oversold
RSI crossing Linear Regression
RSI crossing Long RSI
Signal RSI crossing RSI
SnakeBand█ Overview.
This indicator is based on a calculation method made using a ichimoku and Fibonacci.
There are two lines, the upper line is the upper limit and the lower line is the lower limit.
These upper and lower limits are drawn ahead of 26 candles, just like Ichimoku.
█ Role.
The characteristic of this indicator is that
When prices reach the upper limit, they usually hesitate or try to fall, and when they reach the lower limit, they usually rebound or hesitate.
In particular, it has an excellent effect on low-point purchases.
Of course, it is often not the case, so you have to observe the speed and movement of the decline carefully, and it can be more effective if applied with the Elliot wave or harmonic.
It can also be more effective if used with rsi or macd bowling bands.
█ Memo.
It applies to all four-hour bong, three-hour bong, one-bong, and main bong.
It is important to keep studying and observing. This can give you the ability to capture the upward transition after hitting the lower limit.
Simple Moving Average Double HelixThis one is a mix of colour-coded moving averages and Ichimoku. It features two pairs of SMAs--default values of 9/20 and 50/200. Each SMA will be green when it rises and red when it falls. The spaces between each pair will fill with green or red depending on which line is on top. 9 over 20 or 50 over 200 makes a green cloud; if 9 or 50 falls below, the cloud will switch to green.
There's also the Ichimoku lagging span and a 35-period SMA (grey) that can be used as a trailing stop loss guideline.
Ideal long setup:
9, 20, 50, and 200 SMA are all green
both clouds are green
lagging span is above historic price action
Ideal short setup:
9, 20, 50, and 200 SMA are all red
both clouds are red
lagging span is below historic price action
TrendMaster FreeTrendMaster Free
This is the free version of TrendMaster. It includes the Cloud and the candle colouring rules but does not provide the entry, exit and stop loss management of the full version.
TrendMaster is a complete trend following system with strict entry, exit and trade management criteria. The indicator is optimised for weekly, daily and 4-hour candlesticks and can be used for all trending markets such as crypto, forex or stocks. It was developed primarily for less experienced traders that struggle to determine relevant information from irrelevant information when viewing a candlestick chart. The indicator was built to solve the problem that all new traders face.
The Cloud
The indicator includes a moving average cloud which serves as a visual guide to local support and resistance . When price exits the cloud to the upside it typically trends above and finds support at the cloud during retracements.
Candle Colours
By default, TrendMaster will colour your candles in black and white. White candles indicate an uptrend in an asset and the candles will not change colour until the trend has reversed and a counter-trend signal has been printed. Black candles indicate a downtrend, they will remain black until a counter-trend long signal candle has been printed.
Setting Up The Indicator
TrendMaster is optimised for Heikin-Ashi candles. Using candles with smoothing applied decreases the likelihood of whipsaw losses and provides a stable visual representation of the trend. Ensure you have applied Heikin-Ashi candles to your chart before continuing. You can customise to any style of your choice provided the candle borders and wicks are set to a uniform colour that contrasts the chart background.
Entries and Exits
A long signal candle is a white Heikin-Ashi candle that closes above the cloud. A short signal candle is a white Heikin-Ashi candle that closes below the cloud. Entries are taken with a pending order placed at the wick with a reasonable margin for error.
Upgrading
The full version of TrendMaster contains significantly more functionality including coloured signal candles, stop loss and trailing take profit management, alerts and much more.
Our Story
Founded in 2018 by IchimokuScholar and C00kie, TrendMaster is a team that produces technical analysis indicators with an emphasis on simplicity and noise reduction. We support a large community with educational content, automated market scanners and mentoring in our private chat rooms. We produce technical analysis indicators geared primarily towards the emerging Cryptocurrency asset class. We provide educational material to assist trader development and host a large online trend following community. All of our products are designed to help traders distinguish relevant information from background noise. Our indicators encourage disciplined trade management to maximise the opportunity captured while minimising losses.
IchimokuScholar
IchimokuScholar – In 2017 I retired from a career in higher education to focus on Trading. I like to trade long term trends, focusing primarily on continuation setups. I am dedicated to sharing my knowledge of trading and take great pleasure in simplifying technical analysis for newer traders.
C00kie
I started trading crypto in 2017 and immediately started coding a bunch of tools to improve my quality of life. Some definitely worked out better than others. Like to trade the higher timeframes and drawing horizontal lines on charts. I am also pretty much obligated to like cookies.
NOT-ONLY LONG V4 [Alerts]This Script is the second part of the previous one. In this second part it includes Longs and also Shorts. It is a little conservative, and is mainly used for swing trading. It can be used for everyday trading or if you’re using it for automated trading, you don’t necessarily need to run it as a bot. But you can do so if you want. To set it up without running it as a bot. Create the alerts that will send notifications to your mobile, and then when you receive an alert, you can place the order manually yourself. Maybe it could be a bit boring. But as someone said: "The Exchange is designed to transfer the money of the impatient to the patients." -Warren Buffett.
This script uses RMI + ADX + RSI, and for the main trend the famous Ichimoku, here I thought wasn’t good for anything, but look at how well it works with ETH.
I had to put the security () function only for Ichimoku. It can be used in this way without causing problems with repainting, but you have to know what measures to take to ensure it does not overlap, or so that the backtest is accurate.
indexHighTF = barstate.isrealtime ? 1 : 0
indexCurrTF = barstate.isrealtime ? 0 : 1
a0 = security(syminfo.tickerid, 'D', close , lookahead=barmerge.lookahead_off)
a = a0
The preventive measures can be found in the link below:
www.tradingview.com
This script is like the world upside down. When the price goes up and you see an opportunity, you start creating shorts and the same thing can be done by creating longs when the price goes down. It can be very effective because remember what Warren Buffett said again: "The dumbest reason in the world to buy an action is that it is going up."
It leave the position only when Taking Profits.
It does not have Stop Loss, instead, when it reaches a set % loss, it makes a re-entry by laddering the trades.
I think that the Stops Loss only serves to get you liquidate. With the erratic price movements on the Exchanges, their movements can be between 5-20%, fucking you if you have a SL !! (conspiracy theories) ;-)
This world is invented for you to lose money, it is not easy to get rich and less likely with a script, but neither is it impossible, who knows, maybe this will help or at least give extra tool in your trading.
It's more or less adjusted for my favorite crypto currency: ETH on BITMEX and I'm sure there's a much better setting.
The best Timeframe that seems to be working well: ETH: 1 H
Greetings from Barcelona…
Thanks...
BTC: 3LEUP3WjQctdbFjBavcmRGUVRBje8bptCd
BCH: qrv6j7mpxjzzs9dudfag3glu278suchdhg7c44pa37
ETH: 0x518AAD4746912ae506c82B747488306186c4d546
ETC: 0xa2498D7AcB9303aa10F14ff27C54AAc4cE5d5705
ZRX: 0x29aC9BaC10818C30055b25A8E90dd11488Ae6df8
BAT: 0x115f3F9D1c3fC248e73644a72d77A062D3CB28Ba
RenkoMasterRenkoMaster is a variant of our popular TrendMaster Script with adjusted parameters. It can be used to provide confluence when determining Renko entries and exits.
Setting Up The Indicator
After purchase, open the TradingView indicator library. Under the Invite-Only Scripts section, you will see RenkoMaster. Add it to your chart. Next, you must customise your theme settings to allow RenkoMaster to take over control of your candle colours. You can find a complete set-up tutorial on our website.
Candle Colours
By default, RenkoMaster will colour your candles in black and white. White candles indicate an uptrend in an asset and the candles will not change colour until the trend has reversed and a counter-trend signal has been printed. Black candles indicate a downtrend, they will remain black until a counter-trend long signal candle has been printed.
Signal candles
A signal candle is printed when the price of an asset closes above or below the moving average cloud and the medium term trend moving average. By requiring two criteria for a single candle to print we will see a drastic reduction in the number of false signals.
The RenkoMaster entry technique further reduces the likelihood of false entries. To enter a trade we do not buy the signal block immediately. Instead, we treat the signal block as an indication that a trend change is possible. We want to see confirmation of this trend before making an entry. To enter we place a pending order a few ticks above or below the high or low of the signal block. By doing this we only enter a trade when the asset has shown a continuation in the direction of the suggested trend change.
Our Story
Founded in 2018 by IchimokuScholar and C00kie, TrendMaster is a team that produces technical analysis indicators with an emphasis on simplicity and noise reduction. We support a large community with educational content, automated market scanners and mentoring in our private chat rooms. We produce technical analysis indicators geared primarily towards the emerging Cryptocurrency asset class. We provide educational material to assist trader development and host a large online trend following community. All of our products are designed to help traders distinguish relevant information from background noise. Our indicators encourage disciplined trade management to maximise the opportunity captured while minimising losses.
IchimokuScholar
IchimokuScholar – In 2017 I retired from a career in higher education to focus on Trading. I like to trade long term trends, focusing primarily on continuation setups. I am dedicated to sharing my knowledge of trading and take great pleasure in simplifying technical analysis for newer traders.
C00kie
I started trading crypto in 2017 and immediately started coding a bunch of tools to improve my quality of life. Some definitely worked out better than others. Like to trade the higher timeframes and drawing horizontal lines on charts. I am also pretty much obligated to like cookies.
TrendMaster PremiumTrendMaster
TrendMaster is a complete trend following system with strict entry, exit and trade management criteria. The indicator is optimised for weekly, daily and 4-hour candlesticks and can be used for all trending markets. It was developed primarily for less experienced traders that struggle to determine relevant information from irrelevant information when viewing a candlestick chart. The indicator was built to solve the problem that all new traders face.
Setting Up The Indicator
After purchase, open the TradingView indicator library. Under the Invite-Only Scripts section, you will see TrendMaster. Add it to your chart. Next, you must customise your theme settings to allow TrendMaster to take over control of your candle colours. You can find a complete set-up tutorial on our website.
The Cloud
The indicator includes a moving average cloud which serves as a visual guide to local support and resistance. For a signal candle to print, price must trade above the moving average cloud and above the medium-term trend. By requiring multiple criteria we drastically reduce false entries. When price exits the cloud to the upside it typically trends above and finds support at the cloud during retracements.
Candle Colours
By default, TrendMaster will colour your candles in black and white. White candles indicate an uptrend in an asset and the candles will not change colour until the trend has reversed and a counter-trend signal has been printed. Black candles indicate a downtrend, they will remain black until a counter-trend long signal candle has been printed.
Signal candles
A signal candle is printed when the price of an asset closes above or below the moving average cloud and the medium term trend moving average. By requiring two criteria for a single candle to print we will see a drastic reduction in the number of false signals.
The TrendMaster entry technique further reduces the likelihood of false entries. To enter a trade we do not buy the signal candle immediately. Instead, we treat the signal candle as an indication that a trend change is possible. We want to see confirmation of this trend before making an entry. To enter we place a pending order a few ticks above or below the high or low of the signal candle. By doing this we only enter a trade when the asset has shown a continuation in the direction of the suggested trend change.
Once a trade has been taken we remain in that trade until either we have been stopped out on the break of a Williams fractal or the trend has reversed by printing an opposite to trend signal candle. It is important that we remain with the trend to ensure that we capture the maximum opportunity available.
If you would like to use TrendMaster or any of our other Indicators, please visit my site. Here you can purchase one of our packages which include indicators, market scanner bots and a large Discord community. You will also find educational content and how to guides for our indicators.
Our Story
Founded in 2018 by IchimokuScholar and C00kie, TrendMaster is a team that produces technical analysis indicators with an emphasis on simplicity and noise reduction. We support a large community with educational content, automated market scanners and mentoring in our private chat rooms. We produce technical analysis indicators geared primarily towards the emerging Cryptocurrency asset class. We provide educational material to assist trader development and host a large online trend following community. All of our products are designed to help traders distinguish relevant information from background noise. Our indicators encourage disciplined trade management to maximise the opportunity captured while minimising losses.
IchimokuScholar
IchimokuScholar – In 2017 I retired from a career in higher education to focus on Trading. I like to trade long term trends, focusing primarily on continuation setups. I am dedicated to sharing my knowledge of trading and take great pleasure in simplifying technical analysis for newer traders.
C00kie
I started trading crypto in 2017 and immediately started coding a bunch of tools to improve my quality of life. Some definitely worked out better than others. Like to trade the higher timeframes and drawing horizontal lines on charts. I am also pretty much obligated to like cookies.
KishokuMasterKishokuMaster
KishokuMaster is a very simple indicator designed to provide an immediate representation of the ‘mood’ of the market. It provides an optimal balance of lag and smoothing to help traders establish a Bullish or Bearish bias. The underlying logic is based on Alan Hull's weighting techniques.
The indicator is optimised for weekly, daily and 4-hour candlesticks and can be used for all trending markets such as crypto, forex or stocks. It can be used as a standalone indicator, or to provide confluence when assessing TrendMaster entry opportunities.
Setting Up The Indicator
KishokuMaster can be used with either regular Japanese candlesticks or Heikin-Ashi candlesticks. Using Heikin-Ashi decreases the likelihood of whipsaw losses and provides a more stable visual representation of the trend. You can customise to any theme of your choice provided the candle borders and wicks are set to a uniform colour that contrasts the chart background.
Candle Colours
By default, KishokuMaster will colour your candles in black and white. White candles indicate an uptrend in an asset and the candles will not change colour until the trend has reversed. Black candles indicate a downtrend, they will remain black until a trend reversal occurs.
Our Story
Founded in 2018 by IchimokuScholar and C00kie, TrendMaster is a team that produces technical analysis indicators with an emphasis on simplicity and noise reduction. We support a large community with educational content, automated market scanners and mentoring in our private chat rooms. We produce technical analysis indicators geared primarily towards the emerging Cryptocurrency asset class. We provide educational material to assist trader development and host a large online trend following community. All of our products are designed to help traders distinguish relevant information from background noise. Our indicators encourage disciplined trade management to maximise the opportunity captured while minimising losses.
IchimokuScholar
IchimokuScholar – In 2017 I retired from a career in higher education to focus on Trading. I like to trade long term trends, focusing primarily on continuation setups. I am dedicated to sharing my knowledge of trading and take great pleasure in simplifying technical analysis for newer traders.
C00kie
I started trading crypto in 2017 and immediately started coding a bunch of tools to improve my quality of life. Some definitely worked out better than others. Like to trade the higher timeframes and drawing horizontal lines on charts. I am also pretty much obligated to like cookies.
TrendMaster TrialTrendMaster Trial
This is the trial version of TrendMaster. It includes the Cloud and the candle colouring rules but does not provide the entry, exit and stop loss management of the full version.
TrendMaster is a complete trend following system with strict entry, exit and trade management criteria. The indicator is optimised for weekly, daily and 4-hour candlesticks and can be used for all trending markets such as crypto, forex or stocks. It was developed primarily for less experienced traders that struggle to determine relevant information from irrelevant information when viewing a candlestick chart. The indicator was built to solve the problem that all new traders face.
The Cloud
The indicator includes a moving average cloud which serves as a visual guide to local support and resistance. When price exits the cloud to the upside it typically trends above and finds support at the cloud during retracements.
Candle Colours
By default, TrendMaster will colour your candles in black and white. White candles indicate an uptrend in an asset and the candles will not change colour until the trend has reversed and a counter-trend signal has been printed. Black candles indicate a downtrend, they will remain black until a counter-trend long signal candle has been printed.
Setting Up The Indicator
TrendMaster is optimised for Heikin-Ashi candles. Using candles with smoothing applied decreases the likelihood of whipsaw losses and provides a stable visual representation of the trend. Ensure you have applied Heikin-Ashi candles to your chart before continuing. You can customise to any style of your choice provided the candle borders and wicks are set to a uniform colour that contrasts the chart background.
Entries and Exits
A long signal candle is a white Heikin-Ashi candle that closes above the cloud. A short signal candle is a white Heikin-Ashi candle that closes below the cloud. Entries are taken with a pending order placed at the wick with a reasonable margin for error.
Upgrading
The full version of TrendMaster contains significantly more functionality including coloured signal candles, stop loss and trailing take profit management, alerts and much more.
Our Story
Founded in 2018 by IchimokuScholar and C00kie, TrendMaster is a team that produces technical analysis indicators with an emphasis on simplicity and noise reduction. We support a large community with educational content, automated market scanners and mentoring in our private chat rooms. We produce technical analysis indicators geared primarily towards the emerging Cryptocurrency asset class. We provide educational material to assist trader development and host a large online trend following community. All of our products are designed to help traders distinguish relevant information from background noise. Our indicators encourage disciplined trade management to maximise the opportunity captured while minimising losses.
IchimokuScholar
IchimokuScholar – In 2017 I retired from a career in higher education to focus on Trading. I like to trade long term trends, focusing primarily on continuation setups. I am dedicated to sharing my knowledge of trading and take great pleasure in simplifying technical analysis for newer traders.
C00kie
I started trading crypto in 2017 and immediately started coding a bunch of tools to improve my quality of life. Some definitely worked out better than others. Like to trade the higher timeframes and drawing horizontal lines on charts. I am also pretty much obligated to like cookies.
Comprehensive Market AnalyzerVERSION 2.0:
Notice to users: To better reflect its extensive features, this indicator has been renamed from "Tsūrubokkusu (Toolbox) 🧰" to "Comprehensive Market Analyzer". Thank you for your understanding and adaptation to this change.
Purpose and Usage:
The Comprehensive Market Analyzer is designed to provide traders with a holistic view of market conditions by integrating various technical indicators into a single,
cohesive tool. Each indicator has been carefully selected and improved to work together, offering enhanced customization and advanced market insights.
This combination allows for more comprehensive market analysis, improved decision-making, and efficient trading strategies.
📘 Machine Learning Integration
Purpose : Utilizes machine learning algorithms to analyze past market data and provides predictive insights based on historical data.
Usage : Activate machine learning features, set lookback windows, influence weighting, and start bar for improved trend predictions.
Activate Machine Learning :
Description : Enables advanced machine learning features that analyze past market data.
Details : This feature allows the algorithm to use historical data to forecast market movements, providing traders with enhanced predictive insights on historical data.
Kernel Lookback Window :
Description : Sets the number of previous bars that the algorithm will analyze.
Details : A higher number provides a broader view of market trends, while a lower number makes the model more sensitive to recent changes.
Kernel Influence Weighting :
Description : Adjusts the emphasis on recent versus older data.
Details : Increasing this value gives more importance to recent data, potentially making predictions more responsive to new trends.
Kernel Calculation Start Bar :
Description : Specifies the bar number from which to start the machine learning calculations.
Details : Avoids early data which may contain excessive noise and less reliable market signals.
Kernel Functions :
Gaussian Kernel :
Description : Uses a Gaussian distribution to weight historical data, focusing on more recent data points for trend analysis.
Details : Calculates weights based on the Gaussian distribution, emphasizing data points closer to the present.
Laplacian Kernel :
Description : Applies Laplacian distribution, emphasizing data points closer to the current time more heavily.
Details : Uses the Laplacian function to provide a different perspective on data weighting.
RBF Kernel :
Description : Utilizes a Radial Basis Function for smoothing and analyzing data, providing a different approach to trend prediction.
Details : Applies the RBF function to smooth data and enhance the accuracy of trend predictions.
Wavelet Kernel :
Description : Applies wavelet transform for analyzing frequency components, helping to detect patterns in the price movements.
Details : Uses wavelet-based calculations to focus on specific frequency components within the data, aiding in pattern recognition.
📘 Enhanced Ichimoku Kinkō Hyō Integration
Purpose : Provides a comprehensive overview of market trends and momentum using the Ichimoku Kinkō Hyō indicator.
Usage : Display various components of the Ichimoku Kinkō Hyō, customize their appearance, provides additional calculations for trend analysis.
Display Ichimoku Kinkō Hyō :
Description : Toggle to show or hide the Ichimoku Kinkō hyō indicator.
Details : This indicator helps traders see support and resistance levels, trend direction, and potential future movements.
Activate Heikin-Ashi Source :
Description : Switches between regular price data and Heikin-Ashi candles for analysis.
Details : Heikin-Ashi candles smooth price data, making trends easier to spot.
Display Tenkan-Sen Line :
Description : Shows the Tenkan-Sen line, a key short-term trend indicator.
Color Customization : Set the color of the Tenkan-Sen line for better visibility.
Minimum Length : Determine the shortest period for calculating the Tenkan-Sen line.
Maximum Length : Determine the longest period for calculating the Tenkan-Sen line.
Dynamic Length Adjustment : Automatically adjusts the length of the Tenkan-Sen based on market conditions.
Display Kijun-Sen Line :
Description : Shows the Kijun-Sen line, a key medium-term trend indicator.
Color Customization : Set the color of the Kijun-Sen line for better visibility.
Minimum Length : Determine the shortest period for calculating the Kijun-Sen line.
Maximum Length : Determine the longest period for calculating the Kijun-Sen line.
Dynamic Length Adjustment : Automatically adjusts the length of the Kijun-Sen based on market conditions.
Kijun-Sen Divider Tool : Adjust the sensitivity of the Kijun-Sen calculation.
Display Chikou Span :
Description : Shows the Chikou Span, which lags behind the current price to help confirm trends.
Bear Phase Color : Set the color for bearish periods.
Bull Phase Color : Set the color for bullish periods.
Consolidation Color : Set the color for consolidation periods.
Minimum Length : Determine the shortest lag period for the Chikou Span.
Maximum Length : Determine the longest lag period for the Chikou Span.
Dynamic Length Adjustment : Automatically adjusts the length of the Chikou Span based on market conditions.
Display Senkou Span A and B :
Description : Shows the Senkou Span A and B, which form the Ichimoku Cloud indicating future support and resistance levels.
Bear Color : Set the color for bearish clouds.
Bull Color : Set the color for bullish clouds.
Neutral Color : Set the color for neutral periods.
Minimum Length : Determine the shortest period for calculating the Senkou Span.
Maximum Length : Determine the longest period for calculating the Senkou Span.
Dynamic Length Adjustment : Automatically adjusts the length of the Senkou Span based on market conditions.
Projection Offset : Set how far ahead the Senkou Span is projected.
Kumo Cloud Settings :
Enable Kumo Cloud Fill : Toggle to fill the space between Senkou Span A and B with color.
Cloud Fill Transparency : Adjust the transparency of the cloud fill.
Apply WMA Smoothing :
Description : Smooths the indicator lines using a Weighted Moving Average to clarify trends.
Bar Coloring Based on Ichimoku Signals :
Description : Colors the bars based on Ichimoku signals to provide a quick visual indication of market sentiment.
Bearish Signal Bar Color : Set the color for bars during bearish signals.
Bullish Signal Bar Color : Set the color for bars during bullish signals.
Consolidation Signal Bar Color : Set the color for bars during consolidation periods.
Neutral Bar Color : Set the color for bars during neutral conditions.
Enhanced Calculations :
Heikin Ashi Values : Smooths price movements to make trends more visible.
Alternative Source Calculation : Uses a different method for calculating the indicator based on user settings.
Volume Calculations : Enhanced functions for calculating volume based on different candlestick patterns.
Dynamic Length Adjustment : Automatically adjusts the length of Ichimoku components based on market volatility.
Gaussian Kernel Calculations : Uses advanced calculations for smoother and more accurate trend analysis.
Chikou Span Adaptation : Improved calculation for the Chikou Span using dynamic lengths and advanced methods.
Visual Enhancements : Adds color gradients to the Senkou Span and dynamic coloring for the Chikou Span to improve trend visibility.
Plotting Ichimoku Components :
Tenkan-Sen : Plots the Tenkan-Sen line with dynamic adjustments.
Kijun-Sen : Plots the Kijun-Sen line with dynamic adjustments.
Senkou Span A and B : Plots these lines with dynamic projections and advanced smoothing.
Chikou Span : Plots the Chikou Span with dynamic offsets and coloring.
📘 Enhanced Candlestick Patterns Integration
Purpose : Identifies and displays various candlestick patterns to help traders spot key market movements and potential reversals.
Usage : Toggle the display of patterns, select specific pattern types, and customize pattern labels for improved visual analysis.
Display Patterns :
Description : Toggle to enable or disable the display of all candlestick patterns.
Details : When enabled, all selected candlestick patterns will be displayed on the chart, aiding traders in identifying key market movements and potential reversals.
Select Pattern Type :
Description : Select the type of candlestick patterns to detect.
Details : Options include Bullish (indicating potential upward trends), Bearish (indicating potential downward trends), or Both.
Trend Filter Method :
Description : Select the method to filter trends.
Details : Options include True Range (based on price range), Fractals, Volume, Combined, or None (no filtering).
Pattern Label Colors :
Bullish Pattern Color : Choose the color for labeling Bullish patterns, indicating potential upward trends.
Bearish Pattern Color : Choose the color for labeling Bearish patterns, indicating potential downward trends.
Indecision Pattern Color : Choose the color for labeling Indecision patterns, indicating no clear trend direction.
Base Line and Patterns Display Options :
Show Base Line in Place of Labels : Toggle to display a base line instead of labels for detected patterns. This helps visualize the general trend.
Show Counterattack Lines : Toggle to display Counterattack Lines patterns, indicating potential reversal points.
Show Dark Cloud Cover : Toggle to display Dark Cloud Cover patterns, a bearish pattern suggesting a potential reversal from an uptrend to a downtrend.
Show Engulfing Patterns : Toggle to display Engulfing patterns. Bullish Engulfing patterns suggest a potential upward reversal, while Bearish Engulfing patterns suggest a potential downward reversal.
Show Hammer Patterns : Toggle to display Hammer patterns, a bullish pattern indicating a potential reversal from a downtrend to an uptrend.
Show Hanging Man Patterns : Toggle to display Hanging Man patterns, a bearish pattern indicating a potential reversal from an uptrend to a downtrend.
Show Harami Patterns : Toggle to display Harami patterns. Bullish Harami patterns suggest a potential upward reversal, while Bearish Harami patterns suggest a potential downward reversal.
Show In-Neck Patterns : Toggle to display In-Neck patterns, indicating a potential continuation of the current trend.
Show On-Neck Patterns : Toggle to display On-Neck patterns, indicating a potential continuation of the current trend.
Show Piercing Patterns : Toggle to display Piercing patterns, a bullish pattern suggesting a potential reversal from a downtrend to an uptrend.
Show Three Black Crows : Toggle to display Three Black Crows patterns, a bearish pattern suggesting a potential reversal from an uptrend to a downtrend.
Show Thrusting Patterns : Toggle to display Thrusting patterns, a bearish pattern suggesting a potential continuation of the downtrend.
Show Upside Gap Two Crows : Toggle to display Upside Gap Two Crows patterns, a bearish pattern suggesting a potential downward reversal after an upward gap.
Show Evening Star : Toggle to display Evening Star patterns, a bearish pattern suggesting a potential reversal from an uptrend to a downtrend.
Show Inverted Hammer : Toggle to display Inverted Hammer patterns, a bullish pattern suggesting a potential reversal from a downtrend to an uptrend.
Show Morning Star : Toggle to display Morning Star patterns, a bullish pattern suggesting a potential reversal from a downtrend to an uptrend.
Show Shooting Star : Toggle to display Shooting Star patterns, a bearish pattern suggesting a potential reversal from an uptrend to a downtrend.
Show Doji Patterns : Toggle to display Doji patterns, indicating market indecision and potential reversals.
Show Dragonfly Doji : Toggle to display Dragonfly Doji patterns, a bullish pattern suggesting a potential reversal from a downtrend to an uptrend.
Show Evening Doji Star : Toggle to display Evening Doji Star patterns, a bearish pattern suggesting a potential reversal from an uptrend to a downtrend.
Show Gravestone Doji : Toggle to display Gravestone Doji patterns, a bearish pattern suggesting a potential reversal from an uptrend to a downtrend.
Show Long-Legged Doji : Toggle to display Long-Legged Doji patterns, indicating high market indecision and potential reversals.
Show Morning Doji Star : Toggle to display Morning Doji Star patterns, a bullish pattern suggesting a potential reversal from a downtrend to an uptrend.
Show Rising Three Methods : Toggle to display Rising Three Methods patterns, a bullish pattern suggesting a continuation of the uptrend.
Show Falling Three Methods : Toggle to display Falling Three Methods patterns, a bearish pattern suggesting a continuation of the downtrend.
Show Tasuki Patterns : Toggle to display Tasuki patterns, indicating potential trend continuation after a gap.
Show Marubozo : Toggle to display Marubozo patterns, indicating strong trend continuation, either bullish or bearish.
Show Long Lower Shadow : Toggle to display Long Lower Shadow patterns, indicating strong buying pressure and potential upward movement.
Show Long Upper Shadow : Toggle to display Long Upper Shadow patterns, indicating strong selling pressure and potential downward movement.
Show Three Inside Up/Down : Toggle to display Three Inside Up/Down patterns, indicating potential bullish or bearish reversals.
Show Kicker Pattern : Toggle to display Kicker patterns, indicating significant potential reversals.
Show Tweezer Tops/Bottoms : Toggle to display Tweezer Tops/Bottoms patterns, indicating potential reversals at the tops or bottoms.
Show Mat Hold Pattern : Toggle to display Mat Hold patterns, a bullish pattern suggesting a continuation of the uptrend.
Candle Body/Shadow Comparison Options :
Candle Body/Shadow Comparison : Choose the criteria to compare candle sizes: Shadows (larger shadows), Body (larger body), Both (larger shadows and body), Either (larger shadows or body), or None (no comparison).
Look-back Period for Candle Comparison : Specify the number of periods to look back when comparing the current candle size to determine if it is significant.
Period for Body Length Average : Specify the period for calculating the average body length of candles to help identify significant patterns.
Period for Candle Length Average : Specify the period for calculating the average length of candles to help identify significant patterns.
Specific Pattern Thresholds :
Doji Body Percentage Threshold : Set the percentage threshold for identifying Doji patterns based on the candle body size compared to its range.
Upper Shadow Percentage Limit : Set the maximum allowed upper shadow percentage of the candle’s range for identifying specific Doji patterns.
Lower Shadow Percentage Limit : Set the maximum allowed lower shadow percentage of the candle’s range for identifying specific Doji patterns.
Price Deviation Tolerance : Specify the price deviation tolerance for pattern recognition, which helps in identifying patterns within a certain price range.
Thrusting Neck Percentage : Set the percentage threshold for identifying Thrusting Neck patterns, indicating a potential continuation of the current trend.
Base Line Settings :
Base Line EMA Length : Specify the length of the EMA for the Base Line, helping to visualize the general trend.
Enhanced Calculations :
Wavelet Transform : If machine learning is enabled, calculates the wavelet transform for smoother and more accurate pattern detection.
Candle Body and Shadows Calculation : Detailed calculations for candle body and shadow lengths to improve pattern detection.
Average Calculations : Calculate averages for body and candle sizes to help identify significant patterns.
Fractals Calculation : Identify fractal highs and lows to aid in trend detection.
Trend Filters : Apply user-selected trend filters based on True Range, Fractals, Volume, or a combination.
Pattern Detection and Labeling : Detects and labels various candlestick patterns, including Doji, Engulfing, Hammer, and more, with options for displaying labels or base lines.
Alerts and Notifications : Set alerts for detected patterns and base line colors to notify traders of significant market events.
Plotting Candlestick Patterns :
Pattern Detection : Automatically detects and labels various candlestick patterns based on user settings.
Label Customization : Customize the labels for different patterns, including color and text.
Base Line Plotting : Option to plot a base line instead of labels for detected patterns, enhancing trend visualization.
Alerts for Patterns : Set alerts for detected patterns to keep traders informed of significant market changes.
📘 Enhanced Fibonacci Retracement Integration
Purpose : Provides a tool for identifying potential support and resistance levels using Fibonacci retracement.
Usage : Toggle the display of Fibonacci levels, adjust the lookback period, and customize the appearance of Fibonacci levels for better market analysis.
Auto Mode :
Description : Toggle to enable or disable automatic detection of price points.
Details : When enabled, the highest and lowest price points within a specified period will be automatically detected to set Fibonacci levels. Disable to manually set the top and bottom prices.
Period :
Description : Set the lookback period for detecting price points.
Details : Defines the number of bars to look back when detecting the highest and lowest prices in Auto Mode, used for calculating Fibonacci levels.
Manual Top :
Description : Manually set the top price level.
Details : Adjust this setting to reflect the peak price of interest when Auto Mode is disabled.
Manual Bottom :
Description : Manually set the bottom price level.
Details : Adjust this setting to reflect the low price of interest when Auto Mode is disabled.
Display Fibonacci :
Description : Toggle to show or hide Fibonacci retracement levels.
Details : When enabled, the calculated Fibonacci levels will be displayed on the chart, overlaying the price data.
Baseline Levels :
Description : Select Fibonacci levels to highlight as baselines.
Details : Choose specific levels to be visually distinct, emphasizing their significance in the analysis.
Fibonacci Levels Colors :
Upper Levels Color : Set the color for Fibonacci levels above the baseline, indicating potential resistance levels.
Lower Levels Color : Set the color for Fibonacci levels below the baseline, indicating potential support levels.
Baseline Levels Color : Set the color for highlighted baseline Fibonacci levels, making them stand out from other levels.
Display Individual Fibonacci Levels :
Show Level : Toggle to enable or disable the display of specific Fibonacci levels.
Level Value : Set the multiplier used to calculate each specific Fibonacci level relative to the price range.
Reverse Levels :
Description : Toggle to switch the calculation direction of Fibonacci levels.
Details : When enabled, levels are calculated in reverse, useful for analyzing downtrends.
Line Extension :
Description : Choose how Fibonacci level lines are extended on the chart.
Details : Options include extending lines to the left, right, or both, affecting their visual presentation.
Text Size :
Description : Adjust the font size of the labels for Fibonacci levels.
Details : Options range from large to tiny, allowing for readability adjustments according to user preference.
Line Style :
Description : Select the line style for Fibonacci levels.
Details : Options include solid, dotted, and dashed, providing visual distinction.
Line Width :
Description : Set the thickness of the Fibonacci level lines.
Details : A higher value makes the lines more prominent on the chart.
Baseline Line Style :
Description : Choose the line style specifically for the baseline levels.
Details : This can differ from other Fibonacci levels to emphasize their importance.
Baseline Line Width :
Description : Adjust the thickness of the baseline level lines.
Details : Can be set differently from other levels for visual emphasis.
Enhanced Calculations :
Automatic and Manual Top/Bottom Setup : Detect or manually set the highest and lowest price points.
Price Range Calculation : Determine the range between the highest and lowest prices.
Fibonacci Level Values : Calculate the values for each Fibonacci level.
Visual and Label Configuration : Configure visual aspects and labels for each level.
Plotting and Labeling :
Level Plotting :
Description : Plot each Fibonacci level on the chart.
Details : Draw lines representing each calculated level.
Label Customization :
Description : Customize the labels for Fibonacci levels.
Details : Include text, colors, and positioning for clarity.
📘 Supports and Resistances Integration
Purpose : Identifies key support and resistance levels to aid in market analysis.
Usage : Toggle the display of support and resistance lines, customize their appearance, and use Bollinger Bands for additional insights.
Display Supports and Resistances :
Description : Toggle to enable or disable the display of support and resistance lines.
Details : When enabled, support and resistance lines will be shown on the chart, providing key levels for market analysis.
Swing Period :
Description : Set the retrospective period for identifying swing points.
Details : A longer period captures more significant trends but may reduce sensitivity. The default value is 10.
Support Line Color :
Description : Set the color for support lines.
Details : Choose a color that enhances chart readability. Default is green.
Resistance Line Color :
Description : Set the color for resistance lines.
Details : Choose a color that makes resistance lines easily distinguishable. Default is red.
Trend-Based Line Color :
Description : Toggle to enable dynamic coloring based on trend direction.
Details : When enabled, the color of the lines will change according to the trend, aiding visual analysis.
Line Thickness :
Description : Adjust the thickness of the support and resistance lines.
Details : Choose a thickness value between 1 and 5 for better visibility.
Line Style :
Description : Select the style of the lines.
Details : Options include Solid, Dotted, or Dashed lines for visual distinction.
Number of Lines to Display :
Description : Set the maximum number of support/resistance lines to display.
Details : Adjust the number of lines to avoid clutter or to show more levels.
Display Bollinger Bands :
Description : Toggle to show or hide Bollinger Bands on the chart.
Details : Bollinger Bands provide a visual representation of volatility and potential price ranges.
Bollinger Bands Integration :
Description : Enable the integration of Bollinger Bands for S/R calculation.
Details : This feature adjusts the placement of S/R lines based on the market volatility captured by the Bollinger Bands.
Bollinger Bands Color Settings :
Description : Set colors for different Bollinger Band conditions.
Details :
Green: Prices above the median but below the upper band (potential overbought area).
Dark green: Prices above the upper band (strong upward momentum).
Light red: Prices below the median but above the lower band (potential oversold area).
Dark red: Prices below the lower band (strong downward momentum).
Fill Opacity Adjustment :
Description : Adjust the fill opacity between Bollinger Bands.
Details : Set the opacity level to balance visibility with other chart elements.
BB Sensitivity Level :
Description : Adjust the sensitivity for determining S/R levels near Bollinger Bands.
Details : A higher value increases the consideration of levels near the bands.
Band Width Multiplier :
Description : Control the width of the Bollinger Bands.
Details : Adjust the multiplier to expand or contract the bands based on market volatility.
Uniform BB Coloring :
Description : Apply a consistent color to Bollinger Bands.
Details : Simplify visual interpretation with a uniform color.
Plotting and Alerts :
Plotting Bollinger Bands :
Description : Plot the Bollinger Bands on the chart.
Details : The bands are colored based on the conditions set for market volatility and price ranges.
Alerts and Notifications :
Description : Set alerts for support/resistance breaks and Bollinger Band breakouts.
Details : Notify traders of significant market events related to these levels.
📘 Enhanced Trend Lines Integration
Purpose : Identifies and plots trend lines based on market structure to help traders understand market direction and potential buy/sell points.
Usage : Toggle the display of trend lines, customize their appearance, and use enhanced calculations for trend analysis.
Display Trend Lines :
Description : Enable or disable the display of trend lines on the chart.
Details : These trend lines are calculated based on market structure, specifically through the detection of Breaks of Structure (BOS). If enabled, the trend lines will help in identifying the market overall trend and potential buy and sell points.
Trend Line Colors :
Upper Line Color : Set the color for the upper trend lines to enhance visual distinction.
Lower Line Color : Set the color for the lower trend lines, aiding in easy identification of support levels.
Pivot Labels :
Show Pivots Labels : Control the display of pivot labels on the chart.
Pivot Label Size : Select the size of the pivot labels displayed on the chart. Options include Tiny, Small, Normal, Large, and Huge.
Trend Line Calculations :
Pivot Depth : Adjust the depth for pivot calculation based on the selected timeframe to capture significant price movements.
Pivot Deviation : Set the deviation for pivot calculation to identify key turning points.
Pivot Backstep : Define the backstep for pivot calculation to ensure accurate detection of pivot points.
Enhanced Calculations :
Market Structure Detection : Utilize advanced algorithms to identify key market structures, improving trend line accuracy.
Adaptive Parameters : Automatically adjust pivot depth, deviation, and backstep based on the selected timeframe for better relevance.
Zigzag Calculation : Implement zigzag patterns to dynamically adjust trend lines, ensuring they reflect current market conditions.
Slope and Intercept Calculation : Compute the slope and intercept for trend lines to enhance precision in trend detection.
Dynamic Updates : Continuously update trend lines as new data becomes available, ensuring real-time accuracy.
Alerts and Notifications : Set alerts for new high and low pivots, as well as for when the price crosses upper or lower trend lines, keeping traders informed of significant market changes.
Plotting Trend Lines :
Trend Line Plotting : Automatically draw trend lines based on detected BOS, helping traders visualize the market trend.
Diagonal Support/Resistance Lines : Plot diagonal lines to indicate support and resistance levels, enhancing the understanding of market dynamics.
Pivot Label Customization : Customize pivot labels for clear identification of high and low points in the trend.
Alerts for Trend Lines : Set alerts for when price crosses trend lines, ensuring timely notifications of potential trading opportunities.
📘 Enhanced Linear Regression Integration
Purpose : Uses linear regression to analyze price movements and identify trends.
Usage : Display the linear regression projection line, customize its appearance, and use enhanced calculations for better trend analysis.
Display Projection Line :
Description : Toggle to display or hide the linear regression projection line on the chart.
Details : This line represents the best fit line that predicts future prices based on historical data.
Data Source :
Description : Select the data source for the linear regression projection.
Details : This is typically the closing price but can be any price point such as open, high, or low. The selected source will be used to calculate the linear regression projection line.
Trend-Based Line Color :
Enable Trend-Based Line Color : Toggle to automatically color the projection line based on the trend direction. When enabled, the line will be red for a downward trend and green for an upward trend, providing a visual indication of market direction.
Uptrend Line Color : Select the color for the projection line when the trend is upward. This color will be used when "Enable Trend-Based Line Color" is active.
Downtrend Line Color : Select the color for the projection line when the trend is downward. This color will be used when "Enable Trend-Based Line Color" is active.
Enhanced Calculations :
Standard Deviation Calculation : Calculate the standard deviation for a given length to understand the volatility around the linear regression line.
Pearson's Correlation Calculation : Compute Pearson's R to measure the strength of the linear relationship between the price points and the linear regression line.
Slope and Intercept Calculation : Calculate the slope and intercept for the regression line, providing the basis for the projection.
Kernel Application : Optionally apply the RBF Kernel to the selected source data for smoothing and enhancing the regression calculations.
Dynamic Length Selection : Automatically select the optimal regression period based on the highest Pearson's R value, ensuring the most accurate trend representation.
Real-Time Updates : Continuously update the regression line and related calculations as new data becomes available, maintaining accuracy in real-time.
Alerts and Notifications : Set alerts for when the price crosses the linear regression projection line, notifying traders of significant market events.
Plotting Linear Regression Components :
Projection Line Plotting : Automatically draw the linear regression projection line based on historical data and the selected data source.
Label Customization : Customize the label for the projection line, including color and text, for clear identification on the chart.
Alerts for Projection Line : Set alerts for when the price crosses the projection line, ensuring timely notifications of potential trading opportunities.
📘 POC Analysis Integration
Purpose : Identifies the Point of Control (POC) to highlight price levels with the highest trading volume.
Usage : Toggle the display of the POC, customize its appearance, and use enhanced calculations for better market analysis.
Display POC :
Description : Toggle to display or hide the Point of Control (POC) on the chart.
Details : The POC is the price level at which the highest volume of trading occurred, indicating a focal point of market activity.
Data Source :
Description : Select the price source for POC analysis.
Details : This is typically the closing price but can be any price point such as open, high, or low. The selected source will be used to calculate the POC.
POC Line Colors :
Color Above POC : Set the line color when the closing price is above the POC.
Color Below POC : Set the line color when the closing price is below the POC.
Width Multiplier :
Description : Adjust the width around the price for POC analysis.
Details : A higher value broadens the calculation range.
POC Calculation and Visualization :
Price Level Initialization : Calculate the initial spacing between price levels based on the first candlestick and user settings.
Volume Data Accumulation : Accumulate volume data at specified price levels for each candlestick to determine the POC.
Dynamic Array Expansion : Expand price levels array to accommodate new price data outside the current range.
POC Determination : Determine and visualize the POC at the last candlestick if enabled by the user.
Alerts and Notifications : Set alerts for when the price crosses the POC, notifying traders of significant market events.
Plotting POC Components :
POC Line Plotting : Automatically draw the POC line based on historical data and the selected data source.
Label Customization : Customize the label for the POC line, including color and text, for clear identification on the chart.
Alerts for POC : Set alerts for when the price crosses the POC, ensuring timely notifications of potential trading opportunities.
📘 Enhanced Divergences Integration
Purpose : Detects and displays divergences between price movements and indicators to identify potential reversal points.
Usage : Toggle the display of divergences, select data sources, customize divergence colors, and use enhanced calculations for better trend analysis.
Display Divergences :
Description : Toggle to display or hide the detected divergences on the chart.
Details : Divergences occur when the price movement of an asset and a related indicator (e.g., volume or momentum) move in opposite directions. They are used to identify potential reversal points in the market. Regular divergences signal possible reversals, while hidden divergences can indicate continuation.
Data Source :
Description : Defines the timeframe from which to fetch data for analysis.
Details : Typically lower than the chart current timeframe for multi-timeframe analysis.
Divergence Colors :
Bearish Divergence Color : Sets the color for bearish divergence lines. Bearish divergences typically suggest potential downward price movement.
Bullish Divergence Color : Sets the color for bullish divergence lines. Bullish divergences typically indicate potential upward price movement.
Pivot Bars :
Left Bars : Number of bars to the left of the pivot point to consider. Helps in identifying the pivot high or low by looking back these many bars.
Right Bars : Number of bars to the right of the pivot point to consider. Assists in confirming a pivot point by ensuring no higher high or lower low is present within this range.
Display Hidden Divergences :
Description : When enabled, this setting reveals hidden divergences on the chart.
Details : Hidden divergences are a subtler form of divergence that often signal continuation rather than reversal. A hidden bullish divergence occurs when price makes a higher low while the indicator makes a lower low, suggesting the continuation of an uptrend. Conversely, a hidden bearish divergence occurs when price makes a lower high while the indicator makes a higher high, indicating the continuation of a downtrend. These divergences are particularly useful for identifying the strength of the current trend.
Dynamic Line Width Based on Divergence Count :
Description : When enabled, adjusts the width of the divergence line dynamically based on the count of divergences detected.
Details : This provides visual emphasis on stronger signals.
Enhanced Calculations :
Standard Deviation Calculation : Calculate the standard deviation for a given length to understand the volatility around the linear regression line.
Pearson's Correlation Calculation : Compute Pearson's R to measure the strength of the linear relationship between the price points and the linear regression line.
Slope and Intercept Calculation : Calculate the slope and intercept for the regression line, providing the basis for the projection.
Kernel Application : Optionally apply the RBF Kernel to the selected source data for smoothing and enhancing the regression calculations.
Dynamic Length Selection : Automatically select the optimal regression period based on the highest Pearson's R value, ensuring the most accurate trend representation.
Real-Time Updates : Continuously update the regression line and related calculations as new data becomes available, maintaining accuracy in real-time.
Alerts and Notifications : Set alerts for when the price crosses the linear regression projection line, notifying traders of significant market events.
Plotting Divergence Components :
Divergence Line Plotting : Automatically draw divergence lines based on historical data and the selected data source.
Label Customization : Customize the label for the divergence lines, including color and text, for clear identification on the chart.
Alerts for Divergences : Set alerts for when a divergence is detected, ensuring timely notifications of potential trading opportunities.
📘 Enhanced Average True Range Integration
Purpose : Measures market volatility using the Average True Range (ATR) to assist in identifying potential buy and sell points.
Usage : Set the ATR period, minimum tick filter, upper and lower coefficients, and customize ATR colors for better market analysis.
Show Labels :
Description : Enable or disable the display of labels for the Average True Range (ATR) indicator.
Details : This option controls whether the ATR signals (buy and sell) are shown on the chart with respective labels.
ATR Period :
Description : Sets the period for calculating the Average True Range (ATR).
Details : The ATR measures market volatility by calculating the average range of price movement over a specified period. A shorter period makes the ATR more sensitive to recent price movements, while a longer period smooths out short-term volatility.
Minimum Tick Filter :
Description : Sets the minimum tick filter for buy and sell signals.
Details : This filter ensures that the price movement is significant enough to be considered a valid signal. For example, a value of 20 means that the price must move at least 20 ticks from the open to the close to generate a signal.
Upper Coefficient :
Description : Sets the upper coefficient for band calculation.
Details : This value adjusts the sensitivity of the upper band used to detect high points. A higher coefficient makes the band wider, capturing more significant price movements, while a lower coefficient makes the band narrower, making it more sensitive to smaller price changes.
Lower Coefficient :
Description : Sets the lower coefficient for band calculation.
Details : This value adjusts the sensitivity of the lower band used to detect low points. A higher coefficient makes the band wider, capturing more significant price movements, while a lower coefficient makes the band narrower, making it more sensitive to smaller price changes.
ATR Colors :
Bullish Color : Sets the color for the bullish signal, helping to visually distinguish bullish trends.
Bearish Color : Sets the color for the bearish signal, helping to visually distinguish bearish trends.
Enhanced Calculations :
Dynamic Coefficient Calculation : Calculates dynamic coefficients based on market volatility, adjusting the sensitivity of ATR bands accordingly.
Band Calculation : Computes high and low bands using dynamic coefficients to detect significant price movements.
High/Low Point Detection : Identifies potential high and low points based on ATR band calculations and price thresholds.
Real-Time Updates : Continuously updates ATR calculations and signals as new data becomes available, ensuring accuracy in real-time.
Plotting ATR Components :
Signal Plotting : Plots bullish and bearish ATR signals on the chart based on calculated conditions.
Label Customization : Customize the labels for ATR signals, including color and text, for clear identification on the chart.
Alerts for Signals : Set alerts for detected bullish and bearish signals, ensuring timely notifications of potential trading opportunities.
📘 Enhanced ATR Visualization Parameters
Purpose : Provides a visual representation of market volatility using the ATR Strength Meter.
Usage : Toggle the display of the ATR Strength Meter, set thresholds, and customize its appearance for better market analysis.
Display ATR Strength Meter :
Description : Toggle to display or hide the ATR Strength Meter, a visual representation of market volatility.
Details : The meter is based on the Average True Range (ATR) and helps identify volatility trends.
High ATR Threshold :
Description : Set the threshold for high volatility.
Details : ATR values above this threshold indicate increased market volatility.
Low ATR Threshold :
Description : Set the threshold for low volatility.
Details : ATR values below this threshold indicate decreased market volatility.
Progression Bar Position :
Description : Select the position of the ATR Strength Meter on the chart.
Details : Options are "Top" or "Bottom", affecting where the volatility meter is displayed relative to price action.
Progress Bar Length :
Description : Set the horizontal length of the ATR Strength progression bar.
Details : Adjust to increase or decrease the bar's width, accommodating different chart sizes and user preferences.
Enhanced Calculations :
ATR Strength Calculation : Calculate the ATR strength to measure market volatility.
Dynamic Coefficients : Use dynamic coefficients based on volatility for more accurate calculations.
Progress Bar Calculation : Determine the position and color of the progression bar based on ATR strength.
Label Positioning : Dynamically position labels for minimum and maximum values to avoid overlap.
Plotting ATR Strength Meter :
Progression Bar Plotting : Plot the progression bar to represent the ATR strength.
Label Customization : Customize labels for the ATR strength, minimum, and maximum values.
📘 Enhanced Relative Strength Index Integration
(A special thanks to RumpyPumpyDumpy for allowing the private reuse of his script.)
Purpose : Measures market momentum using the Relative Strength Index (RSI) and Stochastic RSI to assist in identifying potential buy and sell points.
Usage : Set the RSI and StochRSI parameters, toggle the display of the RSI Meter, and customize its appearance for better market analysis.
RSI Calculation Parameters :
RSI Length : Defines the length of the RSI calculation.
Details : A longer period captures more data points but may reduce sensitivity.
RSI Overbought Level : Sets the overbought level for RSI.
Details : Values above this level indicate overbought conditions.
RSI Oversold Level : Sets the oversold level for RSI.
Details : Values below this level indicate oversold conditions.
StochRSI Length : Defines the length of the StochRSI calculation.
Details : A longer period captures more data points but may reduce sensitivity.
StochRSI %K Length : Defines the length of the %K line of the StochRSI.
StochRSI %D Length : Defines the length of the %D line (SMA of %K) of the StochRSI.
RSI Visualization Parameters :
Display RSI Meter : Toggle the display of the RSI Meter on the chart.
RSI Meter Size : Adjust the size of the RSI Meter displayed on the chart.
Details : Measured as the diameter of the meter. Increase the value for larger display size, enhancing visibility and making it easier to read the RSI trend at a glance.
Horizontal Offset : Move the RSI Meter horizontally across the chart.
Details : Positive values shift the meter to the left, allowing for placement adjustments relative to the chart's current view or specific visual preferences.
RSI Meter Components :
Sectors and Ticks : Draw sector arcs and tick marks around the RSI Meter to represent different RSI levels and thresholds.
Needle : Draw the needle on the RSI Meter to indicate the current RSI value.
Sector Labels : Label each sector of the RSI Meter to indicate market conditions like "Strong Buy," "Buy," "Neutral," "Sell," and "Strong Sell."
Title Label : Draw the title label for the RSI Meter displaying the RSI value and its period.
Enhanced Calculations :
RSI Calculation : Calculate the RSI using the built-in function with the specified length and source.
StochRSI Calculation : Calculate StochRSI values using the specified lengths for RSI, %K, and %D.
Dynamic Line Management : Efficiently manage and update dynamically created line objects to prevent potential memory leaks.
Optimized Sector and Needle Drawing : Enhanced the drawing functions for sectors, needles, and ticks to improve visual clarity and performance.
Plotting RSI Meter :
Sector Plotting : Draw the sectors on the RSI Meter using specified colors and widths to represent different RSI levels and thresholds.
Needle Plotting : Plot the needle on the RSI Meter based on the calculated RSI value to visually indicate the current RSI level.
Tick Plotting : Plot tick marks around the RSI Meter to denote key RSI levels and thresholds for better readability.
Label Plotting : Draw sector labels and a title label on the RSI Meter to provide context and information about the RSI levels and their corresponding market conditions.
📘 Market Sentiment Integration
Purpose : Analyzes market sentiment using various indicators to provide an overall sentiment score.
Usage : Enable or disable individual sentiment indicators, set account type, and customize sentiment calculations for better market analysis.
Volatility Index (IV) :
Description : Enable or disable the use of the Volatility Index in sentiment calculation.
Details : When enabled, the Volatility Index (IV) provides insight into market sentiment by measuring market volatility. The selected Volatility Index varies based on your TradingView account type.
Account Type :
Description : Select your TradingView account type.
Details : Free accounts use SPX, while Premium accounts use VIX.
Put/Call Ratio (PCR) :
Description : Enable or disable the use of the Put/Call ratio in sentiment calculation.
Details : The Put/Call ratio is a sentiment indicator that measures the volume of put options traded relative to call options, indicating market sentiment towards bearish or bullish expectations.
Fear and Greed Index :
Description : Enable or disable the use of the Fear and Greed Index in sentiment calculation.
Details : The Fear and Greed Index gauges the prevailing emotions in the market, indicating whether investors are inclined towards fear (bearish sentiment) or greed (bullish sentiment).
Momentum Indicators :
Description : Enable or disable the use of momentum indicators like MACD and RoC in sentiment calculation.
Details : Momentum indicators help identify the strength and direction of price movements, assisting in sentiment analysis.
Adaptive Periods for Shorter Timeframes :
Description : Toggle this option to use shorter periods for sentiment indicators when analyzing lower timeframes.
Details : Enabling this option allows for more responsive and sensitive analysis when working with shorter timeframes.
Calculation Details :
Normalization Function : Normalize the values of the indicators over a 252-period range.
Set Periods Function : Set periods based on user preference for faster or slower periods, adjusting the analysis sensitivity.
IV Calculation : Calculate the IV value based on the selected Volatility Index (SPX for Free accounts, VIX for Premium accounts).
Put/Call Ratio Calculation : Calculate the Put/Call ratio using volume data, where put volume is proportional to the trading range, and call volume is proportional to the price change.
RoC Calculation : Calculate the Rate of Change (RoC) as a momentum indicator, measuring the percentage change in closing prices over a specified period.
Dynamic Thresholds : Define dynamic thresholds based on historical data, calculating mean and standard deviation to determine upper and lower thresholds for IV, PCR, and RoC.
📘 Enhanced Market Trend Dashboard Integration
Purpose : Provides a summary of key market indicators and signals in a single dashboard for quick and easy reference.
Usage : Customize the dashboard settings to display relevant market information, including Ichimoku components, Linear Regression, Support/Resistance levels, MACD, RSI, and Market Sentiment.
Market Trend Dashboard Parameters :
Display Market Trend Dashboard : Toggle to show or hide the market trend dashboard, providing a summary of key indicators and signals.
Panel Position : Select the position of the dashboard on the chart for optimal viewing.
Panel Text Size : Choose the text size for the information displayed in the dashboard, ensuring readability.
Panel Background Color : Set the background color of the market trend dashboard, enhancing contrast with the chart.
Ichimoku Dashboard Parameters :
Display Ichimoku Dashboard : Toggle to show or hide the Ichimoku section in the dashboard.
Display Tenkan-Sen Price Cross : Indicate when the price crosses the Tenkan-Sen line, signaling potential trade opportunities.
Display Kijun-Sen Price Cross : Indicate when the price crosses the Kijun-Sen line, often considered a stronger signal than Tenkan-Sen crosses.
Display Chikou Span Price Cross : Indicate Chikou Span price crosses, providing insight into potential trend reversals.
Display Kumo Breakout : Indicate Kumo (cloud) breakouts, which can signify major trend shifts.
Display Kumo Twist : Indicate Kumo twists, suggesting changing market dynamics and potential reversals.
Linear Regression Projection Dashboard Parameters :
Display LR Projection Dashboard : Toggle to show or hide the Linear Regression Projection section in the dashboard.
Display Linear Regression Period : Indicate the period used for Linear Regression Projection analysis.
Display Pearson R Details : Show the Pearson R value in the dashboard, indicating the strength and direction of the correlation in the Linear Regression Projection.
Supports and Resistances Dashboard Parameters :
Display S/R Dashboard : Toggle to show or hide the Support and Resistance section in the dashboard.
Display S/R Break Prices : Show the latest break prices of support and resistance levels in the dashboard.
MACD Dashboard Parameters :
Display MACD Dashboard : Toggle to show or hide the MACD section in the dashboard.
RSI Dashboard Parameters :
Display RSI Dashboard : Toggle to show or hide the Relative Strength Index section in the dashboard.
Display RSI Details : Show the RSI value and status in the dashboard.
Display StochRSI Details : Show the StochRSI %K, %D values and status in the dashboard.
Market Sentiment Dashboard Parameters :
Display Market Sentiment Dashboard : Enable or disable the display of the Market Sentiment Dashboard, which summarizes key market sentiment indicators like Implied Volatility, Put/Call Ratio, and Fear and Greed Index.
Display Implied Volatility Details : Show or hide the Implied Volatility details in the Market Sentiment Dashboard.
Display Put/Call Ratio Details : Show or hide the Put/Call Ratio details in the Market Sentiment Dashboard.
Display Fear and Greed Index Details : Show or hide the Fear and Greed Index details in the Market Sentiment Dashboard.
Enhanced Calculations :
Ichimoku Cloud Trend Calculation : Calculates trend based on the relationship between Ichimoku Cloud components, identifying bullish or bearish trends.
Support and Resistance Break Detection : Detects breaks in support and resistance levels and updates the dashboard accordingly.
Linear Regression Projection Calculation : Calculates Linear Regression Projection and Pearson R value for trend analysis.
MACD Signal Calculation : Determines MACD status based on histogram values.
RSI and StochRSI Calculation : Calculates RSI and StochRSI values and updates their statuses in the dashboard.
Market Sentiment Score Calculation : Calculates overall market sentiment score based on individual sentiment indicators.
Dynamic Alert Management : Manages alerts for various dashboard signals to prevent repeated alerts.
Real-Time Data Integration : Continuously updates the dashboard with real-time data for accurate and current trend analysis.
Plotting Market Trend Dashboard Components :
Ichimoku Components Plotting : Plots Tenkan-Sen, Kijun-Sen, Chikou Span, and Kumo cloud with dynamic adjustments.
Support and Resistance Levels Plotting : Plots support and resistance levels and updates them dynamically based on market data.
Linear Regression Projection Plotting : Plots the Linear Regression Projection line and labels with trend-based colors.
MACD and RSI Plotting : Plots MACD and RSI signals on the dashboard, including status updates.
Market Sentiment Indicators Plotting : Plots Market Sentiment indicators like IV, PCR, and Fear and Greed Index with dynamic updates.
Alert Notifications Plotting : Plots alert notifications for significant market changes based on dashboard signals.
Summary
This comprehensive market analyzer integrates multiple technical indicators, including machine learning, Ichimoku Kinkō Hyō, candlestick patterns, Fibonacci retracement, support and resistance levels, trend lines, linear regression, POC analysis, divergences, ATR, RSI, and market sentiment. Each section includes detailed descriptions and usage instructions to help traders understand how to effectively utilize the indicator in their trading strategies.
Same or not?This script has been coded for @IchimokuScholar (twitter.com).
Green cross is when a red/green candle closes the same colour as the preceding candle.
Red cross is when it flips.
Coded by @TAMYDUCK (twitter.com)
Same-Or-NotThis script has been coded for @IchimokuScholar (twitter.com).
Green cross is when a red/green candle closes the same colour as the preceding candle.
Red cross is when it flips.
Coded by @TAMYDUCK (twitter.com)
Malama's Dashboard with HeikinMalama's Dashboard with Heikin is a comprehensive trading indicator designed to provide traders with a consolidated view of market sentiment across multiple technical indicators. It combines Ichimoku Cloud, RSI, ADX, Choppiness Index, volume analysis, momentum, divergence detection, and multi-timeframe (MTF) MACD and volume trends to generate a composite sentiment score. The indicator displays these metrics in a visually intuitive table, enabling traders to quickly assess market conditions and make informed decisions. Optionally, it supports Heikin Ashi candles to smooth price data and reduce noise, aiding in trend identification. The script solves the problem of information overload by presenting key indicators in a single, trader-friendly dashboard, reducing the need for multiple charts or indicators.
Originality and Usefulness
This script is a unique mashup of several well-known technical indicators, integrated into a cohesive dashboard with a composite sentiment score. Unlike standalone indicators like RSI or Ichimoku, this script synthesizes signals from Ichimoku Cloud, RSI, ADX, Choppiness, volume, momentum, divergence, and MTF analysis into a unified sentiment metric. The inclusion of Heikin Ashi candles as an optional input adds flexibility for traders preferring smoothed price action. The composite score, derived from weighted contributions of each indicator, provides a novel way to gauge overall market direction, which is not commonly found in public open-source scripts. While individual components like RSI or Ichimoku are widely available, the script’s originality lies in its integrated approach, clear table visualization, and customizable settings, making it a practical tool for traders seeking a holistic market view.
Detailed Methodology ("How It Works")
The script processes multiple technical indicators and aggregates their signals into a composite sentiment score, displayed in a table. Below is a breakdown of its core components and logic:
Heikin Ashi Candles:
Logic: Optionally applies Heikin Ashi calculations to smooth price data. Heikin Ashi candles are computed using formulas for open, high, low, and close prices, reducing market noise and emphasizing trends.
Usage: When enabled, all subsequent calculations (Ichimoku, RSI, ADX, etc.) use Heikin Ashi prices instead of regular OHLC data, potentially improving trend clarity.
Ichimoku Cloud:
Logic: Calculates the Conversion Line (9-period high/low average), Base Line (26-period high/low average), Leading Span A (average of Conversion and Base Lines), and Leading Span B (52-period high/low average).
Signals: Bullish if the close price is above both Leading Spans; bearish if below; neutral otherwise.
Average Directional Index (ADX):
Logic: Computes ADX using a 14-period (default) directional movement index, measuring trend strength. PlusDI and MinusDI are calculated from price movements, and ADX is derived from their difference.
Signals: Bullish if PlusDI > MinusDI; bearish otherwise. ADX value indicates trend strength but is not used directly in sentiment scoring.
Relative Strength Index (RSI):
Logic: Calculates RSI over a 21-period (default) using the closing price. Overbought (>75) and oversold (<25) levels are user-defined.
Signals: Bullish if RSI > 50; bearish if RSI < 50. Overbought/oversold conditions are displayed but not used in the composite score.
Momentum:
Logic: Measures the difference between the current close and the close 10 periods ago (default).
Signals: Bullish if momentum > 0; bearish if < 0; neutral if 0.
Choppiness Index:
Logic: Calculates choppiness over a 14-period (default) using ATR and price range, normalized to a 0–100 scale. Values >61.8 indicate a sideways market; <38.2 indicate a trending market.
Signals: Bullish if choppiness < 38.2; bearish otherwise.
Volume Analysis:
Logic: Compares current volume to a 21-period (default) simple moving average (SMA). Bullish or bearish pressure is determined by whether the close is above or below the open.
Signals: Bullish if volume > 1.2x SMA and bullish pressure dominates; bearish if bearish pressure dominates; neutral otherwise.
Divergence Detection:
Logic: Identifies RSI divergences over a 5-period lookback. A bullish divergence occurs when price makes a lower low, but RSI makes a higher low; bearish divergence is the opposite.
Signals: Bullish or bearish based on divergence detection; neutral if no divergence.
Multi-Timeframe (MTF) Analysis:
Logic: Retrieves daily MACD (12, 26, 9) and volume SMA (21-period) from a higher timeframe. MACD is bullish if the MACD line > signal line; volume is bullish if current volume > daily SMA.
Signals: Bullish or bearish based on MACD and volume trends.
Composite Sentiment Score:
Logic: Aggregates signals from Ichimoku (±2), RSI (±1), ADX (±1), momentum (±1), choppiness (±1), divergence (±1), MTF MACD (±1), and MTF volume (±1). The score ranges from -8 to +8.
Signals: Bullish if score > 0; bearish if < 0; neutral if 0.
Alert Condition:
Triggers an alert when the composite sentiment flips (e.g., from bullish to bearish).
Strategy Results and Risk Management
This script is an indicator, not a strategy, and does not include backtesting or automated trade signals. However, the composite sentiment score can guide trading decisions. Assumptions for practical use include:
Commission and Slippage: Traders should account for realistic trading costs (e.g., 0.1% per trade) when acting on signals, though the script does not model these.
Risk Limits: Traders are advised to risk 5–10% of equity per trade, depending on their strategy and the strength of the composite score (e.g., higher scores may justify larger positions).
Trade Frequency: The script’s signals are based on multiple indicators, ensuring sufficient trade opportunities across trending and ranging markets.
Customization: Traders can adjust risk by modifying input parameters (e.g., RSI overbought/oversold levels or lookback periods) to align with their risk tolerance. For example, tightening RSI thresholds may reduce signal frequency but increase precision.
User Settings and Customization
The script offers several user-configurable inputs, allowing traders to tailor its behavior:
Use Heikin Ashi Candles (Boolean, default: false): Enables/disables Heikin Ashi smoothing for all calculations, affecting trend clarity.
ADX Length (Integer, default: 14, min: 1): Sets the period for ADX calculations, influencing trend strength sensitivity.
RSI Length (Integer, default: 21, min: 1): Adjusts RSI calculation period, impacting overbought/oversold detection.
RSI Overbought Level (Integer, default: 75, min: 1): Sets the RSI overbought threshold.
RSI Oversold Level (Integer, default: 25, min: 1): Sets the RSI oversold threshold.
Volatility Length (Integer, default: 21, min: 1): Controls the ATR period for volatility (used in Choppiness).
Volume MA Length (Integer, default: 21, min: 1): Sets the SMA period for volume analysis.
Momentum Length (Integer, default: 10, min: 1): Defines the lookback for momentum calculations.
Choppiness Length (Integer, default: 14, min: 1): Sets the period for Choppiness Index calculations.
These settings allow traders to adjust the indicator’s sensitivity to market conditions. For example, shorter RSI or ADX periods increase responsiveness but may generate more noise, while longer periods smooth signals but may lag.
Visualizations and Chart Setup
The script plots a table in the top-right corner of the chart, summarizing the following:
Header: Displays “MALAMA’S DASHBOARD” in white text on a black background.
Indicator Rows: Each row corresponds to an indicator (Ichimoku, RSI, ADX, Choppiness, Volume, Momentum, Divergence, MTF MACD, MTF Volume, Composite).
Columns:
Indicator: Lists the indicator name.
Value: Shows the calculated value (e.g., RSI value, composite score) and sentiment (e.g., Bullish, Bearish, Neutral).
Color Coding: Bullish signals are green, bearish signals are red, and neutral signals are gray, all with 85% transparency for readability.
Composite Sentiment: The final row displays the composite score and sentiment, providing a quick summary of market direction.
No trend lines, signal markers, or additional overlays are plotted, ensuring the chart remains uncluttered and focused on the dashboard’s insights.
Akshay - TheOne, TheMostWanted, TheUnbeatable, TheEnd➤ All-in-One Solution (❌ No repaint):
This Technical Chart contains, MA24 Condition, Supertrend Indicator, HalfTrend Signal, Ichimoku Cloud Status, Parabolic SAR (P_SAR), First 5-Minute Candle Analysis (ORB5min), Volume-Weighted Moving Average (VWMA), Price-Volume Trend (PVT), Oscillator Composite, RSI Condition, ADX & Trend Strength.
Technicals don't lie.
🚀 Overview and Key Features
Comprehensive Multi-Indicator Approach:
The script is built to be an all-in-one technical indicator on TradingView. It integrates several well-known indicators and overlays—including Supertrend, HalfTrend, Ichimoku Cloud, various moving averages (EMA, SMA, VWMA), oscillators (Klinger, Price Oscillator, Awesome Oscillator, Chaikin Oscillator, Ultimate Oscillator, SMI Ergodic Oscillator, Chande Momentum Oscillator, Detrended Price Oscillator, Money Flow Index), ADX, and Donchian Channels—to create a composite picture of market sentiment.
Signal Generation and Alerts:
It not only calculates these indicators but also aggregates their output into “Master Candle” signals. Vertical lines are drawn on the chart with corresponding alerts to indicate potential buy or sell opportunities based on robust, combined conditions.
Visual Layering:
Through the use of colored histograms, custom candle plots, trend lines, and background color changes, the script offers a multi-layered visual representation of data, providing clarity about both short-term signals and overall market trends.
⚙️ How It Works and Functionality
MA24 Condition:
Uses the 24-period moving average as a proxy; if the price is above it, the bar is colored green, and red if below, with neutrality when conditions aren’t met.
Supertrend Indicator:
Evaluates price relative to the Supertrend level (calculated via ATR), coloring green when price is above it and red when below.
HalfTrend Signal:
Determines trend shifts by comparing the current close to a calculated trend level; green indicates an upward trend, while red suggests a downtrend.
Ichimoku Cloud Status:
Analyzes the relationship between the Conversion and Base lines; a bullish (green) signal is given when price is above both or the Conversion line is higher than the Base line.
Parabolic SAR (P_SAR):
Colors the signal based on whether the current price is above (green) or below (red) the Parabolic SAR marker, indicating stop and reverse conditions.
First 5-Minute Candle Analysis (ORB5min):
Uses key levels from the first 5-minute candle; if price exceeds the candle’s low, VWAP, and MA, it’s bullish (green), otherwise bearish (red).
Volume-Weighted Moving Average (VWMA):
Compares the current price to volume-weighted averages; a price above these levels is shown in green, below in red.
Price-Volume Trend (PVT):
Determines bullish or bearish momentum by comparing PVT to its VWAP—green when above and red when below.
Oscillator Composite:
Aggregates signals from multiple oscillators; a majority of positive results turn it green, while negative dominance results in red.
RSI Condition:
Uses a simple RSI threshold of 50, with values above signifying bullish (green) momentum and below marking bearish (red) conditions.
ADX & Trend Strength:
Reflects overall trend strength through ADX and directional movements; a combination favoring bullish conditions colors it green, with red signaling bearish pressure.
Master Candle Overall Signal:
Combines multiple indicator outputs into one “Master” signal—green for a consensus bullish trend and red for a bearish outlook.
Scalp Signal Variation:
Focused on short-term price changes, this signal adjusts quickly; green indicates improving short-term conditions, while red signals a downturn.
📊 Visualizations and 🎨 User Experience (❌ no repaint)
Dynamic Histograms & Bar Plots:
Each indicator is represented as a colored bar (with added vertical offsets) to facilitate easy comparison of their respective bullish or bearish contributions.
Clear Color-Coding & Labels:
Green (e.g., GreenFluorescent) indicates bullish sentiment.
Red (e.g., RedFluorescent) indicates bearish sentiment.
Custom labels and descriptive text accompany each bar for clarity.
Interactive Charting:
The overall background color adapts based on the “Master Candle” condition, offering an instant read on market sentiment.
The current candlestick is overlaid with color cues to reinforce the indicator’s signal, enhancing the trading experience.
Real-Time Alerts:
Vertical lines appear on signal events (buy/sell triggers), complemented by alerts that help traders stay on top of actionable market moves.
Sharp lines:
The Sharp lines are plotted based upon the EMA5 cross over with the same market trend, marks this as good time to reentry.
🔧 Settings and Customization
Flexible Timeframe Input:
Users can select their preferred timeframe for analysis, making the indicator adaptable to intraday or longer-term trading styles.
Customizable Indicator Parameters:
➤ Supertrend: Adjust ATR length and multiplier factors.
➤ HalfTrend: Tweak amplitude and channel deviation settings.
➤ Ichimoku Cloud & Oscillators: Fine-tune the conversion/base lines and oscillator lengths to match individual trading strategies.
Visual Customization:
The script’s color schemes and plotting styles can be altered as needed, giving users the freedom to tailor the interface to their taste or existing chart setups.
🌟 Uniqueness of the Concept
Integrated Multi-Indicator Synergy:
Combines a diverse range of trend, momentum, and volume-based indicators into a single cohesive system for a holistic market view.
Master Candle Aggregation:
Consolidates numerous individual signals into a "Master Candle" that filters out noise and provides a clear, consensus-based trading signal.
Layered Visual Feedback:
Uses color-coded histograms, adaptive background cues, and dynamic overlays to deliver a visually intuitive guide to market sentiment at a glance.
Customization and Flexibility:
Offers adjustable parameters for each indicator, allowing users to tailor the system to fit diverse trading styles and market conditions.
✅ Conclusion:
Robust Trading Tool & Non-Repainting Reliability:
This versatile technical analysis tool computes an extensive range of indicators, aggregates them into a stable, non-repainting “Master Candle” signal, and maintains consistent, verifiable outputs on historical data.
Holistic Market Insight & Consistent Signal Generation:
By combining trend detection, momentum oscillators, and volume analysis, the indicator delivers a comprehensive snapshot of market conditions and generates dependable signals across varying timeframes.
User-Centric Design with Rich Visual Feedback:
Customizable settings, clear color-coded outputs, adaptive backgrounds, and real-time alerts work together to provide actionable, transparent feedback—enhancing the overall trading experience.
A Unique All-in-One Solution:
The integrated approach not only simplifies complex market dynamics into an easy-to-read visual guide but also empowers systematic traders with a powerful, adaptable asset for accurate decision-making.
❤️ Credits:
Pine Script™ User Manual
Supertrend
Ichimoku Cloud
Parabolic SAR
Price Volume Trend (PVT)
Average Directional Index (ADX)
Volume Oscillator
HalfTrend
Donchian Trend
Crystal Cloud EMA# Crystal Cloud EMA Indicator 🚀
The **Crystal Cloud EMA Indicator** is a hybrid technical analysis tool that uniquely merges the multi-dimensional perspective of the Ichimoku Cloud with the precision of EMA crossovers (EMA 50 & EMA 200). This integration is designed to help traders identify key market trends, dynamic support and resistance zones, and potential momentum shifts with enhanced clarity and reliability.
---
## Key Components & Originality
### Ichimoku Cloud
- **Dynamic Support & Resistance:**
Utilizes standard Ichimoku calculations to form a cloud (Kumo) that highlights areas where price may find support or resistance.
- **Visual Clarity:**
The cloud’s upper and lower boundaries provide clear visual cues of market sentiment, helping to identify potential reversal or consolidation zones.
### EMA 50 & EMA 200
- **Trend Confirmation:**
These exponential moving averages smooth price data to reveal underlying trends.
- **Crossover Signals:**
A crossover of EMA 50 and EMA 200 is used as a signal confirmation—when EMA 50 crosses above EMA 200, it suggests a bullish trend; when it crosses below, it indicates a bearish trend.
### Unique Integration
- **Combined Analysis for Enhanced Accuracy:**
By fusing the Ichimoku Cloud’s dynamic support/resistance zones with the precise timing of EMA crossovers, the indicator minimizes false signals.
- **Confluence of Methods:**
Only when both the cloud position and EMA crossover align does the indicator generate a trading signal, offering a more robust framework than using either method in isolation.
---
## How It Works
1. **Cloud Evaluation:**
- The indicator calculates the Ichimoku Cloud using traditional parameters, establishing dynamic zones where price reactions are likely.
- It monitors how price interacts with these zones, signaling potential momentum shifts when the price moves in or out of the cloud.
2. **EMA Crossover Analysis:**
- Simultaneously, it computes EMA 50 and EMA 200.
- **Bullish Condition:** When price is above the cloud and EMA 50 crosses above EMA 200.
- **Bearish Condition:** When price is below the cloud and EMA 50 crosses below EMA 200.
3. **Signal Confirmation:**
- A breakout from the cloud, in conjunction with a crossover, further validates the strength of the trend.
- This dual confirmation approach filters out market noise and increases the reliability of the signals.
---
## Trading Strategy & Usage
### Buy Signal
- **Conditions:**
- Price is trading above the Ichimoku Cloud.
- EMA 50 crosses above EMA 200.
- A confirmed breakout above the cloud supports the bullish trend.
- **Application:**
- Enter long positions when these conditions align.
- Use the cloud’s lower boundary for potential stop-loss placement and set profit targets based on key resistance levels identified by the cloud.
### Sell Signal
- **Conditions:**
- Price is trading below the Ichimoku Cloud.
- EMA 50 crosses below EMA 200.
- A breakdown below the cloud reinforces the bearish trend.
- **Application:**
- Enter short positions under these conditions.
- Use the cloud’s upper boundary as a reference for setting stop-loss orders and profit targets.
### Best Timeframes & Trading Styles
- **Timeframes:**
Optimally used on M30 and higher timeframes to ensure trend reliability and reduce market noise.
- **Trading Styles:**
Suitable for swing trading, intraday trading, and momentum-based strategies.
- **Risk Management:**
Always complement indicator signals with additional analysis (like volume or price action) and apply proper risk management techniques.
---
## Important Note
This indicator is a **technical analysis tool** designed to assist traders in identifying market trends and potential reversal points. It should be used in conjunction with comprehensive market analysis and proper risk management. Trading decisions should not rely solely on this indicator.
Volume and Price, EMA Hierarchy Scoring Relations V 1.1Understanding the Volume and Price, EMA Hierarchy Scoring Indicator
Financial markets are often analyzed through a series of technical indicators, each providing valuable but isolated insights into price movements, volume dynamics, and trends. While these tools are widely used, they often lack context when applied individually. The Volume and Price, EMA Hierarchy Scoring Indicator was developed to bridge this gap by introducing structure, context, and relationships between these known indicators.
By utilizing Exponential Moving Averages (EMAs) and assigning periods derived from prime numbers, this indicator creates a scoring system that evaluates the relative positioning and interaction of 13 widely used technical tools. This approach adds meaning to individual indicator outputs by:
Revealing how their results align, diverge, or complement each other.
Quantifying their collective behavior through a hierarchy scoring system.
Enabling traders to not only analyze indicators individually but also combine them to uncover how they influence and interact with each other.
The result is a tool that provides clarity and insight into market behavior, enabling traders to move beyond surface-level analysis and uncover deeper patterns and relationships within the data.
Key Features and Methodology
The Volume and Price, EMA Hierarchy Scoring Indicator is built on a robust mathematical framework that evaluates and visualizes the relationships between 13 widely used technical indicators. By leveraging Exponential Moving Averages (EMAs) and prime numbers, the indicator provides meaningful insights into individual indicator performance as well as their combined behavior.
1. EMA Hierarchy Scoring
At the core of the indicator is its ability to assess the hierarchy of EMAs for each tool. This hierarchy scoring evaluates how the EMAs are aligned relative to one another, providing traders with a quantifiable measure of the indicator's internal consistency and its alignment with trends.
How It Works:
Each EMA is assigned a period derived from a unique prime number. This ensures that no two EMAs overlap, preserving their individuality.
The scoring system measures the gaps between these EMAs, assigning weighted values to these relationships based on their position in the hierarchy.
Why Prime Numbers?
Prime numbers ensure that the EMA periods are distinct and mathematically unrelated, creating a structured yet diverse dataset for analysis.
This approach allows the scoring system to capture both short-term and long-term trends, while avoiding redundancy.
2. Independent Indicator Evaluation
One of the key features of this indicator is the ability to analyze any of the 13 tools individually. Each indicator has its own module, complete with adjustable parameters and dedicated visualizations:
Histograms: Represent the raw EMA hierarchy score. Positive bars indicate alignment with upward trends, while negative bars highlight potential reversals or misalignments.
Smoothed Line: Averages the histogram values, reducing short-term noise and emphasizing longer-term trends.
Signal Line: Highlights trend shifts by smoothing the smoothed line further. Crossovers between the smoothed line and the signal line act as actionable signals for traders.
3. Combining Indicators for Context
Beyond individual analysis, the indicator allows users to combine multiple indicators to evaluate their interactions. For example:
Pairing ALMA (price smoothing) with Volume enables traders to see how price trends are supported or contradicted by market activity.
Combining Delta Volume and CMF (Chaikin Money Flow) reveals nuanced dynamics of buying and selling pressure.
Number of Combinations
With 13 tools available, the indicator supports "two to the power of thirteen minus one," which equals 8,191possible combinations. This flexibility empowers traders to experiment with various subsets of indicators, tailoring their analysis to specific market conditions or strategies.
Detailed Breakdown of Indicators
The Volume and Price, EMA Hierarchy Scoring Indicator integrates 13 widely used technical indicators, each bringing a unique perspective to market analysis. These indicators are scored individually using the EMA hierarchy system and can also be combined for more comprehensive insights.
Here’s a detailed look at what each indicator contributes:
Price Analysis
Arnaud Legoux Moving Average (ALMA):
Purpose:
ALMA smooths price data, reducing noise while maintaining responsiveness to trends.
Unique Features:
The EMA hierarchy scoring highlights how well ALMA’s EMAs align, revealing the strength of price trends.
Visualization includes a histogram of ALMA scores, a smoothed line, and a signal line.
Settings:
Adjustable parameters for the window size, offset, and sigma.
Tooltips guide users on how each setting affects the calculation.
Application:
Evaluate price momentum or combine with volume-based indicators to validate trends.
2. Price Hierarchy Score (PRC):
Purpose:
Focuses solely on price behavior to identify consistency and strength.
Visualization:
Includes a histogram representing raw scores and smoothed and signal lines for trend detection.
Settings:
Adjustable EMA periods derived from prime numbers.
Customizable smoothing and signal periods.
Volume Insights
3. Chaikin Money Flow (CMF):
Purpose:
Integrates price and volume data to measure capital flow direction and strength.
Visualization:
Raw CMF hierarchy scores are plotted, alongside smoothed and signal lines for easier trend identification.
Settings:
Lookback period adjustment for CMF calculation.
Toggle for enabling/disabling the module.
Application:
Use alongside Delta Volume to assess buying and selling pressure.
Above chart snapshot, in addition to the well-known CMF indicator, the Volume and Price indicator and the EMA Hierarchy Scoring can also be seen in the chart. By enabling the CMF evaluation, you can observe both how the CMF is analyzed and how it aligns with the price chart.
4. Delta Volume:
Purpose:
Captures the balance between buying and selling activity in the market.
Visualization:
A histogram represents the raw divergence in buying and selling strength.
Signal lines help identify momentum shifts.
Settings:
Options to set lower timeframes for more granular analysis.
Adjustable smoothing and signal periods.
Application:
Combine with CMF for a deeper understanding of capital flow dynamics.
In the above chart, alongside the Volume Delta indicator, you can observe our evaluation of this indicator's performance.
In the above chart, as explained, you can observe the impact of our evaluation metrics both individually and in combination with other indicators. This chart featuring VPR (Volume and Price Indicator along with EMA Hierarchy Scoring) illustrates the interplay between CMF and Volume Delta.
5. Volume Hierarchy Score (VOL):
Purpose:
Tracks raw volume data to identify areas of heightened market activity.
Visualization:
Histogram and smoothed lines highlight volume trends.
Settings:
Prime-numbered EMA periods to analyze volume hierarchy.
Adjustable smoothing and signal line parameters.
In the above chart, as previously explained, by analyzing the EMA of volume data over 25 iterations within specified periods (based on the first 25 prime numbers), you can observe the relationship between volume and price. We are witnessing a price increase, while the current volume position shows significant deviation and instability relative to the EMAs calculated over 25 different time periods.
In the above chart, by simultaneously enabling the evaluation of both volume and price, you can clearly observe the interplay and impact of volume and price in relation to each other.
Momentum and Trend Strength
6. Aroon Up:
Purpose:
Evaluates the strength of trends by measuring time since price highs.
Visualization :
Hierarchy scores plotted as histograms with trend-tracking smoothed and signal lines.
Settings:
Lookback period adjustments.
Module toggle for focus on Aroon trends.
If the analysis and interpretation of Aroon lines seem somewhat complex, the Volume and Price Indicator along with EMA Hierarchy Scoring provides a clear and intuitive representation of the Aroon indicator in relation to the price chart, as you can see in the current chart.
7. Average Directional Index (ADX):
Purpose:
Quantifies the strength of trends, regardless of direction.
Visualization:
ADX scores and smoothed lines for trend confirmation.
Settings:
Adjustable directional indicator (DI) and ADX smoothing periods.
Tooltip guidance for parameter optimization.
The simultaneous chart of the well-known ADX indicator alongside the evaluation system of the Volume and Price Indicator with EMA Hierarchy Scoring provides an integrated perspective on the ADX indicator.
8. Elder Force Index (EFI):
Purpose:
Combines price and volume to measure the strength of price movements.
Visualization:
EFI hierarchy scores with clear trend representation through signal and smoothed lines.
Settings:
Length adjustments for sensitivity control.
Smoothing and signal line customization.
In the above chart, we simultaneously have the well-known EFI indicator and the Volume and Price Indicator along with EMA Hierarchy Scoring. As we progress further, you will become increasingly familiar with the functionality and precision of the Volume and Price Indicator along with EMA Hierarchy Scoring.
Volatility and Oscillators
9. Ehler Fisher Transform:
Purpose:
Highlights extreme price movements by transforming price data into a Gaussian distribution.
Visualization:
Fisher Transform scores with smoothed trend indicators.
Settings:
Fisher length adjustment.
Module toggle and smoothing controls.
10. McGinley Dynamic (MGD):
Purpose:
Tracks price trends while adjusting for volatility, providing a smoother signal.
Visualization:
Raw MGD hierarchy scores with smoothed and signal lines.
Settings:
Lookback period customization.
Adjustable smoothing and signal periods
.
Ichimoku Components
11. Conversion Line (ICMC):
Purpose:
Captures short-term price equilibrium levels within the Ichimoku framework.
Visualization:
Short-term hierarchy scores visualized with smoothed lines.
Settings:
Adjustable conversion line length.
Tooltips explaining Ichimoku-related insights.
12. Base Line (ICMB):
Purpose:
Identifies medium-term equilibrium levels in the Ichimoku system.
Visualization:
Scores and smoothed trend lines for medium-term trends.
Settings:
Base line period adjustments.
Tooltip guidance for Ichimoku analysis.
In the chart below, to better illustrate the capabilities of the Volume and Price, EMA Hierarchy Scoring relation, we present a chart that evaluates the simultaneous interaction of Ichimoku Base and Conversion lines, Price, Volume, and Delta Volume.
Market Health
13. Money Flow Index (MFI):
Purpose:
Detects overbought or oversold conditions using price and volume data.
Visualization:
MFI hierarchy scores with trend tracking through smoothed and signal lines.
Settings:
Lookback period customization for sensitivity adjustment.
Module toggle and visualization controls.
EMA of Indicators: A Unified Scoring Metric
The EMA of Indicators module introduces a unique way to aggregate and analyze the individual scores of all 13 indicators. By applying a unified EMA calculation to their hierarchy scores, this module provides a single, combined metric that reflects the overall market sentiment based on the collective behavior of all indicators.
How It Works
1. Indicator-Specific EMAs:
An EMA is calculated for each of the 13 indicator hierarchy scores. The EMA period is adjustable in the settings menu, allowing traders to control how responsive the metric is to recent changes.
2. Combined EMA Calculation:
The individual EMAs are summed and averaged to generate a single Combined EMA Value. This value represents the average performance and alignment of all the indicators.
3. Smoothed and Signal Lines:
To enhance the interpretability of the Combined EMA Value:
- A Smoothed EMA is calculated using an additional EMA to filter out short-term fluctuations.
- A Signal Line is applied to the Smoothed EMA, providing actionable signals when crossovers occur.
Visualization
The Combined EMA Value is visualized as:
Histogram Bars: Represent the raw Combined EMA Value, highlighting positive or negative market alignment.
Smoothed Line: Tracks longer-term trends by smoothing the combined value.
Signal Line: Marks potential shifts in market sentiment when it crosses the Smoothed Line.
Customization and Settings
The settings menu allows full control over the EMA calculation:
Enable/Disable Module: Toggle the entire EMA of Indicators functionality.
Adjust EMA Period: Define the responsiveness of the individual indicator EMAs.
Set Smoothing Period: Control the degree of smoothing applied to the combined score.
Signal Line Period: Fine-tune the signal line's sensitivity for detecting trend shifts.
Tooltips accompany each parameter, ensuring that users understand their impact on the final visualization.
Applications in Market Analysis
1. Market Health Overview:
Use the Combined EMA Value as a quick snapshot of overall market sentiment based on all 13 indicators.
2. Trend Confirmation:
Analyze crossovers between the Smoothed EMA and Signal Line to confirm market trends or reversals.
3. Flexible Strategy Development:
Adjust EMA and smoothing periods to align the module with short-term or long-term trading strategies.
From EMA Scoring to Divergence-Weighted Insights
While the EMA scoring system provides insights into individual indicators and their trends, the Divergence-Weighted Volatility Adjusted Score takes this analysis further by combining and comparing all 13 indicators into a unified metric.
The Divergence-Weighted Volatility Adjusted Score
This score evaluates how the EMA scores of the 13 indicators interact and diverge, adding a layer of context and collective behavior analysis to the raw hierarchy scores.
1. Normalization:
All EMA scores are scaled to a common range, ensuring comparability regardless of the magnitude of individual indicators.
2. Divergence Analysis:
The system calculates the average score of the 13 indicators and evaluates the deviation (or divergence) of each individual score from this average.
Indicators with significant divergence are highlighted, as they often signal critical market dynamics.
3. Dynamic Weighting:
Indicators with greater divergence are assigned higher weights in the combined score. This ensures that outliers with meaningful signals are emphasized.
4. Volatility Adjustment:
The combined score is adjusted based on market volatility (calculated as the standard deviation of the score over a defined lookback period). This stabilizes the output, making it reliable even during turbulent market conditions.
Visualization and Customization
The Divergence-Weighted Volatility Adjusted Score is plotted as a dynamic line chart, offering a clear visual summary of the collective behavior of all indicators. The chart includes:
Smoothed Score Line: Filters out noise and emphasizes longer-term trends.
Signal Line: Helps identify potential trend shifts by tracking smoothed score crossovers.
Settings:
Lookback Period: Defines the time frame for volatility calculation.
Smoothing Period: Controls the degree of noise reduction in the smoothed score line.
Signal Line Period: Adjusts the responsiveness of the signal line.
These settings are fully adjustable, with tooltips guiding users to understand their impact.
Applications
The Divergence-Weighted Volatility Adjusted Score has several practical applications:
1. Cross-Indicator Alignment:
Detect when multiple indicators align or diverge, signaling potential opportunities or risks.
2. Dynamic Market Insights:
Adapt to changing conditions with the volatility-adjusted scoring.
3. Trend Confirmation:
Use smoothed and signal lines to validate trends identified by individual indicators.
Conclusion
The Volume and Price, EMA Hierarchy Scoring Indicator redefines how traders analyze financial markets. By combining 13 widely used technical tools with a structured scoring system based on Exponential Moving Averages (EMAs) and prime-numbered periods, this indicator brings depth and context to market analysis.
Key features include:
Independent Analysis: Evaluate individual indicators with precise EMA hierarchy scoring to assess their alignment with market trends.
Dynamic Combinations: Explore the relationships between indicators through over 8,000 combinations to uncover nuanced interactions and patterns.
Divergence-Weighted Scoring: Compare the collective behavior of indicators using a divergence-weighted system, providing a holistic market perspective adjusted for volatility.
Customization: Enable or disable modules, adjust smoothing and signal periods, and fine-tune settings to align the indicator with specific trading strategies.
User-Friendly Visualizations: Intuitive histograms, smoothed lines, and signal lines help traders identify trends, reversals, and market alignment at a glance.
This indicator empowers traders to move beyond isolated analysis by creating meaning and context between known tools. Whether you’re a scalper seeking short-term trends or a swing trader analyzing broader market movements, the Volume and Price, EMA Hierarchy Scoring Indicator offers insights tailored to your strategy.
Disclaimer
The Volume and Price, EMA Hierarchy Scoring Indicator is a tool for technical analysis and market evaluation. While it provides structured insights into market behavior, no indicator can guarantee success or eliminate the inherent risks of trading. Market conditions are complex, and multiple factors influence price movements.
Users are advised to:
Combine this indicator with other analysis methods, such as fundamental analysis or risk management strategies.
Make informed decisions based on their own analysis, trading goals, and risk tolerance.
Trading involves significant risk, and past performance does not guarantee future results. Always consult with a financial advisor or professional before making trading decisions.
Ultimate Multi Indicator - by SachaThe Ultimate Multi Indicator: The Ultimate Guide To Profit
This custom indicator, the Ultimate Multi Indicator , integrates multiple trading indicators to have powerful buy and sell signals. I combined MACD, EMA, RSI, Bollinger Bands, Volume Profile, and Ichimoku Cloud indicators to help traders analyze both short-term and long-term price movements.
Key Components and How to Use Them
- MACD (Moving Average Convergence Divergence):
- Use for trend direction and potentiality of reversals.
- The blue line (MACD Line) crossing above the orange line (Signal Line) indicates a bullish reversal; the opposite signals a bearish reversal.
- Watch for crossovers to confirm the direction of smaller price movements.
- 200 EMA (Long) (Exponential Moving Average):
- Use to indicate a long-term trend direction.
- If the price is above the 200 EMA, the market is in an uptrend; below it suggests a downtrend.
- The chart’s background color shifts subtly green (uptrend) or red (downtrend) depending on the EMA's relative position.
- RSI (Relative Strength Index):
- Tracks momentum and overbought/oversold levels.
- RSI over 70 signifies overbought conditions; under 30 indicates oversold.
- Look for RSI turning points around these levels to identify potential reversals.
- Bollinger Bands :
- The price touching or crossing the upper Bollinger Band may mean overbought conditions are filled, while a touch at the lower band indicates oversold.
- Bollinger Band interactions often align with key reversal points, especially when combined with other signals.
- Volume Profile :
- A yellow VP line on the chart represents significant trading volume occurred.
- This line can be used as both a support and resistance level, and especially during consolidations or trend changes.
- Ichimoku Cloud :
- Identifies support/resistance levels and trend direction.
- Green and red cloud regions visually show if the price is above (bullish) or below (bearish) key levels.
- Price above the cloud (green) confirms a bullish market, while below (red) signals bearish.
Signal Conditions and Visualization
- Buy Signals :
- This is triggered right away when MACD crosses up, RSI is oversold, or price touches the lower Bollinger Band, provided price is above both the Ichimoku Cloud and the 200 EMA.
- A green “BUY” label appears below the bar, suggesting a potential entry.
- Sell Signals :
- This signal is generated when MACD crosses down, RSI is overbought, or price touches the upper Bollinger Band, and price is below the Ichimoku Cloud and the 200 EMA.
- A red “SELL” label is shown above the bar, indicating a potential exit.
Tips & Tricks
- Confirm Signals : Use multiple signals to confirm entries and exits. For example, if both the MACD and RSI align with the Ichimoku Cloud direction, the trade setup is stronger.
- Trend Directions : Only take buy signals if the price is above the 200 EMA, and sell signals if it is below, aligning trades with the overall trend.
- Adjust for Volatility : In high-volatility markets, especially in the crypto markets, pay close attention to the Bollinger Bands for breakout potential.
- Ichimoku as a Trend Guide : Use the Ichimoku Cloud as a guide for long-term support and resistance levels, especially for swing trades.
This multi-layered indicator gives a balanced blend of short-term signals and long-term trend insights, making it a versatile tool for day trading, swing trading, or even longer-term analysis.
Remember that indicators that will make you rich instantly don't exist. To expect minimum profit from them, you shouldn't trade all you have at the same time but only trade with the money you can afford to lose.
After that being said, I wish you traders luck with the Ultimate Multi Indicator!
Nightrangers IndicatorDescription
This indicator combines three EMA's, Ichimoku Cloud, RSI and MACD. By combining and modifying their use case this turns into an extremely powerful and accessible indicator for finding long and short position entries, below is a description of how to use this indicator, and what makes it different.
Primary Use case
The three EMA's would be the initial indicators you would be looking at, they are based on the 7d, 25d and 200d MA - Used on their own, they would be worthless, and this is where the Ichimoku Cloud comes into it, I have removed all other aspects of the Ichimoku Cloud and only kept the baseline, combine this with the three MA's and we have a very powerful indicator for finding Long entries, that is used uniquely in a way to which the Ichimoku Cloud is not originally meant to be used for.
An early indication of a LONG entry would be when the 7d MA crosses above the Ichimoku Baseline, through this early indicator, you are able to watch and monitor the chart, you would be waiting to see if the 25d MA then also crosses above the Ichimoku Baseline, This would be the second important indication of a long entry. The 200d MA helps here when making decisions on where to set your own personal take profits - If the Ichimoku baseline, and the MA's are below the 200d MA, you would be expecting a bounce point here, or heavy resistance so the long entry could be over a shorter period, than that if it was above the 200d MA, which is why it is included here, to help make a better informed choice.
The latter is reversed for finding short positions, and entries. This indicator is completely reliant on each other to find the best possible entry/exit by complementing each other, and by using the Ichimoku Baseline on it's own, and not as the Ichimoku Cloud is intended.
Just using these though, is not enough, which is why the RSI and MACD are also combined, once the conditions are met above, You may find that there can be false positives for entries, and this is where the RSI has multiple use cases within this script.
Firstly the backdrop colour will change based on whether the chart is in an uptrend or downtrend, This is a visual indicator provided to work simultaneaously on the chart itself to help identification of entries/exits easier to identify in conjunction with the above.
Secondly, It is used to display in the top right, The current Trend in a text format, as well as if the current chart is in one of three phases, these are Overbrought, Oversold and accumulation.
And finally it will display the current RSI Value on the last candle in a clear to see blue Label, This helps with the visual accessible side, to help you make a more informed choice depending on your own personal tolerance.
This ties into the above Indicators, by combining the information, you would not be looking to take a long, if for example, the RSI showed it was over-brought, and in a downtrend, even if the MA's had crossed above the Baseline, as this would most likely be a fakeout.
However if the Indicators above, showed a potential long, and the backdrop had flipped green, indicating an uptrend, and it was in an accumulation phase, you would consider this position. and this is where the MACD comes into play.
You would use the MACD to see whether or not the Signal line has crossed over the MACD line, and vice versa - However this script uses it to simplify and portray current market sentiment, and visually display by reducing clutter on screen, and making it more accessible.
It is designed to portray an easy to read and understand visual indicator by displaying in the top right simply as Bullish or Bearish, with markers above the candles ( "M" and "MX" ).
The M indicator is to show where the MACD Crosses above the Signal, and if aligned with all the other indicators within the script, shows a very strong confirmation for a buying opportunity, and vice versa for the "MX" indicator if aligned with the other indicators in reverse, provides a very strong confirmation for opening a short position or for selling.
Secondary Use case
By combining the indicators above, the secondary conditions you would be looking for, If you opened a LONG position, would be knowing when to sell, On top of what has been described above already regarding this, you would be looking to start taking profits, when the 7d MA crosses above or across the candles, and looking to close the position, when the 25d MA also crosses above the candles, and respectively, in reverse for closing short positions. This is shown across the charts to be extremely useful, however, combine this with the other indicators, portrayed in an easy to use and understand visual representation, you are now able to make more informed decisions, on whether to close a position or not.
How is it different and not just a mash up
I have combined these indicators to make the world of trading more accessible for everyone regardless of circumstances, by creating an easy to understand visual representation, keeping colours vibrant and easy to stand out, with clear and simple to read text indications. So whether you are a seasoned trader, or just starting out, you can make more informed choices, without the need of learning how to use multiple different indicators, and learning how to combine them all, or if you have difficulties learning, this indicator also simplifies a lot of the more technical intricacies, by still allowing you to make a more informed choice.
Magical SMAThis script is an intuitive trading alert system designed to identify potential entry points for both long and short positions. By utilizing a combination of Simple Moving Averages (SMA) and Ichimoku Cloud components, this script provides a robust framework for trend-following strategies.
Key Features:
SMA Crossover Detection: Monitors crossovers and crossunders between a 25-period and a 50-period SMA to signify potential bullish or bearish momentum.
Ichimoku Cloud Confirmation: Enhances the accuracy of entry signals by considering the position of the closing price relative to the Ichimoku Cloud's Lead Lines (A and B).
Long & Short Alert Conditions: Generates alert notifications for potential long and short entry signals based on the defined conditions.
Visualization: Plots the SMAs and Ichimoku Cloud components on the chart for better analysis and understanding of the prevailing market conditions.
Usage:
Long Entry Alert: Triggered when there's a crossover of the 25-period SMA above the 50-period SMA, and the closing price is above either of the Ichimoku Cloud's Lead Lines.
Short Entry Alert: Triggered when there's a crossunder of the 25-period SMA below the 50-period SMA, and the closing price is below either of the Ichimoku Cloud's Lead Lines.
This script is ideal for traders looking to capitalize on trend-following strategies with an additional layer of confirmation from the Ichimoku Cloud components. Whether you are trading equities, forex, or commodities, the "Chakibz" script is a valuable tool for identifying potential entry points and managing your trades.
iChi Masters Regular GoldSignalThis indicator is based on the Ichimoku code, and by combining the Ichimoku code with special source codes and improving the colors and signals that you can see on chart with information such as stop,target and leverage for your trades, we made the IMR indicator so that it is easier for traders to understand the Ichimoku strategy, I hope you enjoy it :)
The Buy and Sell labels on chart is based on ichimoku lines:
when the conversion and base line cross up each other and in distance of 9 candle the ichimoku cloud has green switch too,then we have a Buy label on chart and the opposite is for the Sell labels
This indicator has no backtest and you can only see the signals and the information of that
- The Risk% is the percentage of your risk on your balance so indicator gives you the proper leverage
- In Box Mode you can specify where your box should be drawn :
1 : Cr sets the box on conversion and base cross
2 : Perfect Cross sets the box on a cross which has no cross before until 26 candles
3 : Buy_Sell sets the box on Buy or Sell labels on chart
4 : Divergence Box sets the box on Divergence triangles on chart
-The C/S Distance is the distance between cross and switch for Buy and Sell labels
-The Long and Short check boxes is for showing you the information of Buy or Sell position such as stop,target and leverage.
-The Divergence section is based on ichimoku too:
In Lead divergence, we calculate the difference between lead 1 and lead 2, and a graph is formed from their difference, by comparing the obtained graph and the candles, we find the divergence between them, and they are displayed as green arrows on the chart,And in total, three types of divergence can be seen in the chart, R1, R2 and HD
In Base divergence, we calculate the difference between Conversion and Base, and a graph is formed from their difference, by comparing the obtained graph and the candles, we find the divergence between them, and they are displayed as white arrows on the chart,And in total, three types of divergence can be seen in the chart, R1, R2 and HD
-The Switch Filter means that our Lead Divergence and Base Divergence should be close to ichimoku cloud switch
-The All High means that for long arrow of Divergences The lowest price of the previous 26 candles should be equal to the lowest price of the previous 52 candles and the opposite for sell arrow of Divergence
-In the Ichi Elements section, you can choose the visible sections on the chart:
The Cloud tick is on the chart to see the Ichi Moko cloud
The Offset tick is to move the cloud to 26 candles ahead
The Conv tick is to see the Conversion line
The Base tick is on the indicator to see the Base line
The Chiko tick is there to see the Chiko Span line on the chart
Qline tick to see the Base line which has advanced 26 candles
Buy_Sell tick to see buy and sell labels
The Ready tick is used to see the label ready for buying and selling on the chart
The Cross tick is to see the moment of the cross between the conv line and Base
The PC tick is for seeing crosses that do not have a cross until the previous 26 candles
The FakeCloud tick is used to see clouds that contain less than 26 candles
-The Super Trend Goldsignal is a combination of two atr with numbers 1.6 and 0.8
The signals that are displayed on the chart are the points where both atr signaled at the same time.
-The HigherTimeFrame tick will show you Conv, Base and Lead lines multiplied by Multiply
-The C, B, and L boxes are used to specify the numbers of Conv, Base, and Lead lines, respectively
-The Conv Box tick is for plotting the highest price in 9 candles and the lowest price in 9 candles
-The Lead2 Box ticker is for drawing the highest price in 52 candles and the lowest price in 52 candles
-The Yellow Line tick 26-52 is to indicate the places where either the highest price of 52 candles and 26 candles were equal or their lowest prices.
-Purple Line ticked 52-26 is to specify the places where the highest price of 26 and 52 and the lowest price of 26 and 52 are equal.
-The Blue Line 26-9 tick is for specifying the places where the highest price of 26 and 9 and the lowest price of 26 and 9 are equal.