Syntax
yes
Description
The yes reserved word is used as a value for the boolean input or as the true condition. In order to define the true condition, you can also use 1 or any non-zero number.
Example
input DisplayPlot = yes;
plot Data = close;
Data.SetHiding(!DisplayPlot);
In this study, DisplayPlot input controls visibility of plot. Its default value is yes.