PureBytes Links
Trading Reference Links
|
I'm sure Gary is right -- the Spread (x-y) that I posted is an ADV/DCL
indicator (using @NA & @ND) that I use for Intraday NYSE trading. Apologies
for any confusion...
--------------------------------------------
At 04:59 PM 3/29/98 -0800, you wrote:
>
>I think the A/D line is the sum all (ADV - DECL), so spread (x - y)
>will only show you the daily changes in the A/D line and will jump
>back/forth across 0. You might try something like this, instead:
>
>{ indicator AD_Line }
>Input: Input1(Close of data2),input2(close of data3);
>var: ad_line(0);
>ad_line = ad_line + input1 - input2;
>Plot1(Ad_Line, "Ad_Line");
>
|