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

TickCounter next to latest bar

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

    TickCounter next to latest bar

    Hi there,

    in NT7 i had an indicator which put the number of ticks directly next to the last bar. Im a coding n00b and played abit around with Ninjatrader8 tickcounter but it uses "DrawTextFixed" and i can only use 5 positions and none of those really helps?

    Is there an easy line of code that the tick count at least gets displayed in the center of the chart on the right side instead of top or bottom.

    thanks

    #2
    Hello TimStone,

    Instead of using Draw.TextFixed(), you can use Draw.Text() and this would be in relation to the bar.


    Are you wanting this indicator to work historically or only for real-time bars?

    If real-time only you can set Calculate.OnEachTick so OnBarUpdate updates for each tick.
    Use an int variable to store the number of ticks.
    Increment on trigger of OnBarUpdate and this will count how many times OnBarUpdate has triggered.
    Set the Draw.Text() text to the value of the int variable using a tag unique to that bar.
    (the tag could be something like "tag1"+CurrentBar to be unique to that bar)
    Reset the variable on the first tick of a new bar (after a bar has closed).


    If you are wanting this to work historically, you will need either TickReplay or a secondary series of 1 tick added.
    Chelsea B.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by DJ888, 04-16-2024, 06:09 PM
    4 responses
    12 views
    0 likes
    Last Post DJ888
    by DJ888
     
    Started by terofs, Today, 04:18 PM
    0 responses
    11 views
    0 likes
    Last Post terofs
    by terofs
     
    Started by nandhumca, Today, 03:41 PM
    0 responses
    7 views
    0 likes
    Last Post nandhumca  
    Started by The_Sec, Today, 03:37 PM
    0 responses
    3 views
    0 likes
    Last Post The_Sec
    by The_Sec
     
    Started by GwFutures1988, Today, 02:48 PM
    1 response
    9 views
    0 likes
    Last Post NinjaTrader_Clayton  
    Working...
    X