[amibroker] New to AFL; help in finding programming expert

2010-03-08 Thread jh2222jh
All, Any recommendations on where to find some help in creating some AFL programming? I'm an institutional investment manager employing tactical shifts based on technical analysis, and have not been employing the power of a tool like AmiBroker. I'm managing portfolios and don't have time to l

[amibroker] Defining logical range

2010-07-09 Thread jh2222jh
Suggestions on how to program the following? "a must be less than b, which must be less than c, etc." I'm optimizing a, b, c, and d, but the numerical value of each must be from smallest to largest, otherwise the optimization is worthless. Therefore it's either true or false, and only optimize

[amibroker] Re: Defining logical range

2010-07-12 Thread jh2222jh
gt; i = Optimize("index", 0, 0, 9, 1); > > > > varA = a[index]; > > varB = b[index]; > > varC = c[index]; > > > > Or, use file operations fopen, fgets, fclose to read the values from > > file based on a single optimized variable (e.g. index). T

[amibroker] Coding question

2010-07-12 Thread jh2222jh
How would I go about creating code to establish that my indicator must be X for Y days before having the appropriate output? Simple example, buy = close above 50 EMA (after holding there for 5 days continuously). Sell when close is below 50 EMA (after holding there for 5 days consecutively). I