Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Renko bars directional bar time

Collapse
This topic is closed.
X
X
 
  • Filter
  • Time
  • Show
Clear All
new posts

    Renko bars directional bar time

    I'm trying to create an indicator that measures the time it takes to complete a non-time based bar such as renko or range, but calculate up-close bars separately from down close bars so that I can then calculate the mean time of each over a certain lookback period.

    This code works fine for showing up-bar time lengths, but when I try to apply indicators to it, such as a 10 bar SMA, the SMA returns the SMA of price, not time.

    I'm sure it's something simple, but I've been unable to solve. Many thanks.


    protected override void OnBarUpdate()
    {
    if (CurrentBar<1)
    return;
    if (Close[0] < Open[0])
    return;

    DateTime eTime, pTime;
    if (Bars.FirstBarOfSession)
    Bars.Session.GetNextBeginEnd(Time[0],out pTime,out eTime);
    else
    pTime = Time[1];

    TimeSpan span = Time[0].Subtract(pTime);
    TimePast.Set(span.TotalMinutes);
    }

    #2
    Hello Sparkyboy

    Please ensure to only post your question once, It looks like this is a duplicate question from your other thread: https://ninjatrader.com/support/foru...d.php?t=111418

    As the other thread is being replied to, I will close this thread.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by wzgy0920, 04-20-2024, 06:09 PM
    2 responses
    27 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 02-22-2024, 01:11 AM
    5 responses
    32 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 04-23-2024, 09:53 PM
    2 responses
    65 views
    0 likes
    Last Post wzgy0920  
    Started by Kensonprib, 04-28-2021, 10:11 AM
    5 responses
    193 views
    0 likes
    Last Post Hasadafa  
    Started by GussJ, 03-04-2020, 03:11 PM
    11 responses
    3,235 views
    0 likes
    Last Post xiinteractive  
    Working...
    X