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 sjsj2732, Yesterday, 04:31 AM
    0 responses
    39 views
    0 likes
    Last Post sjsj2732  
    Started by NullPointStrategies, 03-13-2026, 05:17 AM
    0 responses
    290 views
    0 likes
    Last Post NullPointStrategies  
    Started by argusthome, 03-08-2026, 10:06 AM
    0 responses
    289 views
    0 likes
    Last Post argusthome  
    Started by NabilKhattabi, 03-06-2026, 11:18 AM
    0 responses
    135 views
    1 like
    Last Post NabilKhattabi  
    Started by Deep42, 03-06-2026, 12:28 AM
    0 responses
    96 views
    0 likes
    Last Post Deep42
    by Deep42
     
    Working...
    X