----- Original Message -----
Sent: Saturday, January 07, 2006 10:47
AM
Subject: RE: [amibroker] Extra print to
interpretation?
Chuck,
You
can use multiple EnableTextOutput() to turn ON/OFF text output selectively
throughout your code nd/or you can use _N( ) to inhibit text output for a
specific string/statement.
herman
Herman.
Well that turns off all text output to the
interpretation window which is not what I want. I just want to turn
off (what I see as the weird behavior of) printing the output of a text
assignment command. If I say x = 1, that is not printed to the
interpretation window. Why should x = "1"; be so printed?
chuck
----- Original Message -----
Sent: Saturday, January 07, 2006 9:32
AM
Subject: RE: [amibroker] Extra print
to interpretation?
SYNTAX |
EnableTextOuput( enable )
|
RETURNS |
NOTHING |
FUNCTION |
Allows to enable or disable text output in the guru
chart commentary window |
EXAMPLE |
EnableTextOutput(False); variable = "text";
// this won't be written to commentary
window EnableTextOutput(True); |
SEE ALSO |
_N()
function |
When
I put this line in my file:
NQTicker =
"NQH6-Globex-Fut";
AB prints the output to the
interpretation window.
Any way to turn that
off?
Thanks