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
|
|
|
|
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
//-----------------------
|
|
|
|
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.