- Questions
- Stock Scanners
Votes
Answers
Views
Question
0
votes
1
answer
109
views
Category:
Stock Scanners
Hello Pete, using the code solution here . https://www.hahn-tech.com/ans/premarket-line-100-above-the-premaket-low/ how can we create a scan that shows what stocks premarket at any point whose premarket low to premarket high percent change is greater...
0
votes
1
answer
152
views
Category:
Stock Scanners
Hello, Lets say SPY has moved 1% pre-market. I want to get a list of stocks that have moved 3% or more up or down pre-market. Lets say SPY has moved 2.2% pre-market. I want to get a list of stocks that have moved 6.6% or more during pre-market. So th...
0
votes
1
answer
464
views
Category:
Stock Scanners
Hi all. So I have an idea I'd like to test out, but I'm not sure how to put it together into a working thing. I basically want to scan for premarket price spikes that have happened say up to 30 days ago. I want the scanner to return the list of ticke...
0
votes
1
answer
390
views
Category:
Stock Scanners
Hello Pete, I need help creating a scan condition that states then volume of the last 1 minute candle must be atleast 10,000. This condition must also work in the after hours and premarket. Thank you
0
votes
1
answer
907
views
Category:
Stock Scanners
♥ 1
Hi Peter, I'm having a hard time trying to figure out how to make a scanner to scan stocks intraday that is moving above yesterdays highs(Including premarket movement) on the 1M chart with over 300k volume on the day.
0
votes
1
answer
312
views
Category:
Stock Scanners
Hi Peter, I am new to Thinkscript and I am trying to create a custom scanning criteria where it only shows stocks moving/ breaking above the premarket high on the 1 minute chart, I tried doing this myself but it has been a HUGE fail so far... If you ...
0
votes
1
answer
218
views
Category:
Stock Scanners
Hi Pete! I'm trying to create a custom study to add to a preexisting scanner to hopefully later get alerts when this new condition is met. So, I'd like to get alerts when any of the stocks that the scan gets has a 1-min bar above 8,000 in volume. Th...
0
votes
1
answer
428
views
Category:
Stock Scanners
I am lookin to scan say the first hour of the day or just the middle part. Is there any easy way to write this to modify start and end time. I see premarket scans but nothing on this.
0
votes
2
answers
318
views
Category:
Stock Scanners
Hi Pete! I'm a beginner with scripts and I've been following what you guys are doing here for a while. It's amazing, really awesome ideas. I'm trying to create a very basic scanner for premarket which includes a study and alerts when the condition is...
0
votes
1
answer
321
views
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...
