PureBytes Links
Trading Reference Links
|
MyEma is really just EMA, so just change to EMA
--- In amibroker@xxxxxxxxxxxxxxx, "bistrader" <bistrader@xxx> wrote:
>
> Could do ...
>
> // McClellan Oscillator
> ad=Foreign("!ny-a","Close");
> decl=Foreign("!ny-d","Close");
> mcosc=( MyEma( ad - decl, 19 ) - MyEma( ad - decl, 39 ) );
> // McClellan Summation Index
> mcsum=Cum(mcosc);
>
> And then follow with Plot statement for mcsum
>
> ...
>
> --- In amibroker@xxxxxxxxxxxxxxx, "Michael Dawson" <miketmpb@> wrote:
> >
> > If this is the equation. And you have two symbols as !ny-a (for advance
> > issues) and !ny-d (for declining issues). How does that read both. I am
> > still learning and confused. It keeps giving me error code. I am doing
> > something wrong.
> >
> >
> >
> > /*
> >
> > McClellan Summation Index
> >
> >
> >
> > */
> >
> >
> >
> > Graph0 = Cum( Ema( AdvIssues()-DecIssues(), 19 ) - Ema(
> > AdvIssues()-DecIssues(), 39 ) );
> >
>
------------------------------------
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
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/
|