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

RE: Printing values on a chart - help please



PureBytes Links

Trading Reference Links

Here is some code that I once used to print out values from a program. this
prints out data after every bar. note the use of variables.

If LastBarOnChart then begin

    Print(Printer,"");
	Print(Printer,"   Date:", Date:8:0,"   Time:",Time:4:0, "Symbol=", Symbol);
	Print(Printer,"   Condition1=", Condition1, "   Condition2=", Condition2,"
Condition3=", Condition3, "   Condition6=", Condition6);
	Print(Printer,"   Condition7=", Condition7, "   Condition8=", Condition8,"
Condition10=", Condition10, "   Xav=",  Xav);
End;

-----Original Message-----
From: Joe Bridges [mailto:jgbsys@xxxxxxxxxxx]
Sent: Tuesday, April 04, 2006 4:51 AM
To: Omega-List
Subject: Printing values on a chart - help please




A few years ago I wrote an Indicator that printed the SwingHigh/Low value on
a chart as it happened and can't remember how I did it.

If anyone can help it would be much appreciated.

Thanks,

Joe