PureBytes Links
Trading Reference Links
|
The code below, on my TS2K, gives a value of 0.11 for plot1 but if a
plot2(value2) is added then plot1 = 0.1070003510 and plot2 =
0.1069993973. Strange!
******************************************
{Test Indicator, must plot Zero line}
Value1 = 10.387 - 10.280;
Value2 = 10.280 - 10.173;
If Value1 = Value2 Then Value1 = 0;
plot1 (Value1);
******************************************
|