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 chbruno, 04-24-2024, 04:10 PM
        3 responses
        47 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by samish18, Today, 01:01 PM
        1 response
        6 views
        0 likes
        Last Post NinjaTrader_LuisH  
        Started by WHICKED, Today, 12:56 PM
        1 response
        8 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Started by cre8able, Today, 01:16 PM
        0 responses
        3 views
        0 likes
        Last Post cre8able  
        Started by WHICKED, Today, 12:45 PM
        1 response
        11 views
        0 likes
        Last Post NinjaTrader_Gaby  
        Working...
        X