Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

to check if condition occured in lat 8 bars

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

    to check if condition occured in lat 8 bars

    HI i have a condition below that evaluates a imbalanceLongHTF condition to true. How can i add aditional logic to determine if imbalanceLongHTF occured in the last 6 bars?

    if(((Close[2] > Open[2] || Close[2] < Open[2])
    && Close[1] > Open[1] && (Close[0] > Open[0] || Close[0] < Open[0])) &&
    Low[0] > High[2] && (Math.Abs(Low[0] - High[2]) >= 2))
    {
    longimbalanceHTFTopLevel = Low[0];
    longimbalanceHTFBotLevel = High[2];
    imbalanceLongHTF = true;

    }​

    #2
    First, you could shorten some of your code:
    From (Close[2] > Open[2] || Close[2] < Open[2])
    To Close[2] != Open[2]
    And from (Close[0] > Open[0] || Close[0] < Open[0])
    To Close[0] != Open[0]

    Then you might need to modify Math.Abs(Low[0] - High[2]) >= 2)
    To Math.Abs(Low[0] - High[2]) >= 2*TickSize) if that is what you actually wanted.

    Then you could use a bool series: private Series<bool> ImbalanceLongSeries;

    When you test imbalanceLongHTF = true; you can store it in the series ImbalanceLongSeries[0] = true;
    Ex.
    if(imbalanceLongHTF)
    ImbalanceLongSeries[0] = true;
    else
    ImbalanceLongSeries[0] = false;

    Then loop through the last 6 bars to check for any true condition.
    eDanny
    NinjaTrader Ecosystem Vendor - Integrity Traders

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by BIOK.NT, Today, 09:10 AM
    1 response
    2 views
    0 likes
    Last Post NinjaTrader_Jesse  
    Started by MatthewLesko, 03-23-2025, 07:38 AM
    4 responses
    31 views
    0 likes
    Last Post MatthewLesko  
    Started by gyilaoliver, Today, 08:28 AM
    7 responses
    15 views
    0 likes
    Last Post gyilaoliver  
    Started by Darkslide_Tom, 03-23-2025, 11:08 PM
    3 responses
    17 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Started by rtwave, 03-13-2025, 04:09 PM
    4 responses
    29 views
    0 likes
    Last Post NinjaTrader_Gaby  
    Working...
    X