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 CarlTrading, 03-31-2026, 09:41 PM
    1 response
    152 views
    1 like
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 04-01-2026, 02:41 AM
    0 responses
    87 views
    1 like
    Last Post CarlTrading  
    Started by CaptainJack, 03-31-2026, 11:44 PM
    0 responses
    131 views
    2 likes
    Last Post CaptainJack  
    Started by CarlTrading, 03-30-2026, 11:51 AM
    0 responses
    127 views
    1 like
    Last Post CarlTrading  
    Started by CarlTrading, 03-30-2026, 11:48 AM
    0 responses
    106 views
    0 likes
    Last Post CarlTrading  
    Working...
    X