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
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...