if (High[a]-Close[a] != 0.0) double upbar_upwickvol=((High[a]-Close[a])/avgvol);
You won't get a zero divide as long as avgvol is not 0.
If H-C is 0 then (H-C)/avgvol will be 0.
if (avgvol>0) {double upbar_upwickvol=((High[a]-Close[a])/avgvol); double upbar_lowerwickvol=((Open[a]-Low[a])/avgvol); double upbar_realbodyvol=((Close[a]-Open[a])/avgvol); }
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
I suspected that when the value of H=C, O=L or C=O happen in the below equation, the "Zero Divide" error will trigger.
But how can I rectify the coding?
Anyone care to assist?
Thanks and appreciate much.