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 |
---|---|---|---|---|
![]() |
Three-bar High/Low | Questions | 1 | |
S | Three Triple 3 Bars BreakOut | Questions | 19 | |
S | Three Little Pigs MTF Swing Trading For ThinkOrSwim | Custom | 3 | |
E | Three days tight based on average range | Questions | 6 | |
A | Three up days in a row with a gap down (and vice versa) | Questions | 1 |