Cosine Kernel Regressions [QuantraSystems]Cosine Kernel Regressions
Introduction
The Cosine Kernel Regressions indicator (CKR) uses mathematical concepts to offer a unique approach to market analysis. This indicator employs Kernel Regressions using bespoke tunable Cosine functions in order to smoothly interpret a variety of market data, providing traders with incredibly clean insights into market trends.
The CKR is particularly useful for traders looking to understand underlying trends without the 'noise' typical in raw price movements. It can serve as a standalone trend analysis tool or be combined with other indicators for more robust trading strategies.
Legend
Fast Trend Signal Line - This is the foreground oscillator, it is colored upon the earliest confirmation of a change in trend direction.
Slow Trend Signal Line - This oscillator is calculated in a similar manner. However, it utilizes a lower frequency within the cosine tuning function, allowing it to capture longer and broader trends in one signal. This allows for tactical trading; the user can trade smaller moves without losing sight of the broader trend.
Case Study
In this case study, the CKR was used alongside the Triple Confirmation Kernel Regression Oscillator (KRO)
Initially, the KRO indicated an oversold condition, which could be interpreted as a signal to enter a long position in anticipation of a price rebound. However, the CKR’s fast trend signal line had not yet confirmed a positive trend direction - suggesting that entering a trade too early and without confirmation could be a mistake.
Waiting for a confirmed positive trend from the CKR proved beneficial for this trade. A few candles after the oversold signal, the CKR's fast trend signal line shifted upwards, indicating a strong upward momentum. This was the optimal entry point suggested by the CKR, occurring after the confirmation of the trend change, which significantly reduced the likelihood of entering during a false recovery or continuation of the downtrend.
This is one of the many uses of the CKR - by timing entries using the fast signal line , traders could avoid unnecessary losses by preventing premature entries.
Methodology
The methodology behind CKR is a multi-layered approach and utilizes many ‘base’ indicators.
Relative Strength Index
Stochastic Oscillator
Bollinger Band Percent
Chande Momentum Oscillator
Commodity Channel Index
Fisher Transform
Volume Zone Oscillator
The calculated output from each indicator is standardized and scaled before being averaged. This prevents any single indicator from overpowering the resulting signal.
// ╔════════════════════════════════╗ //
// ║ Scaling/Range Adjustment ║ //
// ╚════════════════════════════════╝ //
RSI_ReScale (_res ) => ( _res - 50 ) * 2.8
STOCH_ReScale (_stoch ) => ( _stoch - 50 ) * 2
BBPCT_ReScale (_bbpct ) => ( _bbpct - 0.5 ) * 120
CMO_ReScale (_chandeMO ) => ( _chandeMO * 1.15 )
CCI_ReScale (_cci ) => ( _cci / 2 )
FISH_ReScale (_fish1 ) => ( _fish1 * 30 )
VZO_ReScale (_VP, _TV ) => (_VP / _TV) * 110
These outputs are then fed into a customized cosine kernel regression function, which smooths the data, and combines all inputs into a single coherent output.
// ╔════════════════════════════════╗ //
// ║ COSINE KERNEL REGRESSIONS ║ //
// ╚════════════════════════════════╝ //
// Define a function to compute the cosine of an input scaled by a frequency tuner
cosine(x, z) =>
// Where x = source input
// y = function output
// z = frequency tuner
var y = 0.
y := math.cos(z * x)
Y
// Define a kernel that utilizes the cosine function
kernel(x, z) =>
var y = 0.
y := cosine(x, z)
math.abs(x) <= math.pi/(2 * z) ? math.abs(y) : 0. // cos(zx) = 0
// The above restricts the wave to positive values // when x = π / 2z
The tuning of the regression is adjustable, allowing users to fine-tune the sensitivity and responsiveness of the indicator to match specific trading strategies or market conditions. This robust methodology ensures that CKR provides a reliable and adaptable tool for market analysis.
Multiindicator
Multi Timeframe Indicator Signals [pAulseperformance]█ Concept:
In this TradingView Pine Script publication, we introduce a powerful tool that offers extensive capabilities for traders and analysts. With a focus on combining multiple indicators, analyzing various timeframes, and fine-tuning your trading strategies, this tool empowers you to make informed trading decisions.
█ Key Features:
1. Combining Multiple Rules with AND / OR Operations
• Example: You can combine the Relative Strength Index (RSI) with the Moving Average Convergence Divergence (MACD) by selecting the "AND" operation. This ensures that you only get a signal when both indicators generate signals. Alternatively, you can add custom indicators and select "OR" to create more complex strategies.
2. Selecting Multiple Indicators on Different Timeframes
• Analyze the same indicator on different timeframes to get a comprehensive view of market conditions.
3. Reversing Signals
• Reverse signals generated by indicators to adapt to various market conditions and strategies.
4. Extending Signals
• Extend signals by specifying conditions such as "RSI cross AND MA cross WITHIN 2 bars."
5. Feeding Results into Backtesting Engine
• Evaluate the performance of your strategies by feeding the results into a backtesting engine.
█ Available Indicators:
External Inputs
• Combine up to 4 custom indicators to assess their effectiveness individually and in combination with other indicators.
MACD (Moving Average Convergence Divergence)
• Analyze MACD signals across multiple timeframes and customize your strategies.
• Signal Generators:
• Signal 1: 🔼 (+1) MACD ⤯ MACD Signal Line 🔽 (-1) MACD ⤰ MACD Signal Line
• Signal 2: 🔼 (+1) MACD ⤯ 0 🔽 (-1) MACD ⤰ 0
• Filter 1: 🔼 (+1) MACD > 0 🔽 (-1) MACD < 0
RSI (Relative Strength Index)
• Utilize RSI signals with flexibility across different timeframes.
• Signal Generators:
• Signal 1: 🔼 (+1) RSI ⤯ Oversold 🔽 (-1) RSI ⤰ Overbought
• Signal 2: 🔼 (+1) RSI ⤰ Oversold 🔽 (-1) RSI ⤯ Overbought
• Filter 1: 🔼 (+1) RSI <= Oversold 🔽 (-1) RSI >= Overbought
MA1 and MA2 (Moving Averages)
• Choose from various types of moving averages and analyze them across multiple timeframes.
• Signal Generators:
• Filter 1: 🔼 (+1) Source Above MA 🔽 (-1) Source Below MA
• Filter 2: 🔼 (+1) MA Rising 🔽 (-1) MA Falling
• Signal 1: 🔼 (+1) Source ⤯ MA 🔽 (-1) Source ⤰ MA
Bollinger Bands
• Multi Time Frame
• Signal Generators:
• Signal 1: 🔼 (+1) Close ⤯ BBLower 🔽 (-1) Close ⤰ BBUpper
• Signal 2: 🔼 (+1) Close ⤰ BBLower 🔽 (-1) Close ⤯ BBUpper
Stochastics
• Customize your MTF Stochastics analysis between Normal Stochastic and Stochastic RSI.
• Signal Generators:
• Filter 1: 🔼 (+1) K < OS 🔽 (-1) K > OB
• Signal 1: 🔼 (+1) K ⤯ D 🔽 (-1) K ⤰ D
• Signal 2: 🔼 (+1) K ⤯ OS 🔽 (-1) K ⤰ OB
• Signal 3: 🔼🔽 Filter 1 And Signal 1
Ichimoku Cloud
• MTF
• Signal Generators:
• Signal 1: 🔼 (+1) Close ⤯ Komu Cloud 🔽 (-1) Close ⤰ Komu Cloud
• Signal 2: 🔼 (+1) Kumo Cloud Red -> Green 🔽 (-1) Kumo Cloud Green -> Red
• Signal 3: 🔼 (+1) Close ⤯ Kijun Sen 🔽 (-1) Close ⤰ Kijun Sen
• Signal 4: 🔼 (+1) Tenkan Sen ⤯ Kijun Sen 🔽 (-1) Tenkan Sen ⤰ Kijun Sen
SuperTrend
• MTF
• Signal Generators:
• Signal 1: 🔼 (+1) Close ⤯ Supertrend 🔽 (-1) Close ⤰ Supertrend
• Filter 1: 🔼 (+1) Close > Supertrend 🔽 (-1) Close < Supertrend
Support And Resistance
• Receive signals when support/resistance levels are breached.
Price Action
• Analyze price action across various timeframes.
• Signal Generators:
• Signal 1 (Bar Up/Dn): 🔼 (+1) Close > Open 🔽 (-1) Close < Open
• Signal 2 (Consecutive Up/Dn): 🔼 (+1) Close > Previous Close # 🔽 (-1) Close < Previous Close #
• Signal 3 (Gaps): 🔼 (+1) Open > Previous High 🔽 (-1) Open < Previous Low
═════════════════════════════════════════════════════════════════════════
Unlock the full potential of these indicators and tools to enhance your trading strategies and improve your decision-making process. With over 10 indicators and more than 30 different ways to generate signals you can rapidly test combinations of popular indicators and their strategies with ease. If your interested in more indicators or I missed a strategy, leave a comment and I can add it in the next update.
Happy trading!
Buying and Selling Pressure Raw Multi (TG Fork)Visualize raw buying and selling pressure via 3 different calculation methods, all superimposed with dynamic rescaling.
Buying and selling pressure is the concept of quantifying the disproportion between buying and selling. In practice, there is no single definitive way to calculate it.
This indicator is a merge to display three different methods to calculate buying and selling pressure, with automatic visual rescaling to superimpose the three simultaneously, updated to PineScript v5, and with some additional improvements for speed and calculation precisions, and instead of the EMA, other types of moving averages can be used.
I primarily made it for my own needs, but as always, I like sharing with the community, as maybe others may find this useful too.
How to use:
* As often, the goal is to get as many of the 3 signals concur together to get a stronger aggregated signal.
* First signal: If the green bars on the histogram are bigger than the red ones, then there is more buying pressure, and vice versa.
* Second signal: If the background is green, there is more buying pressure, and vice versa if the background is orange. The yellow and green lines define the background color, but they are by default hidden for a less cluttered visual experience.
* Third signal: If the cloud is blue, there is more buying pressure, and the bigger the cloud, the more momentum there is for it to stay (and more difficult it is to reverse to selling pressure). If the cloud is red, there is more selling pressure.
If you like this indicator, please don't give me any credit, instead please show some love to the original authors (in no particular order):
ceyhun:
daytraderph (I could not find the link to the original script, the page is inaccessible?):
www.tradingview.com
fract:
Multi indicators tableThis is a comprehensive trading tool that presents an overview of the market in a tabular format. It consists of five distinct categories of trading indicators : Volatility, Trend, Momentum, Reversal, and Volume. Each category includes a series of indicators that are widely used in the trading communauty.
The Volatility category includes the Average True Range (ATR) and Bollinger Bands indicators. The Trend category comprises the Average Directional Index (ADX), four Exponential Moving Averages (EMAs), Aroon, Parabolic SAR, and the Supertrend. The Momentum category includes the Stochastic Relative Strength Index (StochRSI), Money Flow Index (MFI), Williams %R, Relative Strength Index (RSI), and Commodity Channel Index (CCI). The Reversal category includes Parabolic SAR, Moving Average Convergence Divergence (MACD), and PP Supertrend. Finally, the Volume category includes the Volume Exponential Moving Average (EMA) indicator.
The indicators states are easily readable, the indicator case is colored based on his actual state. A bullish color (green by default), a bearish color (red by default),
a very bullish color (dark green by default), a very bearish color (dark red by default) and a neutral color (gray by default) displayed when the indicator doesn't give us a clear signal. Some indicators do not have a very bullish or very bearish state. Concerning volatility indicators, the bullish color indicates high volatility, the bearish color indicates low volatility, and the neutral color indicates normal volatility.
Most of the indicators displayed in the table are customizable, and traders can choose to hide the categories they don't want to use. The Indicator provides a quick and easily readable view on the market and allows traders to reduce the number of indicators on their chart making it lighter and more readable.
The Trend Oracle - The Ultimate Position ToolThe Trend Oracle is a superadaptive multi-timeframe Indicator
Ideal timeframes are 4H, and 1D
It is based on a combination of several other indicators including:
- The Superstrength Index - An adaptive indicator using volume weighted average of the traditional RSI, MFI and OBV
- The Superfast MACD - An adaptive zero lag MACD
- ADX Trend - A tweaked version of the ADX
- Chop Zones - A combination of 2 Chop indexes to identify trending and non trending conditions.
- The Adaptive Supertrend - An adaptive version of the Supertrend, (switching multipliers based on the market trend)
- Breakout & Breakdown - An algorithm computing volume compression and expansion to indicate breakout & breakdown signals.
- [bBullish and Bearish Divergences - Confirmed Bull and Bear divs shown as green and red dots at the top and bottom of the indicator.
Areas highlighted in Aqua are bullish, red are bearish.
Use this indicator as a tool to position yourself over longer timeframes.
Enjoy!
MM :)
TradeChartist Tracker Lite™TradeChartist Tracker Lite is the lite version of ™TradeChartist Tracker and it is an essential real-time multi Indicator tracking toolkit that can be plotted as a standalone Indicator plot and/or a multi symbol tracker/screener for upto 5 different symbols . The indicators included in the tracker are Stochastic Oscillator, RSI , CCI , 10 different Moving Averages, MACD , Bollinger Bands %B, Net Volume and Heikin Ashi Trend.
===================================================================================================================
™𝗧𝗿𝗮𝗱𝗲𝗖𝗵𝗮𝗿𝘁𝗶𝘀𝘁 𝗧𝗿𝗮𝗰𝗸𝗲𝗿 𝗟𝗶𝘁𝗲 𝗨𝘀𝗲𝗿 𝗠𝗮𝗻𝘂𝗮𝗹
========================================
™TradeChartist Tracker Lite Plot Types
==================================
™TradeChartist Tracker Lite can be used to plot the following.
1. Indicator plot of Chart Symbol on its own, chosen from the 𝗜𝗻𝗱𝗶𝗰𝗮𝘁𝗼𝗿 𝗧𝘆𝗽𝗲 dropdown, enabling 𝐃𝐢𝐬𝐩𝐥𝐚𝐲 𝐈𝐧𝐝𝐢𝐜𝐚𝐭𝐨𝐫 𝐏𝐥𝐨𝐭 (𝐝𝐢𝐬𝐚𝐛𝐥𝐞𝐬 𝐓𝐫𝐚𝐜𝐤𝐞𝐫).
In this example Daily chart of XRP-USDT, 55 period Stochastic is tracked for the chart symbol XRP-USDT.
2. Indicator plot of a Symbol different from the Chart Symbol on its own, chosen from the 𝗜𝗻𝗱𝗶𝗰𝗮𝘁𝗼𝗿 𝗧𝘆𝗽𝗲 dropdown by enabling Tʀᴀᴄᴋ ᴀɴᴏᴛʜᴇʀ Sʏᴍʙᴏʟ's Iɴᴅɪᴄᴀᴛᴏʀ and entering the symbol name in the Sʏᴍʙᴏʟ ᴛᴏ Tʀᴀᴄᴋ input box, whilst keeping 𝐃𝐢𝐬𝐩𝐥𝐚𝐲 𝐈𝐧𝐝𝐢𝐜𝐚𝐭𝐨𝐫 𝐏𝐥𝐨𝐭 (𝐝𝐢𝐬𝐚𝐛𝐥𝐞𝐬 𝐓𝐫𝐚𝐜𝐤𝐞𝐫) enabled.
In this example Daily chart of XRP-USDT, 55 period Stochastic is tracked for the chart symbol BTC-USD.
3. Upto 5 Multiple Symbol Trackers for the Indicator chosen from the 𝗜𝗻𝗱𝗶𝗰𝗮𝘁𝗼𝗿 𝗧𝘆𝗽𝗲 dropdown, by disabling 𝐃𝐢𝐬𝐩𝐥𝐚𝐲 𝐈𝐧𝐝𝐢𝐜𝐚𝐭𝐨𝐫 𝐏𝐥𝐨𝐭 (𝐝𝐢𝐬𝐚𝐛𝐥𝐞𝐬 𝐓𝐫𝐚𝐜𝐤𝐞𝐫) and by entering the number of trackers required in the 𝐍𝐮𝐦𝐛𝐞𝐫 𝐨𝐟 𝐓𝐫𝐚𝐜𝐤𝐞𝐫𝐬 input box under 𝗧𝗿𝗮𝗰𝗸𝗲𝗿 𝗣𝗹𝗼𝘁𝘀 section. Upto 5 Symbols can be tracked and can be input by the user in the input boxes from Sʏᴍʙᴏʟ 1,...Sʏᴍʙᴏʟ 5 . 𝐃𝐢𝐬𝐩𝐥𝐚𝐲 𝐈𝐧𝐝𝐢𝐜𝐚𝐭𝐨𝐫 𝐏𝐥𝐨𝐭 (𝐝𝐢𝐬𝐚𝐛𝐥𝐞𝐬 𝐓𝐫𝐚𝐜𝐤𝐞𝐫) must be disabled for this plot type.
In this example Daily chart of Crypto Total Market Cap, Bollinger Bands %B is tracked for the chart symbol + 5 other Crypto symbols using Multi Symbol Trackers
4. Indicator Tracker labels can be plotted on Price chart by overlaying the Tracker on main chart and by switching from Separate Tracker Pane - Default to Tracker Labels only on Price Scale in the Lᴀʙᴇʟs Dɪsᴘʟᴀʏ Tʏᴘᴇ dropdown box.
In this example chart of 1hr XLM-USDT, Tracker labels of 55 EMA are plotted for 5 different symbols along with the 55 EMA plot of XLM-USDT.
===================================================================================================================
𝗜𝗻𝗱𝗶𝗰𝗮𝘁𝗼𝗿𝘀 𝗜𝗻𝗰𝗹𝘂𝗱𝗲𝗱 𝗶𝗻 ™𝗧𝗿𝗮𝗱𝗲𝗖𝗵𝗮𝗿𝘁𝗶𝘀𝘁 𝗧𝗿𝗮𝗰𝗸𝗲𝗿 𝗟𝗶𝘁𝗲
==================================================
1. Stochastic Oscillator
2. RSI
3. CCI
4. MA - (10 types included)
5. MACD
6. Bollinger Bands %B
7. Net Volume
8. Heikin Ashi Trend
All of the above indicators can be plotted as independent plots of the Chart Symbol or of a different symbol by enabling 𝐃𝐢𝐬𝐩𝐥𝐚𝐲 𝐈𝐧𝐝𝐢𝐜𝐚𝐭𝐨𝐫 𝐏𝐥𝐨𝐭 (𝐝𝐢𝐬𝐚𝐛𝐥𝐞𝐬 𝐓𝐫𝐚𝐜𝐤𝐞𝐫). Some Oscillators have the option of Pʟᴏᴛ Sᴛʏʟᴇ under their relevant sections, and can be plotted as line, area or a histogram.
Oscillators 1-6 require source price, lookback length and smoothing (where available) for the indicator plot. The colour of the tracker blocks is based on the Upper/Lower bands (where available), specified by the user in the respective sections. For example, if the RSI indicator is chosen to be plotted with Upper band at 60 and Lower band at 40 , the tracker blocks and the Indicator plot paint the values between 40 and 60 in neutral colour which can be changed from the settings.
Multi Window US30 example chart below with various indicators from ™TradeChartist Tracker Lite.
Moving Averages (MA) and MACD
------------------------------------------------------
Tracker Lite plots and tracks one of 10 Moving Averages that can be chosen from the MA ᴛʏᴘᴇ and by specifying the MA Lᴇɴɢᴛʜ .
MACD uses EMA as default for calculating the MACD plots and Tracker data using Fᴀsᴛ Lᴇɴɢᴛʜ , Sʟᴏᴡ Lᴇɴɢᴛʜ and Sᴍᴏᴏᴛʜɪɴɢ . To experiment or use a different Moving Average to calculate MACD , disable 𝐔𝐬𝐞 𝐄𝐌𝐀 (Uɴᴄʜᴇᴄᴋ ᴛᴏ ᴜsᴇ MA ғʀᴏᴍ ᴀʙᴏᴠᴇ) and select the required Moving Average from MA ᴛʏᴘᴇ drop down of the 𝟰. 𝗠𝗼𝘃𝗶𝗻𝗴 𝗔𝘃𝗲𝗿𝗮𝗴𝗲 section.
Net Volume and Heikin Ashi Trend
-------------------------------------------------------
Net Volume and Heikin Ashi Trend can be tracked and plotted for up to 5 symbols in addition to the chart symbol, but both Net Volume and Heikin Ashi Trend. Since the colour of the Net Volume depends on candle being bullish or bearish , it can help the user visualize if the current candle close of the symbol tracked is above or below the symbols's candle open.
Note: Bar Replay doesn't update the bar by bar indicator plot for historic bars for symbols other than the chart symbol. However, the Indicator Plot is perfectly usable for the realtime bar as data updates for both the Trackers and the indicator plot in realtime.
===================================================================================================================
𝗠𝘂𝗹𝘁𝗶 𝗦𝘆𝗺𝗯𝗼𝗹 𝗧𝗿𝗮𝗰𝗸𝗲𝗿𝘀/𝗟𝗮𝗯𝗲𝗹𝘀
=============================
Multi Symbol Tracker blocks continuously track the real-time indicator data of up to 5 symbols (in addition to the chart symbol) based on the number of Symbol Trackers preferred in the 𝐍𝐮𝐦𝐛𝐞𝐫 𝐨𝐟 𝐒𝐲𝐦𝐛𝐨𝐥 𝐓𝐫𝐚𝐜𝐤𝐞𝐫𝐬 (𝟎-𝟓) input box under the 𝗧𝗿𝗮𝗰𝗸𝗲𝗿 𝗣𝗹𝗼𝘁𝘀 section, and plots Bull, Bear and Neutral colour coded blocks based on both the indicator selected and settings preferred by the user under the relevant indicator section.
Multi Symbol Tracker Labels also continuously track the real-time indicator data in addition to the last close price (if 𝐒𝐡𝐨𝐰 𝐏𝐫𝐢𝐜𝐞 is enabled under 𝗧𝗿𝗮𝗰𝗸𝗲𝗿 𝗣𝗹𝗼𝘁𝘀 section), which helps user see the real-time changes in the indicator values and price changes of the symbols tracked.
The Tracker Label colours are exactly the same as the Tracker Block colours and are filtered based on the user preferred bands on the Oscillator values. For example, if the user prefers RSI upper band of 60 and lower band of 40 , the range between the values of 40 and 60 will be colour coded in neutral colour which can be changed from the 𝗨𝘀𝗲𝗳𝘂𝗹 𝗘𝘅𝘁𝗿𝗮𝘀 section of the indicator settings.
Note 1: Default settings are based on the Oscillator mid values. Using Upper and Lower bands for oscillators help spot the oversold and overbought zones and also helps spot breakout threshold based on Indicator values specified by the user. Example chart with visual depiction below using RSI .
===================================================================================================================
Frequently Asked Questions
========================
Q: When I load the ™TradeChartist Tracker Lite, why are the values in the labels blurred sometimes?
A: This happens occasionally as shown in the chart below, when the script is loaded for the first time or when a different setting is used.
To resolve this, just hide and unhide the script using the 👁 next to the Indicator title. If it is not visible, just hover the mouse/crosshair over the Indicator Title and it will be visible.
Q: Why does the indicator plot, tracker blocks and labels of Symbols being tracked, not update when I use Bar Replay?
A: As explained in the relevant sections above, historic data for bars and indicators other than chart symbol doesn't update on bar replay. But the chart symbol data does update for every bar on bar replay. This doesn't affect the real-time values and block colours for the symbols tracked.
Q: Can I track real-time values of a currently trading symbol when I'm on a symbol chart that is inactive? For example, can I see labels with real-time BTC values on a Sunday when I'm on a SPX chart when its not in session?
A: Simple answer is no. This is because, the plots are based on bar times of the chart and the symbols are tracked based on the bar time. So if the SPX session ended on Friday, the last known value of the BTC labels will be from Friday and hence it is always recommended to track symbols from a symbol chart that is in session.
Q: Does ™TradeChartist Tracker Lite repaint?
A: This indicator doesn't repaint but it is not recommended to trade a different symbol from the chart based on the real-time data alone without checking if the current symbol chart is in session as inactive price chart will not have updated data on symbols tracked. Also, bar replay doesn't work on data pulled from external symbol data than the chart symbol, but signals confirmed at candle close and confirmed by Tracker blocks with appropriate colour code will be in agreement with the respective indicator and can be double checked for building trust and confidence on the indicator. Also, the indicator is a good companion tool to track various indicators and prices, especially of symbols other than the chart symbol, but, to trade the symbol other than the chart symbol, user must refer to the respective chart.
Q: Can ™TradeChartist Tracker Lite be connected to other indicators as external source?
A: Yes. ™TradeChartist Tracker Lite can be connected to another script and there are several use cases in doing so. A couple of examples are shown below.
1. ™TradeChartist Tracker Lite Bollinger Bands %B 𝗜𝗻𝗱𝗶𝗰𝗮𝘁𝗼𝗿 𝗣𝗹𝗼𝘁 connected to ™TradeChartist Plotter to plot Divergences on the 4hr XAU-USD main price chart.
2. ™TradeChartist Tracker Lite 55 period Stochastic 𝗜𝗻𝗱𝗶𝗰𝗮𝘁𝗼𝗿 𝗣𝗹𝗼𝘁 connected to ™TradeChartist Plug and Trade as Oscillatory Signal with 0/0 to generate trade signals with Targets and performance information on trades.
More Example Charts
==================
===================================================================================================================
Best Practice: Test with different settings first using Paper Trades before trading with real money
The indicator is a good companion tool to track various indicators and prices, especially of symbols other than the chart symbol, but, to trade the symbol other than the chart symbol, user must refer to the respective chart.
===================================================================================================================
Eclub Multi IndicatorThis multi Indicator includes:
3 Moving Averages
2 Exponential Moving Averages
Bollinger Band
Ichimoku
Parabolic SAR
You can change the colors if you want. Go to setting to enable Ichimoku or SAR or disable others.
The color tolerance is by default zero which results in a very sensitive color change. You can change it to decrease the sensitivity. The value should be the last decimal of the price or the last two decimals of price etc.
If you like this indicator donate some BTC to the following address:
BTC address:
18NSD2xdJyYWoC4CSr4xg1hMk2q5cBbr8T
MultiIndicatorThis is just a bunch of useful funtions and
a recommenation how to construct a multiindicator for the sake of economy :))