mcorgnet:
Hello everyone,
I'd like some help, a formula to "calculate" volatility on bollinger. I assume there is something like "(TopBand - BottomBand) / MiddleBand * XXX" ?
Do someone has an answer ? The idea behind that would be to get an alert when volatility get higher than x% or xvalue (i don't know).
Thanks a lot for your help :)
This is a simple approach, but since chart data is so called "non stationary data" you need some type of reference frame.
So, a value to compare to. You could use two BBs, one with large periods, and one with smaller periods. Then you can use the larger one as your reference frame.
There are multiple options available from statistical algebra, you could use to evaluate value series to each other. Standard deviation, variance, correlation. Each its own chapter, so you will need to do some research on this.
Here a link to what you could do to easily calculate the individual values:
EDIT:
(TopBand - BottomBand) / MiddleBand
This doesn make any sense at all.
Hello
To alert on something, you have to define that something
Standard deviation (bollinger bands) can be a good basis
So, measuring these values against the last X should not be difficult.
The association with the volumes would, in my opinion, be a good thing, because they are the basis of the dispersion which gives the standard deviation
Thanks a lot for your answers, I think I'm going to try with the standard deviation.
If you go through the native ibands function of MQL5, pay attention to the small note on the order of the buffers.
"The buffer numbers are the following: 0 - BASE_LINE, 1 - UPPER_BAND, 2 - LOWER_BAND"
Documentation on MQL5: Technical Indicators / iBands
- www.mql5.com
iBands - Technical Indicators - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
Hello. What if you tried to compare volatility values according to the same principle of a small average and a large average

You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
Hello everyone,
I'd like some help, a formula to "calculate" volatility on bollinger. I assume there is something like "(TopBand - BottomBand) / MiddleBand * XXX" ?
Do someone has an answer ? The idea behind that would be to get an alert when volatility get higher than x% or xvalue (i don't know).
Thanks a lot for your help :)