TheRaptor22
New member
Looking for a scan for a three week tight scan , each weekly closing price within about 1% of prior weeks (3) close. Thanks in advance
#Price is within X% max of the Previous Close
#### Change percentvalue to % in decimal format
### Example .02 is 2% and .025 is 2.5%
def percentvalue = .01;
#Price is with X of Previous Close
def Prev_close = (close[1]);
def precent_val = Prev_close*percentvalue;
plot scan3 = absvalue(close - Prev_close) is less than or equal to precent_val;
Thread starter | Similar threads | Forum | Replies | Date |
---|---|---|---|---|
A | Three up days in a row with a gap down (and vice versa) | Questions | 2 | |
![]() |
Help creating scanner based on the line up of three indcators | Questions | 2 | |
T | Three Bar Play | Questions | 3 | |
L | Convert Three-Day Rolling Pivot to ThinkorSwim | Questions | 0 | |
Y | Request for Three Line Break CHARTS OR INDICATOR DEVELOPMENT | Questions | 5 |