Stock Scanners (701)

Votes
Answers
Views
Question
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
4652
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
1232
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
330
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
216
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...
0
votes
1
answer
2930
views
asked 6 years ago by
Category: Stock Scanners
Hi All, First, came across this site today and you have great stuff here Peter! Your ADX DMI watchlist for TOS hack is an awesome visualization that will help narrow down my search of stocks scanned nightly. Which brings me to my TOS scan question: a...
0
votes
2
answers
218
views
asked 6 years ago by
Category: Stock Scanners
How to target or filter scans with a specific time period filter. For example I would like to use your previous code you provided me input xPercent = 10.0; def percentChange = 100 * (close / close[1] - 1); plot scan = AbsValue(percentChange) > xPe...