TradingView
Himeyuri
11 jun 2019 16:16

Volume Weighted Donchian Channels 

Bitcoin / United States DollarCoinbase

Beskrivning

Donchian channels weighted with volume, they are now closer to the price and can cross it.
Kommentarer
ICEKI
Very nice Himeyuri; keep it up =D
AP_trades
@ICEKI, made a few modifications

length = input(50) //a = highest(ohlc4*volume,length)/highest(volume,length) //b = lowest(ohlc4*volume,length)/lowest(volume,length) a = highest(sum(ohlc4*volume,length)/sum(volume,length),length) b = lowest(sum(ohlc4*volume,length)/sum(volume,length),length) plot(max(a,b),color=#2196f3,transp=0),plot(min(a,b),color=#e91e63,transp=0)
Mer