- Questions
- Stock Scanners
Votes
Answers
Views
Question
0
votes
1
answer
100
views
asked 6 years ago by Palmer Hendricks
Category:
Stock Scanners
The 2, 3, and 4 Day Aggregation Periods are not available in the scanner. Is it possible to add code to a scan to emulate 2, 3, and 4 day agg. periods ? Thank you.
0
votes
1
answer
334
views
asked 6 years ago by Roscoe Jackson
Category:
Stock Scanners
i Hi PETE Can you change this code into a thinkscirip scan of TOS? Thanks Roscoe nput price = close; input fast_length = 8; input slow_length = 34; input displace = 0; def na = double.nan; plot fastema = ExpAverage(price[-displac...
0
votes
1
answer
130
views
asked 6 years ago by Tuan Pham
Category:
Stock Scanners
Hi Pete, How do I scan for earnings between two specific dates? Ex: 10/15/19 thru 10/31/19 Thanks again!
0
votes
1
answer
309
views
asked 6 years ago by Jesse
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
997
views
asked 6 years ago by Yun Tan
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
130
views
asked 6 years ago by Nick Neo
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
126
views
Be first to answer!
asked 6 years ago by Ni Kola
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
288
views
asked 6 years ago by Joshua Long
Category:
Stock Scanners
Is it possible to create a custom study where you can see that volume > open interest? Thanks!
0
votes
1
answer
232
views
asked 6 years ago by Brandon Johnson
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
423
views
asked 6 years ago by Craig Habermehl
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