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

Notification

Icon
Error

Options
Go to last post Go to first unread
lcl  
#1 Posted : Thursday, June 9, 2005 7:46:40 AM(UTC)
lcl

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!
wabbit  
#2 Posted : Thursday, June 9, 2005 8:02:35 AM(UTC)
wabbit

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
wabbit  
#3 Posted : Thursday, June 9, 2005 12:47:21 PM(UTC)
wabbit

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
lcl  
#4 Posted : Thursday, June 9, 2005 10:18:03 PM(UTC)
lcl

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.