Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

strategy help

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

    strategy help

    Hello,I'm working in a strategy that the rule is very simple:
    if today’s close is higher or equal to the highest close in the past 50 days, we buy tomorrow;
    I just wanted to confirm with someone if I'm on the right path using MAX indicator
    or there is another indicator out there to do the same logic,if yes wich ones??

    close(0)>=max(high,50) ,
    enter long
    Thanks in advance for any suggestions and help

    #2
    Hello janio973,

    That would be the correct way to form the condition. You can see an example of using Max here: https://ninjatrader.com/support/help...aximum_max.htm

    Code:
    double maxPrice= MAX(High, 50)[0];
    if(Close[0] >= maxPrice)
    {
        EnterLong();
    }
    This also assumes you are using a daily series, 50 BarsAgo for the lookback period would need daily bars to be 50 days. If you are using a lesser series you would need to calculate how many bars happen per day for that session and then multiply that by 50 days to get the total number of bars lookback needed.
    Last edited by NinjaTrader_Jesse; 08-03-2022, 01:08 PM.

    Comment


      #3
      NinjaTrader_Jesse thanks for your help

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by NullPointStrategies, Yesterday, 05:17 AM
      0 responses
      65 views
      0 likes
      Last Post NullPointStrategies  
      Started by argusthome, 03-08-2026, 10:06 AM
      0 responses
      139 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      75 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      45 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      50 views
      0 likes
      Last Post TheRealMorford  
      Working...
      X