PureBytes Links
Trading Reference Links
|
I think you are going to need to answer more questions: what's the
period of the CCI? What's the period of the EMA? What does smoothing
of 0.4 mean?
In terms of what I see, the code would, from my point of view, look
like this:
myCCI = CCI(14); //I'm assuming the standard CCI in terms of days
MACCI = MA(myCCI,2);
SmoothedMACCI = EMA(MACCI,4)://I don't know what 0.4 smoothing means
Plot(SmoothedMACII,"MACCI",colorRed);
--- In amibroker@xxxxxxxxxxxxxxx, "jon" <jonowm@xxx> wrote:
>
> Hi there
> I'm a total novice when it comes to AB coding but learning slowly.
> Just wondering if anyone has an idea of how to go about coding the
> following. I came across it on a BB and it intrigued me.
> >>>>
> MACCI is a 3 period SMA of the CCI which is then put through an exp MA
> with smoothing 0.4. I.e Auto regressed @ 40%.
> >>>>
> Is this possible to code?
> Thanks in advance
> Cheers, Jon
>
------------------------------------
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/
|