Discussions
»
Product and Service Development
»
MetaStock
»
Metastock DOS Indicator Parameters - Where?
Rank: Newbie
Groups: Registered, Registered Users Joined: 11/19/2010(UTC) Posts: 1
|
Okay here's one for the old-timers: I have a template in Metastock DOS that is a closing price chart and a Stochastic Indicator. I created the template ages ago and I want to know what the parameters were that I used in the Stochastic. The "canned" parameters are 5,3,3 but I used something much slower, which is easy to see. The problem is I don't recall what they were exactly, and I do not see any way to recall those values. Tech support was pleasant but unable to help.
Does anyone have an idea how I can see what the indicator parameters are on a chart in Metastock DOS?
Thank you.
|
|
|
|
Rank: Advanced Member
Groups: Registered, Registered Users, Subscribers Joined: 7/25/2005(UTC) Posts: 1,042
Was thanked: 57 time(s) in 54 post(s)
|
Hi LT2
I'd suggest that you create a stochastic in whatever the MetaStock Formula Language was back in DOS days (I only go as far back as MS 6.5 for Windows), and change parameters until you can match the canned version. Something along these lines might get you started but the chances are that the following code will not run in the DOS version of MS.
{Stochastic Oscillator (MFL)}
Pd1:=Input("Stochastic Oscillator, %K Time Periods",1,99,10);
Pd2:=Input("%K Smoothing",1,99,3);
Pd3:=Input("%D Smoothing",1,99,3);
StochOsc:=Sum(C-LLV(L,Pd1),Pd2)/
Sum(HHV(H,Pd1)-LLV(L,Pd1),Pd2);
StochOsc;
Mov(StochOsc,Pd3,S);
Notice that the last line is using a "Simple" moving average. The canned version probably allows you to use any one of five types of MA. The Variable MA (initially known as VIDYA) would probably not have been available to the DOS version.
Roy
|
|
|
|
Users browsing this topic |
Guest (Hidden)
|
Discussions
»
Product and Service Development
»
MetaStock
»
Metastock DOS Indicator Parameters - Where?
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.