+1 888 340 6572

RaiseRunTimeError

From MultiCharts
The printable version is no longer supported and may have rendering errors. Please update your browser bookmarks and please use the default browser print function instead.

Generates a run-time error and displays the specified error message.

A run-time error will cause the execution of the study to be aborted.

Usage

RaiseRunTimeError("Message")

Where:

Message - a string expression specifying the error message.

Example

Generate a run-time error and display the message "Strategy Stopped":

RaiseRunTimeError("Strategy Stopped");

Or to generate a run-time error when the user adds an indicator to an unsuited market:

if (Category = 12) then 
	RaiseRunTimeError("This indicator isn't suitable for Forex!");