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 TraderG23, 12-08-2023, 07:56 AM
        9 responses
        382 views
        1 like
        Last Post Gavini
        by Gavini
         
        Started by oviejo, Today, 12:28 AM
        0 responses
        1 view
        0 likes
        Last Post oviejo
        by oviejo
         
        Started by pechtri, 06-22-2023, 02:31 AM
        10 responses
        125 views
        0 likes
        Last Post Leeroy_Jenkins  
        Started by judysamnt7, 03-13-2023, 09:11 AM
        4 responses
        59 views
        0 likes
        Last Post DynamicTest  
        Started by ScottWalsh, Yesterday, 06:52 PM
        4 responses
        36 views
        0 likes
        Last Post ScottWalsh  
        Working...
        X