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

[amibroker] Re: MACD oscillator



PureBytes Links

Trading Reference Links

--- In amibroker@xxxxxxxxxxxxxxx, "Ron J" <ronj@xxx> wrote:
>
> Could someone post the code for MACD as an oscillator (simple moving
> average)
> 
> Thanks
>

Remember that the inbuilt MACD() uses Exponential Moving Average so 
the below example should be used if you would like it with Simple MA.

//below set with standard values of 12,26,9

_SECTION_BEGIN("MACD Simple MA");
r1 = Param( "Fast avg", 12, 2, 50, 1 );
r2 = Param( "Slow avg", 26, 2, 80, 1 );
r3 = Param( "Signal avg", 9, 2, 80, 1 );

MA1 = MA(C,r1);
MA2 = MA(C,r2);

ml = MA1 - MA2;
sl = MA(ml,r3);

Plot( ml , StrFormat(_SECTION_NAME()+"(%g,%g)", r1, r2), ParamColor
("MACD Color",colorRed),
ParamStyle("MACD style") );
Plot( sl , "Signal" + _PARAM_VALUES(), ParamColor("Signal color",
colorBlue ), ParamStyle("Signal style") );
_SECTION_END();






------------------------------------

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/