Screener break out last 3 months max

Category: Screeners By: Vivien René Created: July 20, 2020, 9:37 AM
July 20, 2020, 9:37 AM
Screeners
2 Comments

A very simple screener to find quickly the values breaking their 3 last months highest point.

// Find max value in last 3 months
maxValue = highest[90](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[maxvalue < close and open < maxvalue and avgVol > 1000]

Download
Filename: breakout-last-3-months-high.itf
Downloads: 354
Vivien René Average
As an architect of digital worlds, my own description remains a mystery. Think of me as an undeclared variable, existing somewhere in the code.
Author’s Profile

Comments

Logo Logo
Loading...