Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Total Return of a Stock/ETF
Collapse
X
-
Total Return of a Stock/ETF
Is there anyway to get the total return for a stock (including dividends) ?Tags: None
-
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
-
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:
This would loop through the Dividends for this specific instrument.Code:foreach (Dividend dividend in Instrument.MasterInstrument.Dividends) { Print("Date: " + dividend.Date + " Amount: " + dividend.Amount); }
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
-
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
-
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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
164 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
319 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
246 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
350 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
179 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment