Checking for Null References

A common object-oriented programming error is not checking for null references on your object variables. This will cause an "Object reference not set to an instance of an object" error.

For example:

You create a variable that holds an Order object.

private Order entryOrder = null;

But in the OnBarUpdate() method, you do not check if this variable has been assigned an Order object. Thus, when trying to access object properties, it fails and yields the "Object reference not set" error since the variable is null.

protected override void OnBarUpdate()
{
     if (entryOrder.Filled > 0)
         // Do something
}

This will generate an error because you cannot access the object or any of its properties yet. You must always check if an object variable is null before attempting to access the object.

protected override void OnBarUpdate()
{
     if (entryOrder == null)
     {
         entryOrder = EnterLong();
     }
     else if (entryOrder != null)
     {
         if (entryOrder.Filled > 0)
             // Do something
     }
}

ON THIS PAGE