Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Can get the correct Bar High print in the outputwindow

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

    Can get the correct Bar High print in the outputwindow

    Hi there

    I am using the following code to print some indicators as well as the bar High and Low to the output window, however instead of giving me the Bar (Price) high and low I am getting the upper and lower bollinger values?

    //Prints the indicators above to the output window ;
    Print("" + Time[0] + " " + High[0] + " " + Low[0] + " " + bolHigh.ToString("N2") + " " + bolMid.ToString("N2") + " " + bolLow.ToString("N2") + " " + macd.ToString("N3") + " " + macdAvg.ToString("N3") + " " + macdDiff.ToString("N3") + " " + ema50.ToString("N2") + " " + ema200.ToString("N2"));

    what do I need to use to get the price high and low?

    Thanks in advance

    #2
    Hello GKonheisher,
    The below code will give your the print outs of the High and Low of the current bar.

    Code:
    Print("High " + High[0].ToString() + " Low: " + Low[0].ToString());
    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    558 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    324 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    101 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    545 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    547 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X