Stock Scanners (701)

Votes
Answers
Views
Question
0
votes
1
answer
280
views
asked 4 years ago by
Category: Stock Scanners
input marketClose = 1600; def closeCounter = SecondsTillTime(marketClose); def regSessEnd = closeCounter[-1] == 0; rec priorDayClose = if regSessEnd then close else priorDayClose[1]; def change = ((close-priorDayClose)/priorDayClose)*100; def con1= c...
0
votes
1
answer
888
views
asked 4 years ago by
Category: Stock Scanners
Tags:
I want to scan stocks which current volume is greater than twice of last 50 days average. I tried to add this line to scan, plot scan = volume is greater than 2 * VolumeAvg("length" = 50)."Vol"; It runs without error but the scan come back with zero ...
0
votes
1
answer
98
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, i have this  existing scan that scan stocks that are trending declare lower; def conditionOne = Average(close, 20) / Average(close, 200) >= 1.1; plot x = conditionOne; but i would like to insert another condition to only show those s...
0
votes
0
answers
117
views
Be first to answer!
asked 4 years ago by
Category: Stock Scanners
I have seen other scanners like trading view that will alert stocks up a certain % within the last 5min or 10min. i was messing around on ToS and cant figure out anything to do with time   i want to scan in the last 30mins of the regular trading...
0
votes
1
answer
246
views
asked 4 years ago by
Category: Stock Scanners
Is it possible to create a custom study where you can see that volume > open interest?   Thanks!
0
votes
1
answer
203
views
asked 4 years ago by
Category: Stock Scanners
I'm struggling trying to develop a premarket scanner than behaves differently during different times of day. The scanner should display the current gap from previous day close to current price during premarket hours, while diverting to a normal gap s...
0
votes
1
answer
388
views
asked 4 years ago by
Category: Stock Scanners
Hello Pete Could you help me do a Parabolic SAR scan on a daily time frame... I'm trying to scan for stocks that the SAR have gone from long/short or short/long on the SAR...Trying to catch the stocks o the first bar...   Thanks
0
votes
1
answer
205
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, I'm interested in adding a stock screen that requires all the daily closes of the current week to be below the weekly close of the prior week.  I understand that TOS doesn't allow secondary aggregation periods in their scans, but you mention...
0
votes
1
answer
166
views
asked 4 years ago by
Category: Stock Scanners
Good day Pete, and I hope that all is well and finally able to get logged in LinkedIn after months of trying :-)I for sure I know it was never on my end, as all other LI's I use for logings have been fine @ other sites. So now that I can start to get...
0
votes
1
answer
305
views
asked 4 years ago by
Category: Stock Scanners
Been trying for hours, im trying to make a bullish scan but i keep coming up with no results   MACD- blue line above the orange within the past 5 days Momentum- above zero within past five days TTM Squeeze- above zero within past 5 days i use th...