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 CaptainJack, 05-29-2026, 05:09 AM
    0 responses
    163 views
    0 likes
    Last Post CaptainJack  
    Started by CaptainJack, 05-29-2026, 12:02 AM
    0 responses
    82 views
    0 likes
    Last Post CaptainJack  
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    125 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    206 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    184 views
    0 likes
    Last Post CarlTrading  
    Working...
    X