I assume you are using the built-in MA or EMA. It defaults to a max of
200, but you can change this. Right click on the chart and choose Edit Formula.
Look for code like this below, a Simple Moving Average, EMA and others will be
similar.
_SECTION_BEGIN("MA1");
P = ParamField("Price field",-1);
Periods = Param("Periods", 15, 2, 200, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();
Just change the 200 to whatever max you want and click Apply Indicator button.
--
Terry
| -----Original Message-----
| From: amibroker@xxxxxxxxxxxxxxx [mailto:amibroker@xxxxxxxxxxxxxxx] On
| Behalf Of clousemc
| Sent: Tuesday, July 12, 2005 12:07
| To: amibroker@xxxxxxxxxxxxxxx
| Subject: [amibroker] MA period limitation
|
| If adjusting a Moving Average period beyond 200 is possible, would
| someone advise how please?
|
|
|
|
| ------------------------ Yahoo! Groups Sponsor --------------------~--
| >
| Try Online Currency Trading with GFT. Free 50K Demo. Trade
| 24 Hours. Commission-Free.
| http://us.click.yahoo.com/DldnlA/9M2KAA/U1CZAA/GHeqlB/TM
| --------------------------------------------------------------------~-
| >
|
| 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 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/
|
| <*> 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/
|