Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 Irukandji, Today, 05:50 AM
    0 responses
    5 views
    0 likes
    Last Post Irukandji  
    Started by ageeholdings, Today, 05:22 AM
    0 responses
    8 views
    0 likes
    Last Post ageeholdings  
    Started by llanqui, 04-28-2024, 10:32 AM
    2 responses
    19 views
    0 likes
    Last Post llanqui
    by llanqui
     
    Started by DroneBlackCa, Today, 05:17 AM
    0 responses
    6 views
    0 likes
    Last Post DroneBlackCa  
    Started by tradingnasdaqprueba, 04-09-2024, 09:52 AM
    7 responses
    50 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X