[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: MS Experts



PureBytes Links

Trading Reference Links

Erich,

Can I ask how you are you "recreating"  each Expert?

You say it takes 3-4 hours per Expert. Are you running some automated
password guessing software or actually doing some sort of manual decoding?
If it is a just a question of time I am sure there are people in the group
who will happily help out if they know the method to use.

John

----- Original Message -----
From: "Erich Kohlhofer" <KohlhoEG@xxxxxxxxxxxx>
To: <metastock@xxxxxxxxxxxxx>
Sent: Wednesday, April 04, 2001 7:16 AM
Subject: MS Experts


> Gents, thanks for the response, I was curious to see what I would get. I
> have never had so many e-mails all at once. It seems to me that most of
> you want everything for nothing. Some are even quite arrogant about it.
> On the other hand others are willing to swop info or ideas, thankyou for
> that.
>
> Since it takes me about 3-4 hours to recreate each expert, it is quite
> time consuming. For instnce I have not looked at the S Kase or Bill
> Williams ones. Since there was quite some interest in these I will look
> at them in due course.
>
> Due to the volume of mail, I cannot respond to everyone. I will respond
> if you have something interesting for me. So just to keep everyone happy
> here is the code for the Gil Raff MarketSpace Timing System. Remember
> your data must be in weekly format.
>
> Primary Buy Signal
>
> ((MACD()>Mov(MACD(),9,E) AND C>Mov(C,5,E) AND C>Mov(C,15,E))=TRUE) AND
> (Ref(MACD()>Mov(MACD(),9,E) AND C>Mov(C,5,E) AND
> C>Mov(C,15,E),-1)=FALSE)
> AND
> BarsSince(Ref( ((MACD()>Mov(MACD(),9,E) AND C>Mov(C,5,E) AND
> C>Mov(C,15,E))=TRUE) AND (Ref(MACD()>Mov(MACD(),9,E) AND C>Mov(C,5,E)
> AND C>Mov(C,15,E),-1)=FALSE),-1))
> >=
> BarsSince(Ref(Cross(0.955*Ref(C,-2),C),-1))
>
> Primary Sell Signal
>
> Cross(0.955*Ref(C,-2),C) AND
> BarsSince(((MACD()>Mov(MACD(),9,E) AND C>Mov(C,5,E) AND
> C>Mov(C,15,E))=TRUE) AND (Ref(MACD()>Mov(MACD(),9,E) AND C>Mov(C,5,E)
> AND C>Mov(C,15,E),-1)=FALSE))
> <=
> BarsSince(Ref(Cross(0.955*Ref(C,-2),C),-1))
>
> and the MarketSpace Stock System which works with dayly data.
>
> Primary Buy Signal
>
> ((MACD()>Mov(MACD(),45,E) AND C>Mov(C,25,E))=TRUE) AND
> (Ref(MACD()>Mov(MACD(),45,E) AND C>Mov(C,25,E),-1)=FALSE) AND
> BarsSince(Ref(((MACD()>Mov(MACD(),45,E) AND C>Mov(C,25,E))=TRUE) AND
> (Ref(MACD()>Mov(MACD(),45,E) AND C>Mov(C,25,E),-1)=FALSE),-1)) >=
> BarsSince(Ref(Cross(0.9*Ref(C,-7),C),-1))
>
> Primary Sell Signal
>
> (Cross(0.9*Ref(C,-7),C) AND BarsSince(((MACD()>Mov(MACD(),45,E) AND
> C>Mov(C,25,E))=TRUE) AND (Ref(MACD()>Mov(MACD(),45,E) AND
> C>Mov(C,25,E),-1)=FALSE))<= BarsSince(Ref(Cross(0.9*Ref(C,-7),C),-1)))
>
> Regards
> Erich