Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Displacement in a strategy

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

    #16
    Yes, you could use this overload from DataSeries class.

    DataSeries.Set(int barsAgo, double value)
    You can also set the value for historical bars by including a "barsAgo" value that represents the number of bars ago that you want the double value to be stored at.

    This could be an advantage if both crossing values needed to be based on bars ago values. Since it looks like only one of yours is, this wouldn't offer an advantage over just applying indexing to SMA to make it a double.
    Ryan M.NinjaTrader Customer Service

    Comment


      #17
      Originally posted by MiniDowTrader View Post
      Would it be possible to create a new indicator that would account for the displacement? And then have the "5 SMA" cross the newly created "5 SMA displaced"?

      Just throwing out ideas. I appreciate the help.
      This should work.

      Code:
      private int Displacement = 5; //or whatever you want it to be. Make it a parameter?
      Code:
      ...
      if (CrossAbove(SMA(Weighted, 5), SMA(Weighted, 5)[B][COLOR=Red][Displacement][/COLOR][/B], 1))
                  {
                      EnterLong(DefaultQuantity, "");
                  }
      ...
      and so on.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by charlesugo_1, 05-26-2026, 05:03 PM
      0 responses
      67 views
      0 likes
      Last Post charlesugo_1  
      Started by DannyP96, 05-18-2026, 02:38 PM
      1 response
      149 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 05-11-2026, 05:56 AM
      0 responses
      162 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 05-10-2026, 08:12 PM
      0 responses
      99 views
      0 likes
      Last Post CarlTrading  
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      286 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Working...
      X