CS0201
<< Click to Display Table of Contents >> CS0201 |
The following CS0201 error code information is provided within the context of NinjaScript. The examples provided are only a subset of potential problems that this error code may reflect. In any case, the examples below provide a reference of coding flaw possibilities.
This error can occur when you make a statement solely from an indicator or variable call.
You will need to do something with the value you called for the statement to be complete.
// Erroneous Sample Code - Statement that does nothing
SMA(5)[0];
// Resolution Sample Code - 'currentSMA' takes on the current bar's SMA(5) value
double currentSMA = SMA(5)[0];