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 cmoran13, 04-16-2026, 01:02 PM
    0 responses
    43 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    26 views
    0 likes
    Last Post PaulMohn  
    Started by CarlTrading, 03-31-2026, 09:41 PM
    1 response
    163 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    98 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    158 views
    2 likes
    Last Post CaptainJack  
    Working...
    X