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: 291
Vivien René Average
This author is like an anonymous function, present but not directly identifiable. More details on this code architect as soon as they exit 'incognito' mode.
Author’s Profile

Comments

Logo Logo
Loading...