Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
accessing the cumulative volume in t&s window?
Collapse
X
-
is this statistic available through/with ZenFire? I get an error trying to access it...
Comment
-
Found Error
Thanks for the rapid response,
After your response-I revisited this and discovered the error was in the syntax I was using (imagine that-a user error!!)...for those looking for the same thing I was, the working code is something similar to the following:
if (e.MarketDataType == MarketDataType.Last )
{
dvolume = e.MarketData.DailyVolume.Volume;
}
Can you verify this is the best way to get this statistic? Specifically, is it best to use the "last" event to get this?
J.
Comment
-
Keep volume value persistent
Hi,
I display the running volume on the chart. However, after cash close, the volume value resets to ETH volume. I need to keep the RTH value persistent after close and not show the ETH volume at all. How do I do that?
Here is my code (but fails to achieve the above)
Code:protected override void OnMarketData(MarketDataEventArgs e) { if (e.MarketDataType == MarketDataType.DailyVolume) { if (Instrument.MasterInstrument.Name == "ES") { if (ToTime(Time[0]) < 083000) ETHsession = e.Volume; else if (ToTime(Time[0]) >= 083000 && ToTime(Time[0]) < 151459) { RTHsession = e.Volume - ETHsession; tempVol = RTHsession; } else if (ToTime(Time[0]) > 151500) RTHsession = tempVol; } }Last edited by kashter; 08-30-2011, 07:59 PM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Geovanny Suaza, 02-11-2026, 06:32 PM
|
0 responses
580 views
0 likes
|
Last Post
|
||
|
Started by Geovanny Suaza, 02-11-2026, 05:51 PM
|
0 responses
335 views
1 like
|
Last Post
|
||
|
Started by Mindset, 02-09-2026, 11:44 AM
|
0 responses
102 views
0 likes
|
Last Post
by Mindset
02-09-2026, 11:44 AM
|
||
|
Started by Geovanny Suaza, 02-02-2026, 12:30 PM
|
0 responses
554 views
1 like
|
Last Post
|
||
|
Started by RFrosty, 01-28-2026, 06:49 PM
|
0 responses
552 views
1 like
|
Last Post
by RFrosty
01-28-2026, 06:49 PM
|

Comment