- Questions
- Stock Scanners
Votes
Answers
Views
Question
0
1
546
asked 5 years ago by HariBansh Singh
Category:
Stock Scanners
Hahn, First of all thank you so much for your help for this community. I need your help creaing a scan with alert using below script. It is working 100% fine on study chart, but not working for Scan. I am getting "Exactly one plot expected" error. S...
0
1
132
asked 5 years ago by juan gomez
Category:
Stock Scanners
Hi Pete, I would like to be able to perform a mobile average scan which indicates that an exponential average of 52 periods is not more than 2% distanced from another exponential average of 79 periods. Thanks Pete
0
1
202
asked 5 years ago by Yun Tan
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...
0
1
72
asked 5 years ago by Craig Habermehl
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
1
262
asked 5 years ago by Hassan Labib
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
1
89
asked 5 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
1
310
asked 5 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
1
124
asked 5 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
1
289
asked 5 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
1
957
asked 5 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 ...