PureBytes Links
Trading Reference Links
|
Try this way :
ATR(1);
Mov(ATR(1),12,S)
or this way :
F:=ATR(1);
Mov(F,12,S)
Regards,
Bob Jagow a écrit :
This
doesn't seem to work.Would especially appreciate a brief answer.
-----Original
Message-----
From: owner-metastock@xxxxxxxxxxxxx
[mailto:owner-metastock@xxxxxxxxxxxxx]On
Behalf Of A.J. Maas
Sent: Thursday, August
24, 2000 3:57 PM
To: metastock@xxxxxxxxxxxxx
Subject: Re: Moving
Average from an indicator
or in a custom formula change the OHLC price to that value
you wish it to count on. For example:ATR(1);Mov(ATR,12,S)will
plot both the ATR based on an one-day C and the SMA based on a 12-day ATR,all
in the one(1) Inner Window.
|