Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How do I make sure there are no open positions?

Collapse
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    How do I make sure there are no open positions?

    I'm testing out my script and start behavior is set to flat
    Code:
    StartBehavior = StartBehavior.WaitUntilFlat;
    but 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?

    #2
    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:

    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
    
        }
    Please let us know if we can be of further assistance.
    Last edited by NinjaTrader_Jim; 07-22-2019, 09:02 AM.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    43 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    20 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    30 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    47 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    38 views
    0 likes
    Last Post CarlTrading  
    Working...
    X