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

Notification

Icon
Error

Options
Go to last post Go to first unread
sdean  
#1 Posted : Tuesday, January 24, 2006 6:32:06 PM(UTC)
sdean

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
StorkBite  
#2 Posted : Tuesday, January 24, 2006 8:04:30 PM(UTC)
StorkBite

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 3/19/2005(UTC)
Posts: 2,995

Was thanked: 14 time(s) in 10 post(s)
Hey sdean- Welcome to the forum! Answers to these questions and more are available in the formula primer here: http://forum.equis.com/d..._file_view&cat=10&file=1
Quote:
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.
Sorry, I can't help you with this one...
hayseed  
#3 Posted : Tuesday, January 24, 2006 9:51:08 PM(UTC)
hayseed

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 3/7/2005(UTC)
Posts: 1,346

hey dean.... esignal has a ma ribbon also.... users over there have posted quite a few.... the 3 numbers are refering to values allowed for the input.... the first, often a 1, will be the lowest allowed.... the second, always the largest, will be the highest allowed.... the third will be the default setting..... so in your equis example , Periods := Input("Time Periods", 1, 1000, 20); , the default setting is 20 .... the other inputs follow that line of thinking.... the default setting should be given careful consideration for several reasons.... metastock includes that indicator in its standard list.... the ma's can have differing colors.... its similar to stockcharts version.... you can create those with most any free chart supplier if you know their coding system....h
sdean  
#4 Posted : Tuesday, January 24, 2006 10:05:56 PM(UTC)
sdean

Rank: Newbie

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

hayseed, or anybody else, Thanks for the reply on ma ribbons. I'll check my eSignal for ma ribbons, but ? do not recalll seeing them. Could you easily direct me to them? Are you refering to the Keltner studies in the file sharing section? Also, just so I understand the ma ribbon in Metastock, the "spacing" line is just "adjusting" the original line based on the input of (1,1000,20) so that all of the lines are based on that (1,100,20) input - 20 being the base ma? And then adjusting the line based on a multiple of the spacing? Sort of ? Am I getting the idea correct? Thanks much sdean
Jose  
#5 Posted : Tuesday, January 24, 2006 10:15:44 PM(UTC)
Jose

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 1/19/2005(UTC)
Posts: 1,065
Location: Koh Pha-Ngan, Earth

Was thanked: 2 time(s) in 2 post(s)
Rainbow multiple multi-colored Moving Averages look really pretty on price charts. They also give the impression that there may be some useful information to be gleamed if we look at the relationship of component MAs long enough. Too bad that the introduced lag renders them useless for trading... jose '-)
sdean  
#6 Posted : Tuesday, January 24, 2006 10:24:32 PM(UTC)
sdean

Rank: Newbie

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

Jose, I have not used this indicator in eSignal, but in Metastock, If one identifies a place where the lines are very tight, then it is VERY likely that a significant move is upcoming. I have used the indicator with Time Series Forecast and the Simple MA in the Metastock Indicator builder, and both work well. For trading in eSignal you might be right. I would look to use it the same way possibly - when the lines are very tight a significant move should follow, if it works the same. Thanks for chiming in!
Jose  
#7 Posted : Tuesday, January 24, 2006 10:53:43 PM(UTC)
Jose

Rank: Advanced Member

Groups: Registered, Registered Users
Joined: 1/19/2005(UTC)
Posts: 1,065
Location: Koh Pha-Ngan, Earth

Was thanked: 2 time(s) in 2 post(s)
True, when the multiple MA lines are very tight, that usually indicates a change of trend. But replace the MMAs with a mid-period EMA, and you will see the same chart warning when the EMA changes direction - and with less lag. jose '-)
sdean  
#8 Posted : Wednesday, January 25, 2006 12:24:38 AM(UTC)
sdean

Rank: Newbie

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

Thanks Jose, I'll try a few different periods and take a look at EMA. Try it with Time Series Forecast, if you like.
hayseed  
#9 Posted : Wednesday, January 25, 2006 12:58:03 AM(UTC)
hayseed

Rank: Advanced Member

Groups: Registered, Registered Users, Subscribers
Joined: 3/7/2005(UTC)
Posts: 1,346

hey dean.... yes it was in the file sharing and a girl was doing the posting.... can't recall her name but she had one of the highest rating's.... i have many of her charts somewhere , will look it up..... if lag is an issue you can set the time period to 1......h oppps, forgot one of your questions...... jose's use of the term "useless" caused me to loose my train of thought.... yes, the spacing is used to set the standoff of each line.... if your using the indicator on weekly charts you might like to set the space closer.... so the settings might be 10,1,12 or something similar.....h
sdean  
#10 Posted : Wednesday, January 25, 2006 9:45:04 PM(UTC)
sdean

Rank: Newbie

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

hayseed, Thanks for the info on the MA ribbon. I have looked in the file sharing on eSignal and could not find it. I'll look for a female. If you happen to run across the info it would be appreciated. dean
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.