can someone help me with the code:
MinDailyCapital = 100000
// The minimum total capital traded today, yesterday, or the day before. Capital is calculated as price * volume.
MinPrice = 1
// The minimum price of each security.
MaxPrice = 20
// The maximum price of each security.
SCREENER [(volume[2] * DClose(2) > MinDailyCapital or volume[1] * DClose(1) > MinDailyCapital or volume * DClose(0) > MinDailyCapital)AND close > MinPrice AND close < MaxPrice AND (close / DClose(1) – 1) * 100 > 5](abs(1 – close / DClose(1)) * 100 AS “var”)
// Sorting criteria of results: highest variations in price today (gains or losses).
I need it the price would be above VWAP,