CS1525
<< Click to Display Table of Contents >> CS1525 |
The following CS1525 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.
The compiler detected an invalid character in an expression.
// Erroneous Sample Code - If statement is not opened
protected override void OnBarUpdate()
{
if(IsFirstTickOfBar)
}
// Resolution Sample Code - If statement is open and closed
protected override void OnBarUpdate()
{
if (IsFirstTickOfBar)
{
// do something
}
}