PureBytes Links
Trading Reference Links
|
> I am trying to use built-in functions like HighD and Range etc.
> Except that I want to use them on a hidden data which is inserted as
> data item number 2.
Just reference data2 when you call the function, e.g.
plot1(HighD(1), "HD1");
plot2(HighD(1) data2, "HD2");
Also works for other functions like ADX that don't use a passed-in
price value.
Gary
|