Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Missing the plot

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

    Missing the plot

    (1) I tried the following (add a condition within bracket ) but failed to have the first session plotted.

    {
    if (ToTime(Time[0]) < ToTime(8, 30, 0) || (ToTime(Time[0]) > ToTime(9, 0, 0)))
    return;

    startDateTime1d = new DateTime(Time[0].Year, Time[0].Month, Time[0].Day, 8, 30, 0);
    endDateTime1d = new DateTime(Time[0].Year, Time[0].Month, Time[0].Day, 9, 00, 0);

    int startBarsAgo1d = GetBar( startDateTime1d);
    int endBarsAgo1d = GetBar( endDateTime1d);

    double highestHigh1d = MAX(High, startBarsAgo1d - endBarsAgo1d)[endBarsAgo1d];
    double lowestLow1d = MIN( Low, startBarsAgo1d - endBarsAgo1d)[endBarsAgo1d];

    h1d.Set (highestHigh1d);
    l1d.Set ( lowestLow1d);
    }



    {
    if (ToTime(Time[0]) > ToTime(8, 30, 0))
    return;

    startDateTime1c = new DateTime(Time[0].Year, Time[0].Month, Time[0].Day, 8, 00, 0);
    endDateTime1c = new DateTime(Time[0].Year, Time[0].Month, Time[0].Day, 8, 30, 0);

    int startBarsAgo1c = GetBar( startDateTime1c);
    int endBarsAgo1c = GetBar( endDateTime1c);

    double highestHigh1c = MAX(High, startBarsAgo1c - endBarsAgo1c)[endBarsAgo1c];
    double lowestLow1c = MIN( Low, startBarsAgo1c - endBarsAgo1c)[endBarsAgo1c];

    h1c.Set (highestHigh1c);
    l1c.Set ( lowestLow1c);
    }


    (2) If I switch the two brackets (ie write the code for h1c/l1c first),then the first session was plotted but not the second session. Advice needed.Thanks.
    Attached Files

    #2
    Hello,

    What are the conditions for the brackets ( " { } " )?

    The "return" part of the code ends the block of code and restarts iteration, that, in my opinion, could be it.
    DenNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    566 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    330 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    547 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    548 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X