TD Sequential: How it Works Part 1

preview_player
Показать описание
Today I'm going over how the TD Sequential indicator works and the rules behind it.
Рекомендации по теме
Комментарии
Автор

Thanks for writing the steps as well. Information goes over my head when people talk to me. I even watch movies with subtitles for the same reason. Great video dude 😎👍

rudeboymon
Автор

Dude, I've been searching for days now. You are the man

kobusvosloo
Автор

Thank you for the explanation!
Where can we get the code?

eduardozabaleta
Автор

Just saw this video is there a way to access the code? thank you

mikegerlach
Автор

Can you post the code again please. And great video!

zacharybryant
Автор

0:55 "Copy and past the code that I'm going to write down in the description..." ??? There are now over 30 td sequential indicators on TradingView. Just open a chart, click on indicators at the top and type td sequential exactly.. choose one with alerts* Some have alerts, but it's not in the title.

forexpivots
Автор

thanks for sharing informaiton/knowledge, by the way, what is red/green arrow indicators on top and bottom?

js-dlul
Автор

"Copy and paste the code that I am going to write down in the description"

--Doesn't include the most important item from the video.... See below for a decent TD sequential script. Copy and paste into tradingview, save then hit add to chart.

study(title="MARS Indicator", shorttitle="MARS", overlay=true)

// MOVING AVERAGES

len0 = input(8, minval=1, title="8 SMA")
src0 = input(close, title="8 SMA")
out0 = sma(src0, len0)
plot(out0, linewidth=2, title="8 SMA", color=color.blue)

len1 = input(21, minval=1, title="21 SMA")
src1 = input(close, title="21 SMA")
out1 = sma(src1, len1)
plot(out1, linewidth=2, title="21 SMA", color=color.white)

len2 = input(55, minval=1, title="55 SMA")
src2 = input(close, title="55 SMA")
out2 = sma(src2, len2)
plot(out2, linewidth=2, title="55 SMA", color=color.orange)

len3 = input(200, minval=1, title="200 SMA")
src3 = input(close, title="200 SMA")
out3 = sma(src3, len3)
plot(out3, linewidth=2, title="200 SMA", color=color.green)

SAR
sarStart = 0.021
sarInc = 0.021
sarMax = 0.21
out = sar(sarStart, sarInc, sarMax)
plot(out, style=plot.style_circles, color=color.blue)

and Resistance
resistance = 21
resistanceTop = valuewhen(high >= highest(high, resistance), high, 0)
resistanceBottom = valuewhen(low <= lowest(resistance), low, 0)

RT2 = plot(resistanceTop, color=resistanceTop != resistanceTop[1] ? na : color.red, linewidth=2, offset=0)
RB2 = plot(resistanceBottom, color=resistanceBottom != resistanceBottom[1] ? na : color.green, linewidth=2, offset=0)

// SEQUENTIAL

Transp = input(0, title="Sequential Transparency")

// SETUP
sellSetup = 0
sellSetup := (close < close[4]) ? sellSetup[1] == 9 ? 1 : sellSetup[1] + 1 : 0
sellPerfected = (close < close[1] and close < close[2]) ? true : false

buySetup = 0
buySetup := (close > close[4]) ? buySetup[1] == 9 ? 1 : buySetup[1] + 1 : 0
buyPerfected = (close > close[1] and close > close[2]) ? true : false

setupCount = max(sellSetup, buySetup)
setupCountColor = sellSetup > 7 and sellPerfected ? color.yellow : sellSetup > 0 ? color.red : buySetup > 7 and buyPerfected ? color.yellow : buySetup > 0 ? color.green :color.green

plotchar(setupCount == 1, char="", text="1", textcolor=setupCountColor, color=setupCountColor, location=location.abovebar, transp=Transp)
plotchar(setupCount == 2, char="", text="2", textcolor=setupCountColor, color=setupCountColor, location=location.abovebar, transp=Transp)
plotchar(setupCount == 3, char="", text="3", textcolor=setupCountColor, color=setupCountColor, location=location.abovebar, transp=Transp)
plotchar(setupCount == 4, char="", text="4", textcolor=setupCountColor, color=setupCountColor, location=location.abovebar, transp=Transp)
plotchar(setupCount == 5, char="", text="5", textcolor=setupCountColor, color=setupCountColor, location=location.abovebar, transp=Transp)
plotchar(setupCount == 6, char="", text="6", textcolor=setupCountColor, color=setupCountColor, location=location.abovebar, transp=Transp)
plotchar(setupCount == 7, char="", text="7", textcolor=setupCountColor, color=setupCountColor, location=location.abovebar, transp=Transp)
plotchar(setupCount == 8, char="", text="8", textcolor=setupCountColor, color=setupCountColor, location=location.abovebar, transp=Transp)
plotchar(setupCount == 9, char="", text="9", textcolor=setupCountColor, color=setupCountColor, location=location.abovebar, transp=Transp)

Digitaliquid
Автор

I started using the indicator and it's really great but i got 1 problem. I can't set an alarm for the buy or sell countdown. I can set the alarm for the buy/sell setup but i would like to set when the number 1 appears on the countdown to alert me. Can you help?

zsone
Автор

I must be missing something ...like the code)) Is there another link? Thx

tlmcdaniel
Автор

Thx straight forward with great illustrations. Many thanks my dude.

Ks-zzlh
Автор

Just added the code and I get then n/a across the top of the page?

BarryLavis
Автор

When using this signal, which time frame is the most accurate ? Or does it work for all ?

FutbolistaLifeStyle
Автор

Thnx so much the knowledges but i wonder one thing. Should the candle of countdowns start immediately after the last candle of setups?

gokhanay
Автор

Thnx Ganji, copied nd pasted directly from ur profile it works though it also shows n/a within!!

kassimnsubuga
Автор

Hi, where can i find the script to copy/paste into tradingview?

stian
Автор

WHAT TIME FRAME YOU USE PLEASE FOR THIS INDICATOR?

stocksoptionsandchartsdisc
Автор

Is there video show how to create new study in think or swim? I copy and paste into think or swim but Think or Swim shows error.

samksl
Автор

thanks for the explanation...good stuff

DaS-yukc
Автор

Hi man, thank you for this good video and indicator!!! I have a little problem with the setup of the "Alerts", the option BuyCountdown doesn't appear what I can do? TY

elfrances