Questions (2351)

Votes
Answers
Views
Question
0
votes
0
answers
66
views
Be first to answer!
asked 5 years ago by
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
votes
1
answer
967
views
asked 5 years ago by
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
votes
1
answer
140
views
asked 5 years ago by
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
votes
1
answer
1892
views
asked 5 years ago by
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
votes
1
answer
75
views
asked 5 years ago by
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
vote
1
answer
131
views
asked 5 years ago by
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
votes
1
answer
129
views
asked 5 years ago by
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
votes
1
answer
90
views
asked 5 years ago by
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
votes
1
answer
155
views
asked 5 years ago by
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...
0
votes
1
answer
2568
views
asked 5 years ago by
Category: Chart Studies
Hi, I was wondering if there is a way to see the expected move for the monthly option expiration on the chart like how this indicator does it for each week. http://tos.mx/wx7EQX Which I found here https://theotrade.com/member-home/member-theotrade-tu...