Sample code below:
string[] ReadMeLater = new string[];
if (Open[1] > 25)
{
//Type something below that will copy the text into the "ReadMeLater" string array.
"The OPEN was greater than the assigned number."
}
if (Close[1] < 399)
{
//Type something below that will copy the text into the "ReadMeLater" string array.
"The CLOSE was less than than the upper range."
}
I would then like to print both entries in the array to the Output Window when needed. I need to have each entry appear on its own line.
Example of what should appear in Output Window:
The OPEN was greater than the assigned number.
The CLOSE was less than than the upper range.
FYI, the array will contain many entries. A lot more than two. : )
Thanks in advance.

Comment