I have created this Indicator based on the concept of mean reversion. The indicator measures the distance from the Moving Average and allows the trader to plot horizontal support and resistance lines based on the historical levels of maximum deviation.
Multiple sets of the indicator can be added based on different Moving Averages. In the example above I have added a set for the 200MA, 50MA and 20MA.
The idea is that if the standard deviation of multiple MA’s are being challenged, the price is likely due a pullback or a possible direction change might be imminent.
Input includes the Moving Average Period as ‘MAPeriod’ (Default is set to 200).
1 2 3 4 |
HDev = average[MAPeriod](close)+1*STD[MAPeriod](average[MAPeriod](close)) LDev = average[MAPeriod](close)-1*STD[MAPeriod](average[MAPeriod](close)) Return HDev-high coloured(255,0,0) AS "Hdev", low-LDev coloured(0,255,0) AS "Ldev", 0 coloured(0,0,0) AS "0" |
Share this
No information on this site is investment advice or a solicitation to buy or sell any financial instrument. Past performance is not indicative of future results. Trading may expose you to risk of loss greater than your deposits and is only suitable for experienced investors who have sufficient financial means to bear such risk.
ProRealTime ITF files and other attachments :PRC is also on YouTube, subscribe to our channel for exclusive content and tutorials
Thanks!
Is it possible to change it to highs and lows rather than open and close?