Clear screen in Interpretation window

Is there a way to clear the interpreter screen (window) in the interpreter within AFL ?

Just looking to make it easier to take in current information by getting rid of past information.

If you want to output in the Interpretation Window only the information specified in the printf() function (and avoid displaying some other stuff), add at the beginning of the code:

EnableTextOutput(0);

https://www.amibroker.com/guide/afl/enabletextoutput.html
https://www.amibroker.com/guide/afl/printf.html

… but there is no “past information” in the Interpretation Window, because each time the formula is refreshed, all the information is rewritten from scratch.

https://www.amibroker.com/guide/h_commentary.html
https://www.amibroker.com/guide/h_interpret.html

2 Likes

Thanks Milosz.

I didn’t realize that it rewrites from scratch.

Your help pointed me to another looping problem in the code that was causing ever increasing length writes.

1 Like