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 SalmaTrader, 07-07-2026, 10:26 PM
    0 responses
    31 views
    0 likes
    Last Post SalmaTrader  
    Started by CarlTrading, 07-05-2026, 01:16 PM
    0 responses
    19 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 06-17-2026, 10:32 AM
    0 responses
    9 views
    0 likes
    Last Post CaptainJack  
    Started by kinfxhk, 06-17-2026, 04:15 AM
    0 responses
    17 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 06-17-2026, 04:06 AM
    0 responses
    20 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X