debugPrintln() |
Previous Top Next |
debugPrintln( string )
Print a string to the eSignal Formula Output Window and include a carriage return.
Parameters
string |
the text string to be printed |
Usage
function main() {
...
...
if ( isLastBarOnChart() == true ) {
//clear the Formula Output Window
debugClear();
//print a line of text to that window
debugPrintln( "The current close value is: " + close(0) );
}
}