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

print or fileappend help?



PureBytes Links

Trading Reference Links

  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,"");