This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// Average True Range Percentage with Wicks | |
// This was hacked together, so everything is hardcoded. I'm open to add more configuration inputs if there is demand for it. | |
// @tansanDOTeth | |
//@version=5 | |
indicator("Average True Range Percent with Wicks", shorttitle = "ATRP with Wicks") | |
// Get user input | |
numberOfDaysForWicks = input.int(title = "Number of Days for Wicks", defval = 360, step = 1, minval = 1, tooltip = "Number of days to calculate highest upper and lower wick relative.") |