Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Help with indicator

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

    Help with indicator

    Hi Guys,

    Could someone help me please develop a verrrry simple indicator.
    You'll see on the attached image that I'd like it to show an indicator if:

    Bar 1 closes on the high and Bar 2 closes on the high i.e. two high closes in a row.
    Bar 3 just so happens to also close on a high as well so it would create another indicator following on from Bar 2.

    The equal an opposite is the case for Bars 4, 5 and 6 i.e. two bars closing on their lows in a row.

    Many thanks,

    Z
    Attached Files

    #2
    Hello zhorny,

    You might want to get started using the strategy wizard condition builder to get a feel for NinjaScript deveopment. You can generate conditions in a point and click interface and view the code. You can also set actions to take when the conditions are true:


    You can't use NinjaTrader to peek into the future. When you're evaluating conditions, you're always comparing to prior bars, not future.

    To check if a bar is equal to the previous bars high, you can use:

    if (Close[0] == High[1])

    For a sequence of this, you can increase the index value by one.

    if (Close[1] == High[2])

    Tutorials for custom indicator development are available here.
    Ryan M.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    589 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    342 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    103 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    555 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    552 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X