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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    152 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    89 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    131 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    127 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    107 views
    0 likes
    Last Post CarlTrading  
    Working...
    X