Stock Scanners (703)

Votes
Answers
Views
Question
1
vote
1
answer
106
views
asked 3 years ago by
Category: Stock Scanners
Hey there! I have some fairly crude code, but it gets me what I want. I can grab the volume of the first 20 minutes with this, and it will show up on my label. However, when I try to scan using the plot in my study and set it to search for > 20, i...
0
votes
1
answer
104
views
asked 4 years ago by
Category: Stock Scanners
I want to run a scan in TOS that meets two conditions. The first condition is a stock that has made a new High price within the last three years. Then I want to combine that first condition with a scan that will show me the stocks that have either eq...
0
votes
1
answer
104
views
asked 4 years ago by
Category: Stock Scanners
Hey Pete!  Thanks for all your help as always.   You helped me on a previous AccDist scan and I've tried everyday I could think of to get the modified scan to work.     All I'm trying to get is the highest AccDist value from the previo...
0
votes
1
answer
104
views
asked 4 years ago by
Category: Stock Scanners
Hi Pete, I am looking for a scanner to produce results where the VWAP is declining and is down by a percentage which is set by a defined input with the value of say 2%. I thought this would work but it’s producing undesired results. # VWAP trending d...
0
votes
1
answer
104
views
asked 3 years ago by
Category: Stock Scanners
Hi Pete, I am trying to scan PPS buy for 1 hr HA TF. I do have the code for PPS buy. def ppsBuy = PPS().BuySignal; def buy = !IsNaN(ppsBuy); plot scan = buy; What change do I need to do for scanning HA candles? Thank you Shaishav
0
votes
0
answers
103
views
Be first to answer!
asked 6 years ago by
Category: Stock Scanners
When I use the code you provided #plot scan = Highest(signalBreakAboveCloud, 3) > 0 and Highest(signalBullishConfirmation, 3) > 0; #plot scan = Highest(signalBreakBelowCloud, 3) > 0 and Highest(signalBearishConfirmation, 3) > 0; The only ...
0
votes
1
answer
103
views
asked 6 years ago by
Category: Stock Scanners
How can I change the code on the watchlist code listed below to create two scans, one for above 55 RVI and one for below 45 RVI using in the 2-minute, 5-minute, and 10-minute time frames?
0
votes
1
answer
103
views
asked 5 years ago by
Category: Stock Scanners
I would like to create a scan to find stocks where price has dropped -10% below the open price.  Thanks Pete!
0
votes
1
answer
103
views
asked 4 years ago by
Category: Stock Scanners
Hey Pete, I'm looking for a scan that allows me to filter stocks that have the past 15 consecutive daily candle open and closes below the value of the current upper keltner channel band.
0
votes
1
answer
103
views
asked 4 years ago by
Category: Stock Scanners
I have a newbie question. Is it possible to compare the current price (not a previous close but what it actually is at this exact time) to the open price for that particular bar? In otherwords, how much that candle has increased? I wrote this code bu...