Questions (2368)

Votes
Answers
Views
Question
0
votes
1
answer
167
views
asked 5 years ago by
Category: TS Solutions
Hi Pete, Thanks again for this site.  What a great resource! When I setup a scanner using the indicator, as shown in the video, I set the KBB field to 1 and get a list of tickers that should be forming a green dot after any number of reds. However wh...
0
votes
1
answer
98
views
asked 5 years ago by
Category: Stock Scanners
Is it possible to make a scanner that can combined options and stocks. Example Stock(last price) * .05) <  is  Option ( last Bid) price Thank you  
0
votes
1
answer
116
views
asked 5 years ago by
Category: Chart Studies
Pete, In reference to my question " How to stop indicators from displaying in relation to a linear regression channels (LRC) direction". I've been giving this some thought and may have an idea but still don't know how to implement it. The attached PD...
0
votes
1
answer
133
views
asked 5 years ago by
Category: Strategy Guide
Thank you so much for your videos and websites, they are a phenomenal amount of great information that have helped me tremendously. Curious if you have encountered this?  I have successfully placed multiple 'Auto-trade Almost' conditional orders with...
1
vote
1
answer
217
views
asked 5 years ago by
Category: Chart Studies
Firstly, a huge thanks to Pete!!!.  Without having any background in writing code, I've been writing my own custom, studies, watchlists, strategies, etc  for a couple of years now thanks to the information on this site :)  I have a piece of code that...
0
votes
1
answer
88
views
asked 5 years ago by
Category: Stock Scanners
Hi Pete, Is there a way to highlight new results when doing a scan? Thanks!
0
votes
1
answer
382
views
asked 5 years ago by
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
votes
0
answers
73
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
1007
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
143
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...