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

Re: [amibroker] Assistance with Momentum Indicator - Graphic Format



PureBytes Links

Trading Reference Links

_SECTION_BEGIN("Momentum");

P = ParamField("Price field",-1);

periods = Param("Periods", 10, 2, 200, 1 );

//=================

function Momentum( array, period )

{

return array - Ref( array, -period );

}

//=================

Plot( Momentum( P, periods ),_DEFAULT_NAME(), ParamColor("Color", ColorCycle ) );

//================

r = Momentum (P, periods );

Plot( r, " Momentum ", colorBlue | styleThick);

Plot( 0,"",colorLightGrey, styleLine, 1);

PlotOHLC( r,r,0,r, "", IIf( r < 0 , colorRed ,colorGreen ), styleCloud | styleClipMinMax, 0, 0);

_SECTION_END();


From: Ken Hendo
Sent: Friday, August 29, 2008 12:41 PM
Subject: [amibroker] Assistance with Momentum Indicator - Graphic Format

Hi All

Can someone point me in the correct direction or advise where I am
going wrong with this formular.

Many thanks

Ken

_SECTION_BEGIN("Momentum");
function Momentum( array, period )
{
return array - Ref( array, -period );
}
Plot( Momentum( ParamField( "Field" ), Param("Period", 10, 1, 100 ) ),
_DEFAULT_NAME(), ParamColor("Color", ColorCycle ) );

r = Momentum ();
Plot( r, " Momentum ", colorBlue | styleThick);
Plot( 0,"",colorLightGrey, styleLine, 1);

PlotOHLC( r,r,0,r, // set the midpoint of the chart to 0

"", IIf( r < 0 , colorRed ,// color below 0 set to red
colorGreen // color above 0 is green
), styleCloud | styleClipMinMax, 0, 0); /
_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




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

__,_._,___