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

Re: [amibroker] Three SMA In one AFL file and call it using #Include_once.



PureBytes Links

Trading Reference Links

_SECTION_ functions are inserted and managed AUTOMATICALLY by AmiBroker during drag-drop operation.
They should NOT be put into include files.
 
include files are for user-defined functions. Not for auto-generated drag-drop code.

Best regards,
Tomasz Janeczko
amibroker.com
----- Original Message -----
From: Mohammed
Sent: Tuesday, March 04, 2008 7:06 PM
Subject: [amibroker] Three SMA In one AFL file and call it using #Include_once.

I would like to add three SMA Indicators in one afl file and call it with #include_once function.  But when I change the name in _SECTION_BEGIN , and the length in the Periods it is not change as I wish. If I set the periods to 50 it showing 550.

_SECTION_BEGIN("MA15");
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();

_SECTION_BEGIN("MA50");
P = ParamField("Price field",-1);
Periods = Param("Periods", 50, 2, 200, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();

_SECTION_BEGIN("MA200");
P = ParamField("Price field",-1);
Periods = Param("Periods", 200, 2, 200, 1, 10 );
Plot( MA( P, Periods ), _DEFAULT_NAME(), ParamColor( "Color", colorCycle ), ParamStyle("Style") );
_SECTION_END();

Any Advice Please.

Regards

__._,_.___

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

__,_._,___