Regler
country = US;
exchange != OTC;
//MarketCap > 50M and MarketCap < 5b;
PricePercentChange1Month > 10;
// ADR % 20 days
100*(
(
PriceHigh{1d}/PriceLow{1d}+
PriceHigh{2d}/PriceLow{2d}+
PriceHigh{3d}/PriceLow{3d}+
PriceHigh{4d}/PriceLow{4d}+
PriceHigh{5d}/PriceLow{5d}+
PriceHigh{6d}/PriceLow{6d}+
PriceHigh{7d}/PriceLow{7d}+
PriceHigh{8d}/PriceLow{8d}+
PriceHigh{9d}/PriceLow{9d}+
PriceHigh{10d}/PriceLow{10d}+
PriceHigh{11d}/PriceLow{11d}+
PriceHigh{12d}/PriceLow{12d}+
PriceHigh{13d}/PriceLow{13d}+
PriceHigh{14d}/PriceLow{14d}+
PriceHigh{15d}/PriceLow{15d}+
PriceHigh{16d}/PriceLow{16d}+
PriceHigh{17d}/PriceLow{17d}+
PriceHigh{18d}/PriceLow{18d}+
PriceHigh{19d}/PriceLow{19d}+
PriceHigh{20d}/PriceLow{20d}
)/20-1) > 5;
//Volume (dollars) 1-day C * V / 100 -> over 20M dol vol (5-20M)
Price * Volume > 20M;
//Price growth one months (Hi/Lo-1)*100
order by PricePercentChange1Month desc;
limit 100;