StartBehavior = StartBehavior.WaitUntilFlat;
Announcement
Collapse
No announcement yet.
Partner 728x90
Collapse
NinjaTrader
How do I make sure there are no open positions?
Collapse
X
-
How do I make sure there are no open positions?
I'm testing out my script and start behavior is set to flatbut as it is trading, I notice that it is submitting orders based on the logic of my code, which is reversing my positions very quickly. Ideally I want to set an if statement to check for open positions, is there anything like this?Code: -
Hello jertrade,
Thanks for your post.
If you do not want the strategy to calculate a historical position and you always want the strategy to start from a flat position, you can add a check for State.Historical and skip processing in OnBarUpdate. You could also add a User Defined Input to control this check as well. For example:
Please let us know if we can be of further assistance.Code:public class CalculateHistorical : Indicator { protected override void OnStateChange() { if (State == State.SetDefaults) { Name = "CalculateHistorical"; Calculate = Calculate.OnBarClose; CalcHistorical = true; } } protected override void OnBarUpdate() { if (State == State.Historical && !CalcHistorical) return; Print(String.Format("State: {0} CurrentBar: {1}", State, CurrentBar)); } #region Properties [NinjaScriptProperty] [Display(Name="CalcHistorical", Order=1, GroupName="Parameters")] public bool CalcHistorical { get; set; } #endregion }
Last edited by NinjaTrader_Jim; 07-22-2019, 09:02 AM.
Latest Posts
Collapse
| Topics | Statistics | Last Post | ||
|---|---|---|---|---|
|
Started by Mindset, 04-21-2026, 06:46 AM
|
0 responses
87 views
0 likes
|
Last Post
by Mindset
04-21-2026, 06:46 AM
|
||
|
Started by M4ndoo, 04-20-2026, 05:21 PM
|
0 responses
134 views
0 likes
|
Last Post
by M4ndoo
04-20-2026, 05:21 PM
|
||
|
Started by M4ndoo, 04-19-2026, 05:54 PM
|
0 responses
68 views
0 likes
|
Last Post
by M4ndoo
04-19-2026, 05:54 PM
|
||
|
Started by cmoran13, 04-16-2026, 01:02 PM
|
0 responses
118 views
0 likes
|
Last Post
by cmoran13
04-16-2026, 01:02 PM
|
||
|
Started by PaulMohn, 04-10-2026, 11:11 AM
|
0 responses
67 views
0 likes
|
Last Post
by PaulMohn
04-10-2026, 11:11 AM
|

Comment