Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

high & lows

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

    high & lows

    Is there a way to determine what the previous high and low values are?

    #2
    Hello pman777,

    Yes there is. If you are looking for the previous days high and low, NinjaTrader does come with the PriorDayOHLC indicator that you can use. See the link below for more information about the PriorDayOHLC indicator.
    http://www.ninjatrader.com/support/h...r_day_ohlc.htm

    Alternatively, if you are looking for the highest price value over a lookback period you can use the HighestBar() or LowestBar() to get the number of bars ago the value was. For example:

    Code:
    //Gets the number of bars ago the high was in a 15 bar period
    int testval = HighestBar(Close, 15);
    Print("High close price of the last 15 bars is: "+Close[testval]);
    LowestBar(): http://www.ninjatrader.com/support/h...?lowestbar.htm
    HighestBar(): http://www.ninjatrader.com/support/h...highestbar.htm

    Please let me know if I can be of further assistance.
    JCNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by Karado58, 11-26-2012, 02:57 PM
    8 responses
    14,825 views
    0 likes
    Last Post Option Whisperer  
    Started by Option Whisperer, Today, 09:05 AM
    0 responses
    1 view
    0 likes
    Last Post Option Whisperer  
    Started by cre8able, Yesterday, 01:16 PM
    3 responses
    11 views
    0 likes
    Last Post cre8able  
    Started by Harry, 05-02-2018, 01:54 PM
    10 responses
    3,204 views
    0 likes
    Last Post tharton3  
    Started by ChartTourist, Today, 08:22 AM
    0 responses
    6 views
    0 likes
    Last Post ChartTourist  
    Working...
    X