♥ 0 |
Hi Pete, TOS has Daily Relative Range under “Available” in “Customize” but I don’t see this as an option under Condition Wizard? Is there a way to add this formula and have me enter my own desired threshold % to the scan below? Ex: Daily Relative Range > 80%. Also, I’d like the scans to only pick up stocks that move at least .50% over the previous X days. This way it can avoid stocks that barely move. Thank you close crosses above PriceChannel().”UpperBand” and close is greater than high from 1 bars ago > .10 and MovingAverage(“averageType” = AverageType.EXPONENTIAL, “data” = CLOSE, “length” = 8) is greater than MovingAverage(“averageType” = AverageType.EXPONENTIAL, “data” = CLOSE, “length” = 21) and close is greater than MovingAverage(“data” = CLOSE, “length” = 200) #close crosses below PriceChannel().”LowerBand” and close is less than low from 1 bars ago > .10
Marked as spam
|
Please log in to post questions.
This is how I compute that value. I keep this formula in a spreadsheet on my Google drive so I don't have to remember it:
def percentOfRange = (close - low) / (high - low);