Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
Multiple Stratergies, one symbol.
Collapse
X
-
-
...more to this...it's not just multiples, I can do it with single strategies as well.
My code looks like this
protected override void OnMarketDepth(MarketDepthEventArgs e)
{
if (Historical)
{
return;
}
bool buy = yada...
bool sell = yada...
if (Position.MarketPosition == MarketPosition.Flat)
{
if (buy)
{
EnterLong();
}
if (sell)
{
EnterShort();
}
}
else
{
if (Position.MarketPosition == MarketPosition.Long && sell)
{
EnterShort();
}
if (Position.MarketPosition == MarketPosition.Short && buy)
{
EnterLong();
}
}
}
It seems that the Historical check sometimes fails when the strategy is started out of session time, leading to the 'Enter' call which throws.
-
I suggest debugging your strategy as per here: http://www.ninjatrader-support.com/v...ead.php?t=3418
Comment
-
Comment
-
Hi CraigC,
Please check out this tip. You are most likely running into this issue: http://www.ninjatrader-support.com/v...ead.php?t=4226Josh P.NinjaTrader Customer Service
Comment
-
I'm not sure what I should checking for NULL, as I only access 'Historical' and 'EnterLong()'. Enter long is a function so I can't check that and 'Historical' is a property on the current strategy instance (which I assume is created otherwise we would not be in the function in the first place) so I can't check it for NULL either. On top of that it is the EnterLong() that is throwing the exception, should not the 'Historical' check have returned true given the setup which I quote I my previous post? Sorry if I'm missing something here.Last edited by CraigC; 06-23-2008, 10:18 PM.
Comment
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by NullPointStrategies, Today, 05:17 AM
|
0 responses
21 views
0 likes
|
Last Post
|
||
|
Started by argusthome, 03-08-2026, 10:06 AM
|
0 responses
120 views
0 likes
|
Last Post
by argusthome
03-08-2026, 10:06 AM
|
||
|
Started by NabilKhattabi, 03-06-2026, 11:18 AM
|
0 responses
63 views
0 likes
|
Last Post
|
||
|
Started by Deep42, 03-06-2026, 12:28 AM
|
0 responses
41 views
0 likes
|
Last Post
by Deep42
03-06-2026, 12:28 AM
|
||
|
Started by TheRealMorford, 03-05-2026, 06:15 PM
|
0 responses
45 views
0 likes
|
Last Post
|

Comment