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

Re: print or fileappend help?



PureBytes Links

Trading Reference Links

A statement like the following should print to a file:

FileAppend( path+"equity.txt",
  numtostr(copen,0) +","+
  numtostr(chigh,0)+","+ 
  numtostr(clow,0)+","+ 
  numtostr(cclose,0)
  +newline);

-----Original Message-----
From: David Cicia <David.D.Cicia@xxxxxxxxxx>
To: omega-list@xxxxxxxxxx <omega-list@xxxxxxxxxx>
Date: October 1, 1998 12:48 PM
Subject: print or fileappend help?


>  I created an indicator based on a multidata chart. I would like to write
>a program to have these same values printed to a file, but have not been
>able to get either a print statement or a fileappend statement to work.
>Anyone have any ideas? (My code is below.)
>
>Thanks,
>David Cicia
>
>Vars: Copen(0), Chigh(0), Clow(0), Cclose(0);
>
>Copen = open of data1 - open of data2;
>chigh = high of data1 - low of data2;
>clow = low of data1 - high of data2;
>cclose = close of data1 - close of data2;
>
>Plot1(copen,"");
>Plot2(chigh,"");
>Plot3(clow,"");
>Plot4(cclose,"");
>
>
>
>