I am using this scan and I would like to create a column in my watchlist that turns Yellow when this is true
#defining places in which we have greater than [x] SD of volume
def volumeCondition = RelativeVolumeStDev(50).RelVol >= 3;
#scanning to see where we have greater than 3 SD+ volume, on 3 out of the past 5 days
plot signal = Sum(volumeCondition, 5) >= 3;
#defining places in which we have greater than [x] SD of volume
def volumeCondition = RelativeVolumeStDev(50).RelVol >= 3;
#scanning to see where we have greater than 3 SD+ volume, on 3 out of the past 5 days
plot signal = Sum(volumeCondition, 5) >= 3;