PureBytes Links
Trading Reference Links
|
Your function Momentum takes two arguments, an array and a lookback
period. Yet, when calling the function, you are not providing any
arguments. i.e.
r = Momentum();
Should probably be something along the lines of:
r = Momentum(Close, 5);
Also, you have an extraneous "/" character at the end of the second
last line. Just delete it.
Mike
--- In amibroker@xxxxxxxxxxxxxxx, "Ken Hendo" <sfehendo@xxx> wrote:
>
> 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
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/
|