Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Getting the max price from the past x ticks

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

    Getting the max price from the past x ticks

    I'm trying to get the max price from the past x number of ticks but I just don't know how to write that into the script. Ideally I would want to use something like maxbars = max.bars[5]; and this example would be looking at the past 5 ticks to get the max price, but I am not getting the max price from this and am stuck. Where am I messing up?
    Last edited by jertrade; 07-17-2019, 02:57 PM.

    #2
    Hello jertrade,

    Can you provide more detail about how this code would be used and executed? Are you using a 1 tick series or something else?

    On a 1 tick series, you could just use the Max indicator with a lookback of 5. If you are using a different time frame, you would need to create logic to gather the last 5 ticks and then see which is the biggest number of those 5 numbers. You can do that in a variety of ways, most would involve a loop and a variable which denotes the currently found max value. For this question, I would suggest doing a general web search for C# solutions as well. For example "C# find max value of array" or "C# find max value of List" are a couple of more simple ways to approach this concept.

    If you have tried something which is not working, it also helps to provide a specific example instead of pseudo code.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_Jesse View Post
      On a 1 tick series, you could just use the Max indicator with a lookback of 5. If you are using a different time frame, you would need to create logic to gather the last 5 ticks and then see which is the biggest number of those 5 numbers.
      I am thinking, because I am building a scalping script, about using ticks. I thought about using seconds or minutes but I think that I am going to miss out on too many opportunities. Given this information, what would the syntax be for the Max indicator with a look back of 5 be? I cannot seem to find it.

      Comment


        #4
        Hello jertrade,

        You can find a sample of the MAX here:


        Assuming the series being used is a 1 tick series, the syntax would be the same as the sample replacing the 20 with 5 for your use case.



        I look forward to being of further assistance.
        JesseNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by algospoke, Yesterday, 06:40 PM
        2 responses
        19 views
        0 likes
        Last Post algospoke  
        Started by ghoul, Today, 06:02 PM
        3 responses
        14 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by jeronymite, 04-12-2024, 04:26 PM
        3 responses
        45 views
        0 likes
        Last Post jeronymite  
        Started by Barry Milan, Yesterday, 10:35 PM
        7 responses
        21 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by AttiM, 02-14-2024, 05:20 PM
        10 responses
        181 views
        0 likes
        Last Post jeronymite  
        Working...
        X