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 NullPointStrategies, Today, 05:17 AM
          0 responses
          39 views
          0 likes
          Last Post NullPointStrategies  
          Started by argusthome, 03-08-2026, 10:06 AM
          0 responses
          124 views
          0 likes
          Last Post argusthome  
          Started by NabilKhattabi, 03-06-2026, 11:18 AM
          0 responses
          64 views
          0 likes
          Last Post NabilKhattabi  
          Started by Deep42, 03-06-2026, 12:28 AM
          0 responses
          41 views
          0 likes
          Last Post Deep42
          by Deep42
           
          Started by TheRealMorford, 03-05-2026, 06:15 PM
          0 responses
          46 views
          0 likes
          Last Post TheRealMorford  
          Working...
          X