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 CaptainJack, 05-29-2026, 05:09 AM
|
0 responses
254 views
0 likes
|
Last Post
by CaptainJack
05-29-2026, 05:09 AM
|
||
|
Started by CaptainJack, 05-29-2026, 12:02 AM
|
0 responses
164 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
169 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
251 views
0 likes
|
Last Post
|
||
|
Started by CarlTrading, 05-11-2026, 05:56 AM
|
0 responses
203 views
0 likes
|
Last Post
by CarlTrading
05-11-2026, 05:56 AM
|

Comment