Hi,
ProReal has the above indicator. Please help me display the percentage(%) difference from the previous period. Example +15% growth from the previous period.
Regards,
Segie
JSParticipant
Veteran
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…
Vola=Volatility[20,20]
If Vola>=15 then
Signal=1
else
Signal=0
EndIf
Return Signal as "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: