PureBytes Links
Trading Reference Links
|
> Anyone know how to subscribe to the Metastock email list?
Send an e-mail to metastock-request@xxxxxxxxxxxxx and put
"subscribe" (without the quotes) in the body of the e-mail.
> Anyone have Keltner channels for metastock?
The multiplier for AvgRange below is up to you, but:
AvgRange:= ATR(10);
MidK:= Mov(CLOSE,5,SIMPLE);
TopK:= MidK + AvgRange*1.5;
BottomK:= MidK - AvgRange*1.5;
TopK; BottomK
|