isRawTick()
isRawTick( [Interval] )
- Interval: Optional. Interval to be checked.
Returns true if the script is currently processing raw tick data (e.g., the script is loaded into a tick chart).
Example:
if ( isRawTick() ) {
debugPrint("Using Tick data.\n");
return;
}