Below VWAP Scan Percentage


Category:
0
0

Hello Hahn,

I found this code you had written for a scan within 5% of VWAP above or below. Would you be able to tell me how to adjust it to scan for stocks that are below 5% and more? (Essentially stocks that are continuously trending down). I very much appreciate your help!

def data = reference VWAP().”VWAP”;
plot scan = (close < data * 1.05 and close >= data);

 

RESOLVED
Marked as spam
Posted by (Questions: 1, Answers: 0)
Asked on June 6, 2020 12:45 pm
127 views
0
Private answer

def data = reference VWAP().”VWAP”;
plot scan = (close < data * 0.95);

Marked as spam
Posted by (Questions: 37, Answers: 4086)
Answered on June 6, 2020 3:48 pm