OPEN-SOURCE SCRIPT

BTC Volume number candel

//version=5
indicator("BTC Key Indicators with Volume Labels", overlay=true)

// 1. Klouzavé průměry (MA)
shortMaLength = 50
longMaLength = 200

shortMa = ta.sma(close, shortMaLength)
longMa = ta.sma(close, longMaLength)

plot(shortMa, color=color.blue, linewidth=2, title="50 MA")
plot(longMa, color=color.red, linewidth=2, title="200 MA")

// 2. RSI (Relative Strength Index)
rsiLength = 14
rsiOverbought = 70
rsiOversold = 30

rsi = ta.rsi(close, rsiLength)

hline(rsiOverbought, "Overbought", color=color.red, linestyle=hline.style_dotted)
hline(rsiOversold, "Oversold", color=color.green, linestyle=hline.style_dotted)
plot(rsi, "RSI", color=color.purple, linewidth=1)

// 3. MACD (Moving Average Convergence Divergence)
macdLength1 = 12
macdLength2 = 26
signalSmoothing = 9

[macdLine, signalLine, _] = ta.macd(close, macdLength1, macdLength2, signalSmoothing)

plot(macdLine, color=color.blue, title="MACD Line", linewidth=1)
plot(signalLine, color=color.orange, title="Signal Line", linewidth=1)
bgcolor(macdLine > signalLine ? color.new(color.green, 90) : color.new(color.red, 90), title="MACD Background")

// 4. Volume (Objem obchodů) - zobrazení sloupců
showVolume = input(true, "Show Volume Columns")
volumeColor = close > open ? color.green : color.red

plot(showVolume ? volume : na, style=plot.style_columns, color=volumeColor, title="Volume")

// 5. Volume Labels (číselné hodnoty nad svíčkami)
showVolumeLabels = input(true, "Show Volume Labels")
if showVolumeLabels
label.new(bar_index, high, str.tostring(volume, "#"), color=color.blue, textcolor=color.white, size=size.small, yloc=yloc.above)
Candlestick analysis

Skrip open-source

Dengan semangat TradingView yang sesungguhnya, penulis skrip ini telah menerbitkannya sebagai sumber terbuka, sehingga para trader dapat memahami dan memverifikasinya. Hormat untuk penulisnya! Anda dapat menggunakannya secara gratis, namun penggunaan kembali kode ini dalam publikasi diatur oleh Tata Tertib. Anda dapat memfavoritkannya untuk digunakan pada chart

Inggin menggunakan skrip ini pada chart?

Pernyataan Penyangkalan