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

Notification

Icon
Error

Options
Go to last post Go to first unread
mplwengrud  
#1 Posted : Friday, February 20, 2009 11:09:14 AM(UTC)
mplwengrud

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 11/5/2005(UTC)
Posts: 22

Hi, I would like to know if someone could help me to make my special indicator more responsive.. I like to see the macd move more out side or in side the bb line when reacting to a new direction..

MACDBB

pr := MP();

periods := ExtFml("ASI.HomodyneCyclePeriod",pr);
A1:= ExtFml("ASI.MACD",Pr,periods,periods/2.4);
BBtop:=ExtFml("ASI.BBandTop",A1,periods/3.4,1.0);
BBmid:=A1;
BBbot:= ExtFml("ASI.BBandBot",A1,periods/3.4,1.0);
BBtop;BBmid;BBbot;

Best regards

mike

johnl  
#2 Posted : Friday, February 20, 2009 7:48:02 PM(UTC)
johnl

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/7/2005(UTC)
Posts: 602


What DLL is required to make it work. I thought I had them all?
Thanks.
mplwengrud  
#3 Posted : Saturday, February 21, 2009 2:23:00 AM(UTC)
mplwengrud

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 11/5/2005(UTC)
Posts: 22

Hi johnl..

Try the ACT Toolkit "

Rg mike

johnl  
#4 Posted : Saturday, February 21, 2009 8:20:02 PM(UTC)
johnl

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/7/2005(UTC)
Posts: 602

I understand, it's an add-on. Haven't got it so can't be of help. Sorry.

pumrysh  
#5 Posted : Tuesday, February 24, 2009 10:37:40 AM(UTC)
pumrysh

Rank: Advanced Member

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

Mike,

See if this helps:

{ExtFml( "ASI.BBandBot", Data Array, Periods, deviations)}

{ExtFml( "ASI.MACD", Data Array, Slow Periods, Fast Periods)}

{MACDBB}

Factor1:=Input("BB Factor1",0.1,10,3.4);

Deviations:=Input("BB Deviations",0.1,10,1.0);

pr := MP();

periods := ExtFml("ASI.HomodyneCyclePeriod",pr);

A1:= ExtFml("ASI.MACD",Pr,periods,periods/2.4);

BBtop:=ExtFml("ASI.BBandTop",A1,periods/factor1,deviations);

BBmid:=A1;

BBbot:= ExtFml("ASI.BBandBot",A1,periods/factor1,deviations);

BBtop;BBmid;BBbot; {end}

The first two lines of code are there to help you understand what the ASI DLL is looking for and can be eliminated.

The MACD is usually calculated by

mov( close, 12, E) - mov( close, 26, E)
In the case of this indicator it uses the Homodyne Cycle periods instead.

Periods are later divided by 2.4 in the A1 array and 3.4 in the BBtop and BBbot arrays.

The standard deviations in the BB bands are set to 1.0 which is pretty tight. You may wish to use a little longer period there.

Hope this helps,

Preston

Justin  
#6 Posted : Tuesday, February 24, 2009 11:19:29 AM(UTC)
Justin

Rank: Advanced Member

Groups: Registered, Registered Users, Unverified Users
Joined: 9/13/2004(UTC)
Posts: 673
Location: Salt Lake City, UT

There is an ASI DLL located at:

http://forum.equis.com/files/3018/default.aspx
mplwengrud  
#7 Posted : Wednesday, February 25, 2009 3:22:17 PM(UTC)
mplwengrud

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 11/5/2005(UTC)
Posts: 22

Thanks Preston
It makes easier to adjust, do you have another idea to make a MACD squeeze indicator more
responsive.
Best regards
mike
.
johnl  
#8 Posted : Wednesday, February 25, 2009 5:00:31 PM(UTC)
johnl

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/7/2005(UTC)
Posts: 602

Thanks for the ASI lead. Looks like I do have the DLL in my external DLL folder.
I am missing ASI.HomodyneCyclePeriod. however. The other were found.
No big deal but any thoughts on how come? Thanks.

johnl  
#9 Posted : Wednesday, February 25, 2009 9:05:16 PM(UTC)
johnl

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/7/2005(UTC)
Posts: 602


What might work is to multiple the top and bottom band by say 100, then create
a channel from the mid by adding/subtracting some number (mid+/mid-) and use the
crossover of the top/mid+ and bot/mid- as signals.
mplwengrud  
#10 Posted : Thursday, February 26, 2009 4:14:00 AM(UTC)
mplwengrud

Rank: Member

Groups: Registered, Registered Users, Subscribers
Joined: 11/5/2005(UTC)
Posts: 22

johnl  
#11 Posted : Saturday, February 28, 2009 7:23:58 PM(UTC)
johnl

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 11/7/2005(UTC)
Posts: 602

I went through the video. Problem with making it more responsive is usually
more false signals. I don't have any good answer. I try to use another indicator
for verification of my entry and exit.
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.