Votes
Answers
Views
Question
0
1
385
asked 5 years ago by Craig Habermehl
Category:
Watch Lists
Hello Pete I've come across a lower study called the tea 2.0...It seem to plot momentum very well...I was hoping to get the bright/dark red dots and bright/dark green dots repainted to the watch list. declare lower; input Period = 21; # Bars ...
0
0
74
Be first to answer!
asked 5 years ago by Shawn
Category:
Chart Studies
Hi Pete: I've trying to code the accdist indicator to tell me when it moves off of the high or low. Here is my code declare lower; input length = 5; def CLV = CloseLocationValue(); def spxvol = close("$TVOLSPC") - open("$TVOLSPC"); def rutvol = close...
0
1
1018
asked 5 years ago by Robin Ekwall
Category:
Watch Lists
Mr. Hahn, I have the indicator code for Supertrend. Can this be made for a watchlist? Here is the code. Many thanks! input AtrMult = 1.0; input nATR = 4; input AvgType = AverageType.HULL; input PaintBars = yes; def ATR = MovingAverage(AvgType, TrueRa...
0
1
146
asked 5 years ago by S S
Category:
Chart Studies
Hello Is there any way we can create alert when everytime ticker SPY or any move 50 cents up on down then alert ring. input SYMB = “SPY”; def AD = close (symbol = SYMB, period = AggregationPeriod.day) – close(symbol = SYMB, period = AggregationPeriod...
0
1
1976
asked 5 years ago by chilo
Category:
Watch Lists
hello can you help me with adding the "Spark chart" to TOS watchlist in the desktop platform,(just like they have it in the mobile app version) thanks
0
1
82
asked 5 years ago by Shaishav Patel
Category:
Chart Studies
Hi Pete, TOS - Study, Camarilla Points. Is there a way to hide the support resistance lines for all previous days on the chart except the current day? My intention is to see the chart little clear with few lines on it. Thank you, Sam
1
1
146
asked 5 years ago by Josh Phu Tran
Category:
Chart Studies
Hello Hanh-Tech Community, In TOS, there is a standard MovingAverageCrossover study. How do I have TOS automatically plot a Dot or even a Price Level at the point where the 9 EMA crosses above or Below the 21 EMA? The default signals plots on the can...
0
1
166
asked 5 years ago by Craig Habermehl
Category:
Watch Lists
Pete Is it possible to write a code for a watch list of Hull EMA and the 43EMA cross. If the HMA is above the EMA the background is green....If the HMA is below the EMA background is red....Lastly is there a ways to add how many bars ago the cross ha...
0
1
98
asked 5 years ago by MR. Ed
Category:
Watch Lists
One more Request: …. In response to my request on Sept. 27 “ How to change value colors on a label”. input SYMB = "/VX"; def VX = close(symbol = SYMB); def O = open (symbol = SYMB); AddLabel(1, "/VX: " + " = " + VX, if VX > O then Color.RED else i...
0
1
163
asked 5 years ago by Mike DAntonio
Category:
Stock Scanners
Hey Pete, I've been using ToS to trade options for a while now but I cannot seem to figure this one out. How can I make an options scanner to scan for options that have moved up 500% or more from their lowest point in 3 days to their highest p...