Stock Scanners (703)

Votes
Answers
Views
Question
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
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
1
answer
891
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
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
98
views
asked 4 years ago by
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
272
views
asked 4 years ago by
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
79
views
asked 4 years ago by
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
200
views
asked 4 years ago by
Category: Stock Scanners
Hi all, I would really appreciate it if you could show me the code that I could use to run a scan on thinkorswim to find out the stocks which the current price during the intraday is greater than previous day low. Thx.
0
votes
1
answer
59
views
asked 4 years ago by
Category: Stock Scanners
Pete I've tried writing this scan crossing span B but the results are a mixed bag with some still in the cloud....This is Hubert Senters most powerful setup...I'm trying to scan for the lagging line crossing above  the cloud with at least three days ...
0
votes
1
answer
160
views
asked 4 years ago by
Category: Stock Scanners
I am trying to use TOS Candle stick pattern code to scan for morning star but scan return nothing. I know I must not doing this right. Please help input length = 20; input trendSetup = 3; input bodyFactor = 0.3; Assert(bodyFactor >= 0, "'body fact...