Hello .I am trying to find a scan that will show stocks that 9 ema cross vwap and crosses happens above 200 Ema for buy and for sell the opposite. 9 ema crosses below vwap and it happens below 200 Ema along with volume spike indicator. Does the below coding looks ok 9 ema cross vwap and crosses happen above 200 Ema. Plus edit as needed, thanks
input length = 9; // Length of the 9 EMA
input length200 = 200; // Length of the 200 EMA
def ema9 = ExpAverage(close, length);
def vwapValue = VWAP();
def ema200 = ExpAverage(close, length200);
plot scan = ema9 > ema200 and ema9 crosses above vwapValue;
Can some one please help ?
thanks

input length = 9; // Length of the 9 EMA
input length200 = 200; // Length of the 200 EMA
def ema9 = ExpAverage(close, length);
def vwapValue = VWAP();
def ema200 = ExpAverage(close, length200);
plot scan = ema9 > ema200 and ema9 crosses above vwapValue;
Can some one please help ?
