Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

implicitly convert type 'double' Error

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

    implicitly convert type 'double' Error

    I am converting an NTv7 strategy to v8 and am getting an, "Cannot implicitly convert type 'double' to 'NinjaTrader.NinjaScript.Series<double>'" error.

    I don't know what is wrong and am looking for help. The relevant code is below.

    Thanks, Tim


    v7
    public class <name> : Strategy
    private DataSeries haClose = null;

    protected override void Initialize()
    haClose = new DataSeries(this);

    protected override void OnBarUpdate()
    haClose.Set((Open[0] + High[0] + Low[0] + Close[0]) * 0.25);

    v8
    public class <name> : Strategy
    private Series<double> haClose = null;

    protected override void OnStateChange()
    haClose = new Series<double>(this, MaximumBarsLookBack.Infinite);

    protected override void OnBarUpdate()
    haClose = (Open[0] + High[0] + Low[0] + Close[0]) * 0.25; <-- Error: Cannot implicitly convert type 'double' to 'NinjaTrader.NinjaScript.Series<double>'

    #2
    Hello NinexTim,

    Series are collections like arrays that are indexed.

    Try haClose[0] =

    Chelsea B.NinjaTrader Customer Service

    Comment


      #3
      That did it! Thank you.

      Comment

      Latest Posts

      Collapse

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