PureBytes Links
Trading Reference Links
|
I sort of found the problem. Right now Amibroker says the weekly
time in seconds is 432001 and it used to be 432000. Seems
like something might be a bit off in the timing function there. A
bug has crept in between upgrades.
-ace
--- In amibroker@xxxxxxxxxxxxxxx, "acesheet" <acesheet@xxxx> wrote:
>
> I like to have my MA's and other indicators automatically adapt to
> whether I have a weekly chart or daily chart up so I include a
block
> like this at the beginning of some of my AFL scripts:
>
> periodicity=Interval(0);
> n=15;
> ps=50;
> pl=144;
> pmk=150;
> ps0=65;
> pi0=130;
> pl0=260;
> p5yr=1260;
> pad1=10;
> pad2=63;
> pad3=20;
>
> if (periodicity==432000) // Weekly
> {
> n=3;
> ps=10;
> pl=30;
> ps0=13;
> pi0=26;
> pl0=52;
> pmk=30;
> p5yr=260;
> pad1=2;
> pad2=13;
> pad3=4;
> }
>
> Plot( WMA(Close,ps), "WMA(10wk)", colorRed, styleLine);
> Plot( WMA(Close,pl), "WMA(30wk)", colorBlue, styleThick);
>
>
> This doesn't appear to update the periods anymore such as in the
WMA
> plot command above. What has changed? Have I done something wrong?
>
> - ace
------------------------ Yahoo! Groups Sponsor --------------------~-->
What would our lives be like without music, dance, and theater?
Donate or volunteer in the arts today at Network for Good!
http://us.click.yahoo.com/Tcy2bD/SOnJAA/cosFAA/GHeqlB/TM
--------------------------------------------------------------------~->
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 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/
<*> 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/
|