| 
 PureBytes Links 
Trading Reference Links 
 | 
Create an intraday chart with a data1 and a data2 and run the following
simple ShowMe.  Look at the PrintLog.  You will see that value1 does not
equal value2.  Does anyone know why?
Input:	P2 (c data2), Length(20);
value1=Average(P2, Length);
value2=Average(c data2, Length);
print("Average:  ",value1 ,value2 );
if 1=2 then plot1(0, "plot");
>
>Youn may avoid to make calculations in a print statement.
>Calculate your results into some variables ,then do the print statement with
>the variables, and there are chances that they match at this time.
>
>Sincerely,
>
>PierreOrphelin
>www.sitrade.com
> 
 |