[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [amibroker] Amibroker EMA vs TS xAverage



PureBytes Links

Trading Reference Links

AB's EMA matches Metastock's  EMA; both use  MA(C,length) to seed the EMA [blame it on Wilder].
 
 AMA(C, SmoothingFactor) should match Xaverage.
 
Bob
 
----- Original Message -----
From: "rop_tre" <rop_tre@xxxxxxxxx>
Sent: Saturday, June 21, 2008 10:27 AM
Subject: [amibroker] Amibroker EMA vs TS xAverage

> Hi everyone,
> Me and some friends traders are trying to see how feasible is to
> transfer our systems from Tradestation to Amibroker.
> We noticed that the results for the Exponential MovAvg in Amibroker
> are different from the Xaverage in Tradestation.
> Is there anyone that can help us translate the TS Xaverage in Amibroker?
>
> the Xaverage code is this:
>
> inputs:
> Price( close ), //this is the value considered for the calc//
> Length( 20 ) ; //This are the periods to calc the Avg//
>
> variables:
> SmoothingFactor( 2 / ( Length + 1 ) ) ;
>
> if CurrentBar = 1 then
> XAverage = Price
> else
> XAverage = XAverage[1] + SmoothingFactor * ( Price - XAverage[1] ) ;
> //the [1] means "one bar ago" - it is comparable to ref in Amibroker//
>
>
> We think that since many systems for TS use the Xaverage function,
> this translation would be very useful for anyone who wants to transfer
> their studies to Amibroker.
> Thank you
>
>
>
>
>
> ------------------------------------
>
> 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
>
> <*> To visit your group on the web, go to:
>   
http://groups.yahoo.com/group/amibroker/
>
> <*> Your email settings:
>    Individual Email | Traditional
>
> <*> To change settings online go to:
>   
http://groups.yahoo.com/group/amibroker/join
>    (Yahoo! ID required)
>
> <*> To change settings via email:
>   
mailto:amibroker-digest@xxxxxxxxxxxxxxx
>   
mailto:amibroker-fullfeatured@xxxxxxxxxxxxxxx
>
> <*> To unsubscribe from this group, send an email to:
>   
amibroker-unsubscribe@xxxxxxxxxxxxxxx
>
> <*> Your use of Yahoo! Groups is subject to:
>   
http://docs.yahoo.com/info/terms/
> __._,_.___

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




Your email settings: Individual Email|Traditional
Change settings via the Web (Yahoo! ID required)
Change settings via email: Switch delivery to Daily Digest | Switch to Fully Featured
Visit Your Group | Yahoo! Groups Terms of Use | Unsubscribe

__,_._,___