New Members: Be sure to confirm your email address by clicking on the link that was sent to your email inbox. You will not be able to post messages until you click that link.
How would you set up scanning for the following two conditions:
1. Finding all stocks where the 3 EMA is above the 9 EMA
2. Finding all stocks where the RSI is above 60 for the past 3 days
Thank you
0
Answers
stockcharts.com/docs/doku.php?id=scans:advanced_scan_workbench
Indicator and overlay explanations are here:
stockcharts.com/school/doku.php?id=chart_school:technical_indicators
The first one is very simple, so I'll let you figure it out from the instructions.
The second one uses a function, so that's a little more complicated.
and [min(3, RSI(14)) > 60]
and syntax checker says this line is wrong. Any help would be appreciated as this is the primary scan I want to do. Thanks
Your first line should be the stocks you want to look at. You can use the default statement that is already there.
[type = stock] AND [Daily SMA(20,Daily Volume) > 40000]
The next line has to begin with the word "and".
The condition you want to test for has to be in brackets [ ].
So the general form for a statement is:
and [ something > something]
Trying to scan for all stocks below -DI (23) using indicator ADX Line (W/+DI -DI)
Thank you for all your help.
Your choices in the Technical Indicator drop down are ADX Line, Minus DI and Plus DI.
They can be more or less than (above and below) each other, or more or less than some value.
So, in everyday English (in other words, skip scan code for now) what do you want below what?
Line(Default color Red) with a value of less than 23 when ADX is set at 3. In other words sorting for all stocks with a ADX Minus DI
Line that is less than 23 when you set the ADX at 3 instead of at the dafault of (14).
Not looking for something to cross something-just to sort for stocks that chart with a Minus DI below 23 value with ADX@(3).
The purpose of course is to help sort for strength by finding those stocks graphing a
low ADX Minus DI Line. Thanks.
Select Minus DI and click Insert
Find the inserted text at the bottom of your scan (you may have to scroll down)
Change "14" to "3" for Minus DI(14)
Change "> Plus DI(14)" to "<23"
Do check syntax and run.