[STOCK] [TradingView][教學] 使用Pine Script來客製化扣抵值的樣式

目的

我們可以在Tradingview圖表上使用Pine Script來畫出自己想要的扣抵值的表示,這邊我們使用label.new來畫出5, 10跟20日的扣抵值,扣抵值的樣式也可以用style來設定不同的標籤樣式。我以下的是使用label.style_circle來畫出圓的樣式。

標籤樣式有以下的:
label.style_none
label.style_xcross
label.style_cross
label.style_triangleup
label.style_triangledown
label.style_flag
label.style_circle
label.style_arrowup
label.style_arrowdown
label.style_label_up
label.style_label_down
label.style_label_left
label.style_label_right
label.style_label_lower_left
label.style_label_lower_right
label.style_label_upper_left
label.style_label_upper_right
label.style_label_center
label.style_square
label.style_diamond

如果文章對你有幫助在幫我按一下廣告來讓我有額外收入這也是對我來說是一種鼓勵。

策略腳本

// © CarterTsai
//@version=4
study("扣抵值", overlay=true)

if barstate.islast
    label.new(time[4], close, xloc=xloc.bar_time,  yloc = yloc.abovebar,  style=label.style_circle, size = size.auto, color = color.red, tooltip = "5日均線扣抵值")
    label.new(time[9], close, xloc=xloc.bar_time,  yloc = yloc.abovebar, style=label.style_circle, size = size.auto, color = color.yellow, tooltip = "10日均線扣抵值")
    label.new(time[19], close, xloc=xloc.bar_time, yloc = yloc.abovebar, style=label.style_circle, size = size.auto, color = color.blue, tooltip = "20日均線扣抵值")

結果



留言

cindy寫道…
感谢分享,很好用

熱門文章