PureBytes Links
Trading Reference Links
|
Ole Finne Gamnes wrote:
Thanks.
For this to work all the indicators have to be evaluated first
then?
Any possibility of only having the indicators that are actually
chosen to be evaluated (thus saving computation time)?
h3po
list = ParamList("indicator", "RSI,CCI,MACD");
if(List
== "RSI")
{
indicator = RSI();
_TRACE(List);
}
if(List
== "CCI")
{
indicator = CCI();
_TRACE(List);
}
if(List
== "MACD")
{
indicator = MACD();
_TRACE(List);
}
Plot(Indicator,
List, colorRed);
__._,_.___
**** IMPORTANT PLEASE READ ****
This group is for the discussion between users only.
This is *NOT* technical support channel.
TO GET TECHNICAL SUPPORT send an e-mail directly to
SUPPORT {at} amibroker.com
TO SUBMIT SUGGESTIONS please use FEEDBACK CENTER at
http://www.amibroker.com/feedback/
(submissions sent via other channels won't be considered)
For NEW RELEASE ANNOUNCEMENTS and other news always check DEVLOG:
http://www.amibroker.com/devlog/
__,_._,___
|
|