The RealTest script syntax supports three different comment formats:
•C style line-independent comments: /* this is a comment */
•C++ style single-line comments:// this is a comment
•Pascal style curly brace comments: {this is a comment}
Each type of comment ignores the other types.
The editor includes the ability comment or un-comment a block of lines by adding or removing a C++ style comment on each line. It is often convenient to use this feature to comment out some of the strategies in a script while focusing on different ones in your research, then later comment them back in.
A special version of the curly brace comment style is also used in some formulas to specify number formatting in results, graphs, charts and scans.
In addition to the above, RealTest also supports Conditional Comments. See that topic for details.