Pine Script that uses dual Donchian Channels (20-period and 34-period) and places tiny blue dots above candles when the highest price touches any upper Donchian Channel and below candles when the lowest price touches any lower Donchian Channel, without displaying the channels themselves, you can use the code.
### Explanation of the Code: 1. **Indicator Declaration**: The script is named "Dual Donchian Channels Dots Only" and overlays on the price chart. 2. **Input for Lengths**: Users can set lengths for two Donchian Channels (20 and 34 periods). 3. **Calculating Bands**: The upper and lower bands are calculated using `ta.highest` and `ta.lowest` functions over the specified periods. 4. **Touch Conditions**: - `upperTouch`: Checks if the highest price of the current candle touches either of the upper bands. - `lowerTouch`: Checks if the lowest price of the current candle touches either of the lower bands. 5. **Plotting Dots**: - A tiny blue dot is plotted above bars where `upperTouch` is true. - A tiny blue dot is plotted below bars where `lowerTouch` is true.
### How to Use: 1. Copy this script into TradingView’s Pine Script editor. 2. Save it and add it to your chart. 3. You will see tiny blue dots appear above or below candles based on whether they touch any of the upper or lower Donchian Bands.
This setup provides a clear visual indication of price interactions with both Donchian Channels while keeping the chart uncluttered by hiding the channel lines.
В истинном духе TradingView автор этого скрипта опубликовал его с открытым исходным кодом, чтобы трейдеры могли понять, как он работает, и проверить на практике. Вы можете воспользоваться им бесплатно, но повторное использование этого кода в публикации регулируется Правилами поведения. Вы можете добавить этот скрипт в избранное и использовать его на графике.
Все виды контента, которые вы можете увидеть на TradingView, не являются финансовыми, инвестиционными, торговыми или любыми другими рекомендациями. Мы не предоставляем советы по покупке и продаже активов. Подробнее — в Условиях использования TradingView.