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

Notification

Icon
Error

Options
Go to last post Go to first unread
fjbceo  
#1 Posted : Saturday, October 25, 2008 8:39:45 PM(UTC)
fjbceo

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 10/25/2008(UTC)
Posts: 2

I am new at this and need formula assistance for a signal exploration for the following

buy signal -----10 period expo mov ave cross above 40 period expo mov avg

sell signal ---------- 10 period expo mov avg cross below 40 period expo mov avg

thanks

VOBiX  
#2 Posted : Thursday, December 18, 2008 4:15:34 AM(UTC)
VOBiX

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 12/18/2008(UTC)
Posts: 7

buy symbol

//----------------------------

a:=Mov(C,10,E);
b:=Mov(C,40,E);

Cross(a,b)

//----------------------------

sell symbol

//--------------------------

a:=Mov(C,10,E);
aa:=Mov(C,40,E);

Cross(b,a)

//-------------------------

exit long symbol

//-----------------------

you didn't mention long exit rules

//-----------------------

exit short symbol

//-----------------------

you didn't mention short exit rules

//-----------------------

fjbceo  
#3 Posted : Sunday, December 28, 2008 6:56:58 PM(UTC)
fjbceo

Rank: Newbie

Groups: Registered, Registered Users, Subscribers
Joined: 10/25/2008(UTC)
Posts: 2

Thank you

It is an entry signal exploration therefore no exits specified

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.