[amibroker] Re: Jurik Moving Average JMA

2006-12-08 Thread carlacash26
Yes, I could share it, if someone is good at both .NET and AFL that 
could code it. Or otherwise efficient in reading code in any 
programming language and AFL.

I'm having a trader/programmer who use .NET to test the indicator, 
I'll get back to you with results as to how good a clone it really 
is. I was told it was made from the JMA dll itself. Can't tell if 
it's true or not at this moment.

/Carlacash26

--- In amibroker@yahoogroups.com, a a [EMAIL PROTECTED] wrote:

 Can you share the .net clone? Maybe somebody can help.
 
 carlacash26 [EMAIL PROTECTED] wrote:  Hi, I'm lookng for a 
JMA clone for Amibroker.
 
 I have gotten a clone but it is written in .NET so I don't know how 
to 
 implement it in AFL.
 
 
 
  
 
   
 -
 Everyone is raving about the all-new Yahoo! Mail beta.





[amibroker] Re: Jurik Moving Average JMA

2006-12-08 Thread carlacash26
I wonder how that formula compares to the other MA's?
Anyone tested it in comparison to HULL, T3, JMA etc?
Is it a good JMA clone?

Would appreciate any results of such a comparison!

/Carlacash


--- In amibroker@yahoogroups.com, brpnw1 [EMAIL PROTECTED] wrote:

 Someone posted this about 3 or 4 years ago, here. I believe the 
 original post may have been deleted. I have never used the real 
JMA, 
 so I have nothing to compare it to, but it does work and is a bit 
 tighter than Tillson's T3. So here it is again --
 
 function JMA( array, per )
 { 
 TN1=MA(array,per); 
 s1=0;
 for( i = 0; i  per; i=i+1 ) 
 {
 s1=s1+((per-(2*i)-1)/2)*Ref(array,-i); 
 } 
 return TN1+(((per/2)+1)*S1)/((per+1)*per);
 } 
 k=Param(Period,15,1,100,1);
 J=JMA(C,k);
 
 ~B
 
 --- In amibroker@yahoogroups.com, carlacash26 carlacash26@ 
 wrote:
 
  Hi, I'm lookng for a JMA clone for Amibroker.
  
  I have gotten a clone but it is written in .NET so I don't know 
 how to 
  implement it in AFL.
 





Re: [amibroker] Re: Jurik Moving Average JMA

2006-12-08 Thread a a
How about the other Jurik Tools. Are there clones for them as well.

carlacash26 [EMAIL PROTECTED] wrote:  I wonder how that formula 
compares to the other MA's?
Anyone tested it in comparison to HULL, T3, JMA etc?
Is it a good JMA clone?

Would appreciate any results of such a comparison!

/Carlacash

--- In amibroker@yahoogroups.com, brpnw1 [EMAIL PROTECTED] wrote:

 Someone posted this about 3 or 4 years ago, here. I believe the 
 original post may have been deleted. I have never used the real 
JMA, 
 so I have nothing to compare it to, but it does work and is a bit 
 tighter than Tillson's T3. So here it is again --
 
 function JMA( array, per )
 { 
 TN1=MA(array,per); 
 s1=0;
 for( i = 0; i  per; i=i+1 ) 
 {
 s1=s1+((per-(2*i)-1)/2)*Ref(array,-i); 
 } 
 return TN1+(((per/2)+1)*S1)/((per+1)*per);
 } 
 k=Param(Period,15,1,100,1);
 J=JMA(C,k);
 
 ~B
 
 --- In amibroker@yahoogroups.com, carlacash26 carlacash26@ 
 wrote:
 
  Hi, I'm lookng for a JMA clone for Amibroker.
  
  I have gotten a clone but it is written in .NET so I don't know 
 how to 
  implement it in AFL.
 




 

 
-
Have a burning question? Go to Yahoo! Answers and get answers from real people 
who know.

[amibroker] Re: Jurik Moving Average JMA

2006-12-08 Thread carlacash26
There is one for the jurik CCI, or what's it called. Also from the 
same source as the JMA. Haven't even looked at that...


--- In amibroker@yahoogroups.com, a a [EMAIL PROTECTED] wrote:

 How about the other Jurik Tools. Are there clones for them as well.
 
 carlacash26 [EMAIL PROTECTED] wrote:  I wonder how that 
formula compares to the other MA's?
 Anyone tested it in comparison to HULL, T3, JMA etc?
 Is it a good JMA clone?
 
 Would appreciate any results of such a comparison!
 
 /Carlacash
 
 --- In amibroker@yahoogroups.com, brpnw1 tradermail@ wrote:
 
  Someone posted this about 3 or 4 years ago, here. I believe the 
  original post may have been deleted. I have never used the real 
 JMA, 
  so I have nothing to compare it to, but it does work and is a bit 
  tighter than Tillson's T3. So here it is again --
  
  function JMA( array, per )
  { 
  TN1=MA(array,per); 
  s1=0;
  for( i = 0; i  per; i=i+1 ) 
  {
  s1=s1+((per-(2*i)-1)/2)*Ref(array,-i); 
  } 
  return TN1+(((per/2)+1)*S1)/((per+1)*per);
  } 
  k=Param(Period,15,1,100,1);
  J=JMA(C,k);
  
  ~B
  
  --- In amibroker@yahoogroups.com, carlacash26 carlacash26@ 
  wrote:
  
   Hi, I'm lookng for a JMA clone for Amibroker.
   
   I have gotten a clone but it is written in .NET so I don't know 
  how to 
   implement it in AFL.
  
 
 
 
 
  
 
  
 -
 Have a burning question? Go to Yahoo! Answers and get answers from 
real people who know.





Re: [amibroker] Re: Jurik Moving Average JMA

2006-12-08 Thread Graham

No idea if this is still available or even works, but check post message #
17539 in amibroker yahoo group


On 08/12/06, carlacash26 [EMAIL PROTECTED] wrote:


There is one for the jurik CCI, or what's it called. Also from the
same source as the JMA. Haven't even looked at that...


--- In amibroker@yahoogroups.com, a a [EMAIL PROTECTED] wrote:

 How about the other Jurik Tools. Are there clones for them as well.

 carlacash26 [EMAIL PROTECTED] wrote:  I wonder how that
formula compares to the other MA's?
 Anyone tested it in comparison to HULL, T3, JMA etc?
 Is it a good JMA clone?

 Would appreciate any results of such a comparison!

 /Carlacash

 --- In amibroker@yahoogroups.com, brpnw1 tradermail@ wrote:
 
  Someone posted this about 3 or 4 years ago, here. I believe the
  original post may have been deleted. I have never used the real
 JMA,
  so I have nothing to compare it to, but it does work and is a bit
  tighter than Tillson's T3. So here it is again --
 
  function JMA( array, per )
  {
  TN1=MA(array,per);
  s1=0;
  for( i = 0; i  per; i=i+1 )
  {
  s1=s1+((per-(2*i)-1)/2)*Ref(array,-i);
  }
  return TN1+(((per/2)+1)*S1)/((per+1)*per);
  }
  k=Param(Period,15,1,100,1);
  J=JMA(C,k);
 
  ~B
 
  --- In amibroker@yahoogroups.com, carlacash26 carlacash26@
  wrote:
  
   Hi, I'm lookng for a JMA clone for Amibroker.
  
   I have gotten a clone but it is written in .NET so I don't know
  how to
   implement it in AFL.
  
 






 -
 Have a burning question? Go to Yahoo! Answers and get answers from
real people who know.





Please note that this group is for discussion between users only.

To get support from AmiBroker please send an e-mail directly to
SUPPORT {at} amibroker.com

For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/

For other support material please check also:
http://www.amibroker.com/support.html

Yahoo! Groups Links







--
Cheers
Graham
AB-Write  Professional AFL Writing Service
Yes, I write AFL code to your requirements
http://www.aflwriting.com