Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
OnMarketData Printing some strange sign
Collapse
X
-
Here is what I came up with. Let me know what you think:
Code:// Tests a Double for Nan or Infinity public static bool IsNanOrInfinity(double value) { return !Double.IsNaN(value) && !Double.IsInfinity(value); } protected override void OnMarketData(MarketDataEventArgs e) { double price = (e.Bid + e.Ask)/2; if(!IsNanOrInfinity(price))return; Print(price); }
Comment
-
swcooke,
This is expected to occur because those market data objects will not always have a value. It would be recommended to wrap you logic up in a wrapper similar to how it is done in the sample here: https://ninjatrader.com/support/help...aeventargs.htmJosh G.NinjaTrader Customer Service
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by argusthome, Yesterday, 10:06 AM
|
0 responses
20 views
0 likes
|
Last Post
by argusthome
Yesterday, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
18 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
14 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
9 views
0 likes
|
Last Post
|
||
|
Started by Mindset, 02-28-2026, 06:16 AM
|
0 responses
38 views
0 likes
|
Last Post
by Mindset
02-28-2026, 06:16 AM
|

Comment