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

number of down bars

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

    number of down bars

    Hello,

    Can anyone help on this please

    1) if secondary data has 6 consecutive red candles (15m)
    2) if primary data has 3 red candles in a row

    what function can be used on the above.

    Thanks!

    #2
    Hello ashmanz80,

    Thanks for your post.

    If I am understanding correctly you are asking how to detect for the two conditions.

    To detect for a red candle, this would mean that the Close is less than the Open. Using the bars ago referencing you can check to see is for the last 6 bars the Close was less than the open. IE: Close[0] < Open[0] && Close[1] < Open[1] && etc. etc.

    As you are using a multi time frame script you would need to adjust depending on how you have organized your code. For example:

    if (Close[0][0] < Opens[0][0] && Closes[1][0] <Open[1][0], etc, etc. where [0[0] refers to the current bar of the chart bars, [1][0] refers to the surrent bar of the 1st added data series. You may want to refer to this section of the helpguide: https://ninjatrader.com/support/help...nstruments.htm
    Paul H.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by nandhumca, Yesterday, 03:41 PM
    1 response
    12 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by The_Sec, Yesterday, 03:37 PM
    1 response
    11 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by vecnopus, Today, 06:15 AM
    0 responses
    1 view
    0 likes
    Last Post vecnopus  
    Started by Aviram Y, Today, 05:29 AM
    0 responses
    5 views
    0 likes
    Last Post Aviram Y  
    Started by quantismo, 04-17-2024, 05:13 PM
    3 responses
    27 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X