Rank: Advanced Member
Groups: Registered, Registered Users Joined: 5/22/2005(UTC) Posts: 59
|
Is it possible to write a formula in Meatstock Explorer to find stocks that are currently in "parabolic trend"?
Please help....thanks in advance!
|
|
|
|
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)
|
Parabolic trend (like Guppy describes) cannot be done directly in MS.... but you can look for an increasing rate of change if the price or an indicator that could be equated to a sort of 'parabola'
Try something along the lines of:
threshold:=Input("Acceration lower limit %",-100,100,10)/100;
x:=Mov(C,5,E);
x3:=ROC(x,3,%);
x9:=ROC(x,9,%);
x15:=ROC(x,15,%);
find:=x3>x9 and x9>x15 and x15>Threshold;
find
Hope this helps.
wabbit :D
|
|
|
|
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)
|
... or another way is to use the same period and Ref() it back to see the change in this indicator, something like:
x:=ROC(Mov(C,3,S),5,%);
pds:=Input("Consecutive periods",1,100,5);
Sum(x>Ref(x,-1),pds)=pds
Hope this helps.
wabbit :D
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users Joined: 5/22/2005(UTC) Posts: 59
|
Hi wabbit,
Both HELP!! Many thanks.... :P
|
|
|
|
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.