PureBytes Links
Trading Reference Links
|
In a message dated 98-03-28 16:11:32 EST, you write:
<< Inputs: IND(Close of Data1), DEP(Close of Data2), Length(25);
Vars: String1("");
Plot1(Correlation(IND, DEP, Length), "Correlation");
Does anyone know how to get the correllation function/indicator to work on
something other than the correllation between to prices. I am trying to get
the indicator to display correlaton between two indicators lets say MA1 and
MA2?
The function is looking for a numeric input, how do I change it to something
other than a price series,
thanks in advance
Jon >>
I think I've figured it out!
Inputs: IND(Average(close,10) of Data1), DEP(Average(close,20) of Data1),
Length(25);
Vars: String1("");
I learned I had to reference the data that the function is calculating from.
Jon
|