PureBytes Links
Trading Reference Links
|
Hello Tomasz!
I'd like to request a few minor enhancements to AFL interpreter.
1) The AFL buffers (in Guru Comments, indicator builder, etc.) are
limited to about 32Kb [AFL code for my trading system is currently 47K].
Once AFL code is larger, it becomes impossible to edit it in the window (but
still possible to load file). It'd be great if you can make this buffer
*unlimited*
2) Subsequent comments are not recognized, i.e. if I have
/* comment one */
/* comment two */
or
a = b; // comment one
/* comment two */
I get an error message pointing to the leading slash of the
second comment
3) result of Boolean (or any other) operation including an array which
value is {EMPTY} for particular date is {EMPTY}. I think {EMPTY} should be
considered as 0. Example:
sell = exitLongPosition OR enterShortPosition;
If my first trade for the time period is Long, sell will have
{EMPTY} value until my first short trade. 1 in exitLongPosition will be
ignored because of {EMPTY} value of enterShortPosition.
Thank you,
Dima.
|