Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Total Return of a Stock/ETF

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

    Total Return of a Stock/ETF

    Is there anyway to get the total return for a stock (including dividends) ?

    #2
    Hello GrumpyTrader,

    Thank you for your note.

    This would need to be calculated manually or through code.

    Comment


      #3
      Thanks Patrick, but how would I do it via code. The issue I have is getting the dividend yield historically. Is there a way to do that?

      Comment


        #4
        Hello,

        The only way I could think you could do this would be to check the BarTime and compare that to the times in the list of Dividends in the MasterInstrument.

        There is no documentation on this so I can not provide much, I can provide the following syntax which would assist in getting the actual values and dates of the dividends for the instrument:

        Code:
        foreach (Dividend dividend in Instrument.MasterInstrument.Dividends)
        {
                Print("Date: " + dividend.Date + " Amount: " + dividend.Amount);
        }
        This would loop through the Dividends for this specific instrument.

        From there you could do other logic such as compare the current Bars Time to see which dividend would apply and then do your calculations as needed from there.

        I look forward to being of further assistance.

        Comment


          #5
          BarChart data

          I noticed that BarChart data comes adjusted for splits and dividends as compared to other providers such as IB, IQFeed, and Kinetick. Does that mean only the historical data is adjusted or the real-time data is adjusted at the BarChart server before being fed to you?

          Comment


            #6
            Hello,

            Yes that would be correct, you can locate which data providers do this already in this document: http://ninjatrader.com/support/helpG...lightsub=split

            Please ensure to ask new questions as new threads in the future.

            I look forward to being of further assistance.

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by Geovanny Suaza, 02-11-2026, 06:32 PM
            0 responses
            571 views
            0 likes
            Last Post Geovanny Suaza  
            Started by Geovanny Suaza, 02-11-2026, 05:51 PM
            0 responses
            331 views
            1 like
            Last Post Geovanny Suaza  
            Started by Mindset, 02-09-2026, 11:44 AM
            0 responses
            101 views
            0 likes
            Last Post Mindset
            by Mindset
             
            Started by Geovanny Suaza, 02-02-2026, 12:30 PM
            0 responses
            549 views
            1 like
            Last Post Geovanny Suaza  
            Started by RFrosty, 01-28-2026, 06:49 PM
            0 responses
            550 views
            1 like
            Last Post RFrosty
            by RFrosty
             
            Working...
            X