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 Hwop38, 05-04-2026, 07:02 PM
|
0 responses
173 views
0 likes
|
Last Post
by Hwop38
05-04-2026, 07:02 PM
|
||
|
Started by CaptainJack, 04-24-2026, 11:07 PM
|
0 responses
328 views
0 likes
|
Last Post
by CaptainJack
04-24-2026, 11:07 PM
|
||
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
252 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
355 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
181 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|

Comment