protected override void OnMarketData(Data.MarketDataEventArgs marketDataUpdate)
{
if (marketDataUpdate.IsReset)
CurrentValue = double.MinValue;
else if (marketDataUpdate.MarketDataType == Data.MarketDataType.LastClose)
CurrentValue = marketDataUpdate.Price * SharesOutstanding();
}
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Calling an existing Market Analyzer column
Collapse
X
-
Calling an existing Market Analyzer column
I am creating a Column for MarketCap since my data vendor does not supply this information. What is the easiest way for me the call the value of another column from inside of my MarketAnalyzerColumn script? I am trying to get the value of the SharesOutstanding column like this:
Code: -
Hello swcooke,
There is no means to communicate between columns like this, you would just need to include the SharesOutstanding calculation in your custom column.
You can open the existing column to view its code and copy/paste it into yours. Following that you could make any modifications necessary to use the value how you wanted, for example you don't need to set CurrentValue to this value, you can make a variable for sharesoutstanding and then use it in your calculation that you have shown.
I look forward to being of further assistance.
-
That's easy enough, thanks!
Just one follow up question: Are symbol lists available to scripts? In other words, is there a way to call a function which returns the 500 symbols of the S&P or perhaps returns the symbols that are currently part of the NYSE Top Losers hot list?
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
335 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
211 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 12:02 AM
|
||
|
Started by charlesugo_1, 05-26-2026, 05:03 PM
|
0 responses
196 views
1 like
|
Last Post
by charlesugo_1
05-26-2026, 05:03 PM
|
||
|
Started by DannyP96, 05-18-2026, 02:38 PM
|
1 response
288 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
245 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment