Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 10/23/2005(UTC) Posts: 45 Location: Savannah
Was thanked: 6 time(s) in 4 post(s)
|
Has anyone written a formula for the Decision Point PMO indicator?
|
1 user thanked TomHam for this useful post.
|
|
|
Rank: Member
Groups: Guests
Joined: 5/6/2007(UTC) Posts: 25
|
Price Momentum Oscillator (PMO) Indicator
{User Input}
pd1:=2/Input("First Smoothing:", 1, 50, 35);
pd2:=2/Input("Second Smoothing:", 1, 50, 20);
pd3:=Input("Signal Line Periods:", 1, 50, 10);
{PMO Calculation}
roc1:=ROC(CLOSE,1,%);
pmo1:=(roc1-PREV)*pd1+PREV;
pmo2:=10*pmo1;
pmo:=(pmo2-PREV)*pd2+PREV;
sig:=Mov(pmo,pd3,E);
{Plot}
pmo;
sig;
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 10/23/2005(UTC) Posts: 45 Location: Savannah
Was thanked: 6 time(s) in 4 post(s)
|
This great. Thanks Khandelia, much appreciated. Wishing you Good Trading. … Tom ...
|
|
|
|
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.