[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

RE: Language problems causes bugs not to be understood as the bug s they are


  • To: =omega list <omega-list@xxxxxxxxxx>
  • Subject: RE: Language problems causes bugs not to be understood as the bug s they are
  • From: Wayne Mathews <wayne@xxxxxxxxx>
  • Date: Tue, 17 Jul 2001 18:36:56 -0700

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);
******************************************