CodeBase error entropy

 

Dear Forum,

 It seems there is an error with an indicator located in: 

https://www.mql5.com/ru/code/8240

There is 0 divide in the experts tab.

Can someone kindly help?

 Regards 

 Thomas

 
Thanks for the answer, but unfortunately, it's not clear to me.
 
You need to hunt down all the division /. If the expression on the right side of the / can be equal to zero then you'll get zero-divide errors. Check the expression to make sure it cannot be equal to zero before you perform a divide. example if( expression != 0){ variable / expression; }
Reason: