Rank: Newbie
Groups: Registered, Registered Users Joined: 1/21/2006(UTC) Posts: 6
|
First, here is the indicator from the Metastock indicator builder list. This is from Equis.
MOVING AVERAGE RIBBON as found in indicator builder.
{ This is a good example of variables and user inputs. It's also an interesting indicator. }
[code:1:6098e65672]Periods := Input("Time Periods", 1, 1000, 20);
Spacing := Input("Spacing", 1, 100, 5);
Ribbons := Input("Ribbons", 1, 12, 12);
BaseMA := Mov(C,Periods+(Spacing*0),S);
If(Ribbons>=2,Mov(C,Periods+(Spacing*1),S),BaseMA);
If(Ribbons>=3,Mov(C,Periods+(Spacing*2),S),BaseMA);
If(Ribbons>=4,Mov(C,Periods+(Spacing*3),S),BaseMA);
If(Ribbons>=5,Mov(C,Periods+(Spacing*4),S),BaseMA);
If(Ribbons>=6,Mov(C,Periods+(Spacing*5),S),BaseMA);
If(Ribbons>=7,Mov(C,Periods+(Spacing*6),S),BaseMA);
If(Ribbons>=8,Mov(C,Periods+(Spacing*7),S),BaseMA);
If(Ribbons>=9,Mov(C,Periods+(Spacing*8),S),BaseMA);
If(Ribbons>=10,Mov(C,Periods+(Spacing*9),S),BaseMA);
If(Ribbons>=11,Mov(C,Periods+(Spacing*10),S),BaseMA);
If(Ribbons>=12,Mov(C,Periods+(Spacing*11),S),BaseMA);[/code:1:6098e65672]
First, has anyone ever made a real time eSignal EFS format version of this indicator? If not, then:
My questions are mainly about the three "Input" lines near the top.
Could anyone explain what the numbers are referring to in the differing inputs?
And explain what the "Time Periods", "Spacing" and "Ribbons" inputs are?
Why 3 numbers in the input lines - for example, 1 , 1000 , 20 in the top input line.
I can understand the rest of the Ribbon formula, but for these input lines.
I would like to convert this to eSignal .efs format to use with real time eSignal.
If no one has already created this as an EFS file, I would highly appreciate assistance if this
indicator can be converted to eSignal .efs file format.
Thanks Very Much,
sdean
bootster91@hotmail.com
|