Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to program Higher-High Higher-Low

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

    How to program Higher-High Higher-Low

    How to program to identify HH (Higher High) or LL (Lower Low) or LH (Lower High) or Higher Low( HL) above and below each Peak as shown in below chart?
    Attached Files

    #2
    Hi TickJob,

    I am unsure at what level of programmer you are but you can start with our Indicator Development tutorials located in our help guide under the NinjaScript section. This will give you a foundation for programming indicators in NinjaTrader.

    Checking for higher highs can be done like:

    Code:
    if (High[0] > High[1])
        Print("We have a higher high");
    
    if (Low[0] < Low[1])
        Print("We have a lower low");
    RayNinjaTrader Customer Service

    Comment


      #3
      Hi Ray,

      Thanks for your reply. I have some knowledge on C#.
      with reference to my chart, I am looking for the "peak" form by many bars, not next bar higher or lower.

      Comment


        #4
        The Swing indicator will give you values for the most recent peaks and troughs. It will give you a value representing bars ago for most recent swing points.

        Additional reference information is located here - http://www.ninjatrader-support.com/H...eToNinjaTrader
        RayNinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Hwop38, 05-04-2026, 07:02 PM
        0 responses
        164 views
        0 likes
        Last Post Hwop38
        by Hwop38
         
        Started by CaptainJack, 04-24-2026, 11:07 PM
        0 responses
        318 views
        0 likes
        Last Post CaptainJack  
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        246 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        350 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        179 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Working...
        X