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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    47 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    23 views
    0 likes
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    33 views
    1 like
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    50 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    42 views
    0 likes
    Last Post CarlTrading  
    Working...
    X