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

plot-time

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

    plot-time

    Hello,

    I can plot my lines accessing bars or time, both for current day. But I could not find how I can plot the day before and 2 days ago.

    What do I have to change in the code please for having this line plotted on the chart not today but yesterday and the day before please:

    Today (works ok): Draw.Line(this, "pivot0", false, new DateTime(Time[0].Year, Time[0].Month, Time[0].Day, 9, 00, 0), pivot0, new DateTime(Time[0].Year, Time[0].Month, Time[0].Day, 22, 00, 0), pivot0, Brushes.Green, DashStyleHelper.Solid, 2);

    Yesterday: Draw.Line(this, "pivot1", false, ???, pivot1, ???, pivot1, Brushes.Green, DashStyleHelper.Solid, 2);
    2 days ago: Draw.Line(this, "pivot2", false, ???, pivot2, ???, pivot2, Brushes.Blue, DashStyleHelper.Solid, 2);

    Thank you!
    Tony

    #2
    Hello tonynt,

    Thank you for your post.

    You could use DateTime.AddDays to add a negative number of days to the current time and use those values to plot your lines:

    Returns a new DateTime that adds the specified number of days to the value of this instance.


    DateTime OneDayAgo = Time[0].AddDays(-1);

    DateTime TwoDaysAgo = Time[0].AddDays(-2);

    You can then use that to build a DateTime like you have in your example.

    Please let us know if we may be of further assistance to you.
    Kate W.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by usazencort, Today, 01:16 AM
    0 responses
    1 view
    0 likes
    Last Post usazencort  
    Started by kaywai, 09-01-2023, 08:44 PM
    5 responses
    603 views
    0 likes
    Last Post NinjaTrader_Jason  
    Started by xiinteractive, 04-09-2024, 08:08 AM
    6 responses
    22 views
    0 likes
    Last Post xiinteractive  
    Started by Pattontje, Yesterday, 02:10 PM
    2 responses
    21 views
    0 likes
    Last Post Pattontje  
    Started by flybuzz, 04-21-2024, 04:07 PM
    17 responses
    230 views
    0 likes
    Last Post TradingLoss  
    Working...
    X