Stock Scanners (703)

Votes
Answers
Views
Question
0
votes
2
answers
248
views
asked 6 years ago by
Category: Stock Scanners
Let's say I pull up a daily chart with 1 year of data. The high and low are listed. Let's say the low of this time frame is $10 and the high is $70. The mean is obviously $40. Is there a way we can scan for stock that are currently trading at or near...
0
votes
1
answer
920
views
asked 6 years ago by
Category: Stock Scanners
I'm looking to create a pre-market gap scan for stocks that have moved +/-4% from the previous day's closing price. I would also like to make a custom column that displays the gap value as a percent so I can customize some of the look and feel. I kno...
0
votes
2
answers
172
views
asked 6 years ago by
Category: Stock Scanners
Hello, I would like to get help on the code that can scan for MA 20 crossing above MA 50 in a 30 mins or one hour time frame please? It should scan for any cross for the last N bars (let's say the last 14 bars that correspond to the whole day in case...
1
vote
1
answer
4661
views
asked 6 years ago by
Category: Stock Scanners
I'm trying to put together a scan that will only be run extended hours (pre-market). It will simply compare the current after hours price with the previous trading day close. Here's what I have:   def percent_change = 8.00; def yest_closing_pric...
0
votes
1
answer
128
views
asked 6 years ago by
Category: Stock Scanners
Hello, how can I make a scan for stocks that have a 10% higher ask is than what the current close price is? I was thinking something along these lines... def MinimumAsk = close * 1.1; plot scan = ask >= MinimumAsk ^^ This didn't work.
0
votes
4
answers
1241
views
asked 6 years ago by
Category: Stock Scanners
I can get the candles to match two of the four colors. Can anyone assist to make it all match? Here's the link to my semi-custom indicator [REMOVED BY MODERATOR]  
0
votes
2
answers
455
views
asked 6 years ago by
Category: Stock Scanners
I'm looking to create a scan for stocks that meet the following criteria: A stock that is in a squeeze (on any time frame) Sector(s) that it belongs in (prefer it's in the top 10 holdings) and sector is in a squeeze Index that it is in whether it be ...
0
votes
2
answers
331
views
asked 6 years ago by
Category: Stock Scanners
I used your code and broke it off into 4 separate codes but I have tried every night  after hours to scan but get nothing on any of the scans. I don't know exactly how to fix it  
0
votes
1
answer
192
views
asked 6 years ago by
Category: Stock Scanners
Hi Pete, I am new to programming. How can I write a simple code-  close is greater than high from 15 bars ago. If I write it like that -the program just looks at the close of the bar -15 bars ago. I want it to look at the last 15 bars. close is great...
0
votes
1
answer
217
views
asked 6 years ago by
Category: Stock Scanners
Hello, My name is Wayne. I have no programming experience but I am interested in learning. How do I begin to build a scanner that scans for stocks that:  have a 10% or more rise in a month  have 8 or more years of available data  have risen 10% or mo...