Rank: Member
Groups: Registered, Registered Users Joined: 9/13/2006(UTC) Posts: 24
|
Hi!
Could anyone help me with this exploration formulas?
1st formula: The last time that the MA13 crossed up the MA39, and after that event, the price dropped below the M13.
2nd formula: The MA3 MA13 and MA39 are converging up or down, with a variation between them of less than 1%.
Thank you very much
Lord
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 3/7/2005(UTC) Posts: 1,346
|
hey lordv.... you mention exploration formulas, if explorations are truely what you had in mind and your looking for the last time something happened , you'll not want to include anything in the explorations filter section.... the code below could go in any of the explorations columns ....
once the exploration is completed you can click on each security and scroll back in time ... a 1 will be in the column on the day your conditions are true....
and of course the indicator is the same code.... below will plot 1 each time your conditions are true.....h
---------------------------------
a:=Mov(C,13,E)>Mov(C,39,E); aa:=Cross(Mov(C,13,E),C);
a AND aa;
---------------------------------
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers, Unverified Users Joined: 10/28/2004(UTC) Posts: 3,111 Location: Perth, Western Australia
Was thanked: 16 time(s) in 16 post(s)
|
V, I will leave the convergence bit alone... it can get very complicated if you want it to.... Just the value difference can be found using something along the lines of: Code:
MA3:=Mov(C,3,E);
MA13:=Mov(C,13,E);
MA39:=Mov(C,39,E);
hi:=Max(Max(MA3,MA13),MA39);
lo:=Min(Min(MA3,MA13),MA39);
pc:=100*(hi-lo)/lo;
{plot}
pc;
A simple convergence strategy could be to compare the pc value today vs the value on the previous bar, ROC(pc,1,%)<0 but there are many other strategies too. You can put this in an explorer column and use a filter condition to limit the returns, or plot it as an indicator on a chart. Hope this helps. wabbit [:D]
|
|
|
|
Rank: Member
Groups: Registered, Registered Users Joined: 9/13/2006(UTC) Posts: 24
|
Hello hayseed !
That's ok, thank you very much for your answer.
Regards,
Lord
|
|
|
|
Rank: Member
Groups: Registered, Registered Users Joined: 9/13/2006(UTC) Posts: 24
|
Hello wabbit !
Thanks a lot for your answer, but... could you post a complicated one (converge or divergence), so I can choose the one that fits my needs?
Sincerely,
Lord
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers, Unverified Users Joined: 10/28/2004(UTC) Posts: 3,111 Location: Perth, Western Australia
Was thanked: 16 time(s) in 16 post(s)
|
Code:
{simple convergence}
MA3:=Mov(C,3,E);
MA13:=Mov(C,13,E);
MA39:=Mov(C,39,E);
hi:=Max(Max(MA3,MA13),MA39);
lo:=Min(Min(MA3,MA13),MA39);
pc:=100*(hi-lo)/lo;
convergence:=ROC(pc,1,%)<0;
{plot}
convergence;
wabbit [:D]
|
|
|
|
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.