--- In [email protected], "gmorlosky" <[EMAIL PROTECTED]> wrote: > > Where did you find or discover the information that varibale > AAsetting is assigned "Status("action"). Is this deep code > understanding or something us common folk should be able to lookup ?
It's in the user guide and online: http://www.amibroker.com/guide/afl/afl_view.php?id=141 It can also be seen in many code examples. e.g. http://www.amibroker.com/guide/a_custommetrics.html There are actually 6 values with predefined constants you can use in AFL to make your code more readable: actionIndicator = 1 actionCommentary = 2 actionScan = 3 actionExplore = 4 actionBacktest = 5 actionPortfolio = 6 actionPortfolio is used when running a custom backtest. Tuzo
