This exploration is designed to find those stocks where the close is above the median price over the past five days. It matches the steps in Dels bvook The Strategic Electronic Day Trader.
Close Above Median Price
Col a = CLOSE - MP()
Col b = (Ref(CLOSE,-1))-(Ref( MP() ,-1))
Col c =...