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

Write in graph the period of time used

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

    Write in graph the period of time used

    Hello. Excuse my English.
    I have a 5 minute chart. I want a 5 to be written on the bottom of the graph. If I change the graph to 15 I want 15 to be written, so I always know which graph I'm on.
    Can you guide me how to do it? Thanks.​

    #2
    Hello julifro,

    I am not aware of a existing item that does that but you can create an indicator and use Draw.TextFixed to draw in one of the corners of the chart.



    To get the period value you can use

    Bars.BarsPeriod.Value

    and for the type:

    Bars.BarsPeriod.BarsPeriodTypeName);
    JesseNinjaTrader Customer Service

    Comment


      #3
      This doesn't work when working with multi dataseries

      e.g. my script has

      else if (State == State.Configure)
      {
      AddDataSeries(BarsPeriodType.Minute, 5);
      }

      When I access Bars.BarsPeriod.Value it is ALWAYS "5" and BarsPeriod.BarsPeriodType is always "Minute" even if I'm on a daily chart.

      How do I find out what chart timeframe I'm on???

      Thanks for your help​

      Comment


        #4
        I think I found it - gotta use BarsArray[0].BarsPeriod. ... never mind then

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by algospoke, Yesterday, 06:40 PM
        2 responses
        19 views
        0 likes
        Last Post algospoke  
        Started by ghoul, Today, 06:02 PM
        3 responses
        14 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by jeronymite, 04-12-2024, 04:26 PM
        3 responses
        44 views
        0 likes
        Last Post jeronymite  
        Started by Barry Milan, Yesterday, 10:35 PM
        7 responses
        20 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by AttiM, 02-14-2024, 05:20 PM
        10 responses
        180 views
        0 likes
        Last Post jeronymite  
        Working...
        X