Hi, i received an error message when creating this scan, it stated "Exactly One plot expected",
Request assistance on how should i write the script that tells the scanner to show me the list of stocks when ANY of the conditions. Thanks
Request assistance on how should i write the script that tells the scanner to show me the list of stocks when ANY of the conditions. Thanks
Code:
def BaseMA = SimpleMovingAvg(close, 65);
def BaseMA2 = SimpleMovingAvg(close, 34);
def Upperband = BaseMA * 1.05;
def Upperband2 = BaseMA2 * 1.05;
def Momo= Average(close, 7);
plot Start6 = Momo crosses above Upperband;
addChartBubble(Start6,open,"6", color.white);
plot Start3 = Momo crosses above Upperband2;
addChartBubble(Start3,open,"3", color.orange);