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 kinfxhk, 07-14-2026, 09:39 AM
    0 responses
    7 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 10:18 AM
    0 responses
    59 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 09:50 AM
    0 responses
    41 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-13-2026, 07:21 AM
    0 responses
    47 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Started by kinfxhk, 07-11-2026, 02:11 AM
    0 responses
    38 views
    0 likes
    Last Post kinfxhk
    by kinfxhk
     
    Working...
    X