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, 05-11-2026, 05:56 AM
      0 responses
      58 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      34 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      195 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      360 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      281 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X