debugPrintln() |
Top Previous Next |
debugPrintln( string )
Print a string to the eSignal Formula Output Window and include a carriage return.
Parameters
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) ); }
}
|