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

Notification

Icon
Error

Options
Go to last post Go to first unread
amitabha79  
#1 Posted : Tuesday, June 5, 2007 5:19:13 AM(UTC)
amitabha79

Rank: Newbie

Groups: Registered, Registered Users
Joined: 9/5/2006(UTC)
Posts: 1

Hi ALL,

I'm looking for expert & exploration code of the following

BUY:
WHEN WEEKLY MACD-H IS RAISING
WEEKLY EMA (13) IS RAISING
DAILY MACD-H IS RAISING
DAILY EMA (13) IS RAISING


PLZZZZZZZZZ HELP.THANKS

SirShaveKWSN  
#2 Posted : Tuesday, June 12, 2007 10:09:40 AM(UTC)
SirShaveKWSN

Rank: Member

Groups: Registered, Registered Users
Joined: 9/22/2006(UTC)
Posts: 14

Amita:

For what it's worth, here's some extremely simplistic coding I did some time ago for Elder's "Impulse System" .....

Entry Signal:

AVG:=Mov(Close,13,e);
Hist:=Fml("MACD Histogram");

Avg>Ref(AVG,-1) AND
Hist>Ref(Hist,-1)

Exit Signal:

AVG:=Mov(Close,13,e);
Hist:=Fml("MACD Histogram");

Avg<Ref(AVG,-1) OR
Hist<Ref(Hist,-1)

I had the system tester make entries and exits at the open on the day following the signal.

As I recall, the results I got from testing weren't interesting enough to pursue further ...

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.