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*); |

Reply via email to