I am calculating values which I would like to plot as my indicator using the following:
in Initialize() I have:
Add(new Plot(Color.FromKnownColor(KnownColor.Cyan), PlotStyle.Dot, "TD"));
in InBarUpdate() I have:
td = ... ;
TD.Set(td);
My question is as follows. I have set td to be a nullable double type. The idea is that if td is null I should be plotting null values. Can TD.Set(td) handle nullable types?
Thank you.

Comment