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

Notification

Icon
Error

Options
Go to last post Go to first unread
gorachand  
#1 Posted : Friday, February 15, 2013 5:52:46 AM(UTC)
gorachand

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 2/19/2012(UTC)
Posts: 106

Thanks: 1 times
Was thanked: 1 time(s) in 1 post(s)
Supposing I want to plot a 5 day moving average of the low and want to extend it for the current price bar and 3 more into the future ---would the MSFL be:-

Ref (Mov(MP(L),5,s),3)

OR

Signal:=Ref(Mov(MP(L),5,S),3);
Defined:=IsDefined(Signal);
Signal:=ExtFml("Forum.Sum",Signal,1);
If(Defined,Signal,Mid(L,5));

Also,

if I replaced Low with typical price would it be:-

Ref (Mov(MP(O+H+L+C)/4),5,s),3)

OR

Signal:=Ref(Mov(MP(O+H+L+C)/4),5,S),3);
Defined:=IsDefined(Signal);
Signal:=ExtFml("Forum.Sum",Signal,1);
If(Defined,Signal,Mid(O+H+L+C)/4,5));

Can someone help?


henry1224  
#2 Posted : Saturday, February 16, 2013 7:44:15 AM(UTC)
henry1224

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 10/29/2004(UTC)
Posts: 1,394
Location: Glastonbury, CT

Was thanked: 2 time(s) in 2 post(s)
Any formula using a FORWARD Ref function, is useless in Metastock!

Metastock does not plot any formula forward into the future, It only plots up to the last bar of collected data!

Using the Forward Ref function,will require that you wait the number of bars forward ref you use!

The only benefit that I could see in using this would be to create some sort of cycle indicator!It could plot past cycles ,peaks or troughs of past events.

Line Studies can be plotted into the future!
eddie.m  
#3 Posted : Wednesday, February 20, 2013 7:36:38 PM(UTC)
eddie.m

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 1/20/2012(UTC)
Posts: 152

Was thanked: 1 time(s) in 1 post(s)

henry1224 wrote:
Any formula using a FORWARD Ref function, is useless in Metastock!

Metastock does not plot any formula forward into the future, It only plots up to the last bar of collected data!

Hi Gora,

Here is the workaround to MS "limitations".

Open your stock in Downloader, and after the last day (2/20/2013) type a new date together with new data of your choice.

Save, and look at your chart in MS. See how your "secret Indicator" is likely to behave tomorrow.

Repeat procedure with several dates & data, until you see what you looked for. When finished, delete all your fictional data, and wait to see the real prices the investing crowd will produce tomorrow.

gabibbo  
#4 Posted : Saturday, February 23, 2013 10:15:44 AM(UTC)
gabibbo

Rank: Member

Groups: Registered, Registered Users
Joined: 1/4/2006(UTC)
Posts: 21

Thanks: 1 times
hi gora,

the most common and useful way to make use of a forward plot is, at the same time, rearwarding the actual (current) data array too and then doing own studies with the forward-indicator/rearward actual data combination...

some cycle analysts make extended use of this approach, at least in visual way... search, for example, for battleplan argument on the Internet.

cheers

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