isDWM()

eSignal EFS 2

isDWM()

Top  Previous  Next

 

isDWM( [interval] )

 

Returns true if the interval passed is a daily, weekly or monthly interval. If no interval is passed, the function uses the interval of the chart in which the script is running.

 

Parameters

 

interval

the interval to check

 

Usage

 

var bBail = false;

var bInit = false;

 

function main() {

 

       if ( bBail==true ) {

               return;

       }

 

       if ( bInit==false ) {

       

               if ( isDWM()==true ) {

                       debugPrint( "Sorry. This script does not run in daily, weekly or monthly charts.\n" );

                       bBail=true;

                       return;

               }

 

               bInit = true;

 

       }

               

       ...

       ...

 

}