debugPrint()

ICE Data Services -

debugPrint()
Previous  Top  Next

debugPrint( string )

Print a string to the eSignal Formula Output Window.

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
      debugPrint( "The current close value is: " + close(0) + "\n" );
   }
}