Floating-Point Division by Zero Error Message

From MultiCharts
Revision as of 16:50, 19 May 2014 by Yankee (talk | contribs)
Jump to navigation Jump to search

Floating-Point Division by Zero Error Message

This error message may pop up in MultiCharts after you've applied a study to your chart. Floating point error means that there is a division by a variable in the code and this variable's value is zero. You need to identify this variable and fix it, or, to make sure that the variable's value is not zero in the code.

To do this please use the Print keyword to check the value of the variables used in the script.

Alternatively, you can deduce it using the following piece of code

Examples

var: vrs(0);

if vrs=0 then raiseruntimeerror("!!!alarm vrs=0");

if vrs<>0 then
	plot1(close/vrs)
else
	plot1(0);