PureBytes Links
Trading Reference Links
|
On Thu, 25 Jul 2002, John Clemens wrote:
> Is there a way to display the result of a formula, numerical or text,
> directly on a chart(or screen) in real time so that it would be updating.
> I'm using TS4 but I'd be interested to know if this can be done in any
> version.
>
> John
>
vars: val(0), txtid(0);
val = XAverage(close, 10);
txtid = Text_New(date, time, low - 1, numtostr(val, 2));
|