logo
Welcome Guest! To enable all features please Login or Register.

Notification

Icon
Error

Options
Go to last post Go to first unread
JimW-DFW  
#1 Posted : Tuesday, September 16, 2008 10:28:20 AM(UTC)
JimW-DFW

Rank: Newbie

Groups: Registered, Registered Users
Joined: 7/28/2008(UTC)
Posts: 4

Read the [censored]I Metastock formula in this months magazine (Stocks and Commodities..), and the formula box said to download (DYNAMIC MOVING AVERAGE DLL FILE) from the forum. I can't find it. Help...
joetrade69  
#2 Posted : Tuesday, September 16, 2008 4:52:16 PM(UTC)
joetrade69

Rank: Advanced Member

Groups: Registered, Registered Users, Unverified Users
Joined: 10/28/2004(UTC)
Posts: 121

I believe the author was referring to the forum.dll.
Click on the Files button in this forum or go to the following link to find the file.
http://forum.equis.com/files/3018/programming_files/entry19695.aspx
minnamor  
#3 Posted : Wednesday, September 17, 2008 11:35:16 PM(UTC)
minnamor

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 4/27/2005(UTC)
Posts: 126
Location: Italy

For those without TASC, would it be possible to reproduce the formula for [censored]I (Metastock is the only software for which code is not given in TASC's Traders' Tips)?

Thanks.

pumrysh  
#4 Posted : Saturday, September 27, 2008 11:17:34 AM(UTC)
pumrysh

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/28/2004(UTC)
Posts: 110

Here are two versions.

The first is one interpreted from the Traders Tips Amibroker version of
the indicator.

The second is the sidebar version which may be available for online download from the magazine's site. The magazine is somewhat notorious for being slow to make it available.

You should note that if you compare the 14 [censored]I to a 7 RSI you will see little difference.

Preston


{[censored]I}
{Asymetrical RSI formula}
{TASC OCT 2008 Vervoort}
{Amibroker Version 1.coded for Metastock}
{constant period version (looks into the future)}
Period:= Input("[censored]I Period",1,100,14);
Chg:=C-Ref(C,-1);
UpCount:=Sum(Chg >= 0,Period);
DnCount:=Period - UpCount;
UpMove:=Mov(Max(Chg,0),LastValue(UpCount)*2-1,E);
DnMove:=Mov(Max(-Chg,0),LastValue(DnCount)*2-1,E);
RS:=UpMove/DnMove;
[censored]I:=100-(100/(1+RS));
[censored]I;

{RSI Asymetrical}
{TASC OCT 2008 Vervoort}
{[censored]I Metastock formula}
{requires Equis Forum DLL available at }
{Eguis Metastock Yahoo Group or the Equis Forum}
Period:= Input("[censored]I Time Period ",1,100,14);
UpCount:=Sum(If(ROC(C,1,$) >= 0,1,0),Period);
DnCount:=Period - UpCount;
UpMove:=ExtFml("Forum.MOV",If(ROC(C,1,$)>=0,ROC(C,1,$),0),UpCount*2-1,e);
DnMove:=ExtFml("Forum.MOV",If(ROC(C,1,$)<0,Abs(ROC(C,1,$)),0),DnCount*2-1,e);
RS:=UpMove/(DnMove + 0.0001);
100-(100/(1+RS));

li2012  
#5 Posted : Thursday, August 15, 2013 10:45:05 PM(UTC)
li2012

Rank: Newbie

Groups: Registered, Registered Users
Joined: 8/15/2013(UTC)
Posts: 2

Hi Joe

I was wondering if you could please give me further guidance in downloading the file from
http://forum.equis.com/files/3018/programming_files/entry19695.aspx.

I downloaded the file into the Local Disc (C:) of my Computer in Wordpad format. If this is not done correctly, would you please show me instructions on downloading the file ?
Thanks very much. I appreciate it.

Sincerely,
Andrew

li2012  
#6 Posted : Thursday, August 15, 2013 10:48:16 PM(UTC)
li2012

Rank: Newbie

Groups: Registered, Registered Users
Joined: 8/15/2013(UTC)
Posts: 2

Hi

I am in the process of downloading the file. I just want to know if you had success downloading the file. If so, would you mind showing me the steps ?

Sincerely,
Andrew
Users browsing this topic
Guest (Hidden)
Forum Jump  
You cannot post new topics in this forum.
You cannot reply to topics in this forum.
You cannot delete your posts in this forum.
You cannot edit your posts in this forum.
You cannot create polls in this forum.
You cannot vote in polls in this forum.