Hi,
Can someone help with the two screens i’m trying to run:
1)
last price between $0.5 – $10
average daily volume >200,000
last price within 3% of the 52 week high
2)
last price between $0.5 – $10
average daily volume >200,000
open price gap up >10% from yesterdays high
any help is appreciated, thank you!
These 2 screeners could be coded as below:
1/ near 52 weeks high, less than 3%
timeframe(daily)
//last price between $0.5 – $10
price = close>)0.5 and close<=10
//average daily volume >200,000
vol = average[20](volume)>200000
timeframe(weekly)
//last price within 3% of the 52 week high
hh = highest[52](high)
c1 = close/hh>=0.97
screener[c1 and price and vol] (close/hh)
2/ open gap of 10%
timeframe(daily)
//last price between $0.5 – $10
price = close>)0.5 and close<=10
//average daily volume >200,000
vol = average[20](volume)>200000
gap = dopen(0)/dhigh(1)>=1.1
screener[gap and price and vol] (dopen(0)/dhigh(1))
(not tested)