ProReal has the above indicator. Please help me display the percentage(%) difference from the previous period. Example +15% growth from the previous period.
When you use the standard volatility indicator (Volatility[S, L]), it compares the current volatility period with the previous volatility period. For example:
Volatility[20,20]
This indicator therefore returns the ratio (current volatility period / previous volatility period) expressed as a percentage…
Volatility
1
2
3
4
5
6
7
8
9
Vola=Volatility[20,20]
IfVola>=15then
Signal=1
else
Signal=0
EndIf
ReturnSignalas"Signal"
If you want a signal when the current volatility is more than 15% higher than the previous period, you can use the following indicator:
We use cookies to ensure that we give you the best experience on our website. If you continue to use this site we will assume that you are happy with it.