Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

CS0118 Indicator is a type - used as a variable - PriceTypeSupported

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    CS0118 Indicator is a type - used as a variable - PriceTypeSupported

    This thread is mainly to inform people of how I resolved the error code CS0118 as I couldn't find the solution anywhere. Yet I still have questions on why do I need the line
    PriceTypeSupported = true;
    to resolve the error.
    G.
    -------------------------------------------------------------------------------------
    The offending line is in the indicator that includes MyIndicator:
    MyIndicator manyEma = MyIndicator();

    and in MyIndcator I basically have:
    protected override void Initialize() {
    Add(new Plot(Color.Green, "EMA"));
    Plots[0].Pen.Width = 2;
    Plots[0].Pen.DashStyle = DashStyle.Dash;
    PriceTypeSupported = true;
    }
    [Browsable(false)]
    [XmlIgnore()]
    public DataSeries EMAflat { get { return Values[0]; }

    Obviously the NinjaTrader generated code for the cache needs to be re-generate for the error to disappear.

Latest Posts

Collapse

Topics Statistics Last Post
Started by CarlTrading, 03-31-2026, 09:41 PM
1 response
43 views
0 likes
Last Post NinjaTrader_ChelseaB  
Started by CarlTrading, 04-01-2026, 02:41 AM
0 responses
21 views
0 likes
Last Post CarlTrading  
Started by CaptainJack, 03-31-2026, 11:44 PM
0 responses
30 views
1 like
Last Post CaptainJack  
Started by CarlTrading, 03-30-2026, 11:51 AM
0 responses
50 views
0 likes
Last Post CarlTrading  
Started by CarlTrading, 03-30-2026, 11:48 AM
0 responses
40 views
0 likes
Last Post CarlTrading  
Working...
X