Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to get the high & low of the previous 8 CLOSE price values

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

    How to get the high & low of the previous 8 CLOSE price values

    Is this right calls to get the high & low of the previous 8 CLOSE price values. I review the printout and the results are not correct.

    protected override void OnBarUpdate()
    {
    if (CurrentBars[3] < 8) return;

    EMAHigh[0] = High[8];
    EMAMiddle[0] = EMA(Closes[1], Period)[0];
    EMALow[0] = Low[8];

    Print(string.Format("{0}| {1} {2}", Time[0], EMAHigh[0], EMALow[0]));
    }

    #2
    Hello, thanks for writing in. If you want to print all 8 of the values you will need to use a loop e.g.

    for(int i = 8; i > 0; i--)
    {
    Print(High[i]);
    Print(Low[i]);
    }

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Mindset, 04-21-2026, 06:46 AM
    0 responses
    88 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by M4ndoo, 04-20-2026, 05:21 PM
    0 responses
    134 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by M4ndoo, 04-19-2026, 05:54 PM
    0 responses
    68 views
    0 likes
    Last Post M4ndoo
    by M4ndoo
     
    Started by cmoran13, 04-16-2026, 01:02 PM
    0 responses
    118 views
    0 likes
    Last Post cmoran13  
    Started by PaulMohn, 04-10-2026, 11:11 AM
    0 responses
    67 views
    0 likes
    Last Post PaulMohn  
    Working...
    X