Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Market Position + delay?

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

    Market Position + delay?

    Is it possible to reference Market.Position a bar ago? I would like to have a condition that looks for Market.Position to be Flat a bar ago, but not current bar. Can you have a Flat[1] BoolSeries?
    Thanks

    #2
    Hello kenb2004,

    You can use the TradeCollection to check what position you were in previous but you would have to do a check for what bar that it was on. So it may be easier for you to create a BoolSeries for easier access.
    JCNinjaTrader Customer Service

    Comment


      #3
      So Flat[1] is possible as a BoolSeries?

      Comment


        #4
        Hello kenb2004,

        You would have to create a BoolSeries named Flat but yes it is possible. For Example:

        Code:
        #Variable
        private BoolSeries Flat;
        
        Initialize():
        Flat = new BoolSeries(this);
        
        OnBarUpdate():
        Flat.Set(MarketPosition.Flat == Position.MarketPosition ? true : false);
        JCNinjaTrader Customer Service

        Comment


          #5
          Thanks.....

          Comment

          Latest Posts

          Collapse

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