Screener Highest variations

Category: Screeners By: Vivien René Created: July 21, 2020, 10:06 AM
July 21, 2020, 10:06 AM
Screeners
2 Comments

A very simple screener to help finding quickly the highest variations on the unit time. It s calculated from the last highest to the up of the candle (not the shadow)

// Variation calculation
var = (close - high[1])/high[1]

// Volume condition
avgVol = average[20](volume)

sum = 0
for i=0 to 20
if (volume[i] < avgVol*10) then
sum = sum + volume[i]
else
sum = sum + avgVol
endif
next

avgVol = sum / 21

// Screener
SCREENER[var > 0.05 and avgVol > 1000](var*100 as "var%")

Download
Filename: Highest-variations.itf
Downloads: 292
Vivien René Average
Operating in the shadows, I hack problems one by one. My bio is currently encrypted by a complex algorithm. Decryption underway...
Author’s Profile

Comments

Logo Logo
Loading...