Scalping volatility screener

Category: Screeners By: throwaway200 Created: February 29, 2016, 8:08 PM
February 29, 2016, 8:08 PM
Screeners
2 Comments

This screener return the volatility of forex pairs on the last 10 bars. Use it on 1 minute timeframe. It checks biggest movers and rank them.

 

//-------------------- DECIMAL CHECK --------------------
IF (Close < 50) THEN
  DigitMultiplier = 10000
ELSE
  DigitMultiplier = 100
ENDIF

xRange = ROUND((Highest[10](High) - Lowest[10](Low)) * DigitMultiplier)

Threshold = (xRange >= 0)

Screener[Threshold](xRange as "M1 x 10")

 

Download
Filename: Volatility.itf
Downloads: 232
throwaway200 New
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...