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.
In pieno spirito TradingView, l'autore di questo script lo ha pubblicato open-source, in modo che i trader possano comprenderlo e verificarlo. Un saluto all'autore! È possibile utilizzarlo gratuitamente, ma il riutilizzo di questo codice in una pubblicazione è regolato dal nostro Regolamento. Per aggiungerlo al grafico, mettilo tra i preferiti.
Le informazioni ed i contenuti pubblicati non costituiscono in alcun modo una sollecitazione ad investire o ad operare nei mercati finanziari. Non sono inoltre fornite o supportate da TradingView. Maggiori dettagli nelle Condizioni d'uso.