id like to have a search code for long green wicks on the down side of the candle about two thirds of the candle length, with volume at least 20 percent higher then a 50 day average , is this possible? Any help would be greatly appreciated , new to trading and pro real time
Yes that’s possible! I made this little stock screener from your description:
c1 = close>open
c2 = (open-low)>=0.66*range
c3 = volume>=1.2*average[50](volume)
test = c1 and c2 and c3
screener [test]
Seems to work correctly, do you confirm?