PureBytes Links
Trading Reference Links
|
Robert,
If you're trying to plot a relationship between DJ & S&P Futures, you first
need to define the relationship that you want to gauge. You could use a
proportion like:
Vars: MyRatio(0), MyScale(100);
If Close of Data2 > 0 then MyRatio = (Close of Data1 / Close of Data2) *
MyScale;
You could adjust the "MyScale" factor to something that makes sense and plot
"MyRatio" in a window that has +100 and -100 threshold lines.
_____________________________________
At 01:18 AM 7/28/98 -0500, you wrote:
>
>I have put the Dow Jones Futures as data2 on a chart with the S& P Futures.
>I want to plot when data2 crosses over and under 100 and -100 in the
>subgraph2. I over laid it on the CCI then colored out the CCI and was left
>with OB, OS lines. This changes it from being measured in price to plus or
>minus 100, is this a legal move.
>
>
>I tried this
>
>If data2 crosses above -100 then
>Plot1(L,"Low");
>
>First time I messed with data the power editor is still laughing at this.
>What would be the correct way to
>identify data2.
>
>Thanks In Advance
>
>Robert
>
>
>
|