這個TD9 indicator好像因為版權問題在tradingview下架了。搜了一下沒搜到現成代碼,於是自己diy了一個。有需要的自取。 :)
//@version=5
indicator("MyTd", overlay = true)
var cup = 0
var cdown = 0
if close > close[4]
cup := cup + 1
cdown := 0
else
cdown := cdown + 1
cup := 0
if cup > 0
label.new(bar_index, high, text = str.tostring(cup), yloc = yloc.abovebar, style = label.style_none, textcolor = color.green)
if cdown > 0
label.new(bar_index, high, text = str.tostring(cdown), yloc = yloc.belowbar, style = label.style_none, textcolor = color.red)
圖形效果是這樣子的。 (btw, qq已經到down trend 12了,快苦盡甘來了 :)。 根據對稱性,上次up trend是12轉的,當然上上次是18)。