分享一下9轉序列(TD9)的tradingview code

這個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)。

所有跟帖: 

haha, I asked ChatGPT to write this for me :) taking 5 seconds -三心三意- 給 三心三意 發送悄悄話 (0 bytes) () 07/28/2024 postreply 15:55:00

哈哈,就是看了你今天帖子裏的TD指標,才去搜的 :) -opst- 給 opst 發送悄悄話 (83 bytes) () 07/28/2024 postreply 16:01:51

you can ask chatGpT to write 50% of the technical indicator -三心三意- 給 三心三意 發送悄悄話 (0 bytes) () 07/28/2024 postreply 16:09:00

The official name of this is Tom Demark sequential indicator -三心三意- 給 三心三意 發送悄悄話 (0 bytes) () 07/28/2024 postreply 15:57:00

還有18? -Trader RM- 給 Trader RM 發送悄悄話 (0 bytes) () 07/28/2024 postreply 16:02:35

嗯,5月29號 -opst- 給 opst 發送悄悄話 (0 bytes) () 07/28/2024 postreply 16:03:41

Trading View Indicator: “Sequencer” by LuxAlgo -AroundThePost- 給 AroundThePost 發送悄悄話 (0 bytes) () 07/28/2024 postreply 19:15:46

請您先登陸,再發跟帖!