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

timer

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

    timer

    Hi how can I use a timer? I want to display orders executed per second.

    Would I accomplish this by adding a Seconds time frame, and then accumulating the orders? If so how can I know to accumulate the ticks from start to finish of each bar?

    #2
    Hello brucelevy,
    Thanks for your post.

    You could count the orders that occur any number of ways depending on where in your code you want to reference the orders. I typically recommend using OnExecution() to base anything off of order executions.



    You can see a sample of how to monitor this method and perform logic based on executions here:


    If you want to accumulate the ticks from each bar you could just add a 1-tick series and then increment an integer on each tick that comes in(although I think that adding a Seconds series would be more useful as a measure of time). A similar concept could be applied to count your orders.

    Code:
    protected override void Initialize()
    {
        Add(PeriodType.Tick,1);
    }
    
    private int tickCounter;
    protected override void OnBarUpdate()
    {
        if(CurrentBars[1]<1)return;
    
        if(BarsInProgress==0 && FirstTickOfBar)
                tickCounter=0;
    
        if(BarsInProgress==1)
        {
            tickCounter++;
            Print("There have been "+tickCounter+" ticks in this candle");
        }
    }
    If you need to implement a timer for your goal you can use the Timer class, TriggerCustomEvent(), and the concepts from the following reference sample to implement a timer:
    https://ninjatrader.com/support/help...to_output_.htm
    https://ninjatrader.com/support/help...ustomevent.htm

    You can read more about the Timer class at the following public MSDN link:
    https://docs.microsoft.com/en-us/dot...ramework-4.7.2
    Last edited by NinjaTrader_JoshG; 03-06-2019, 12:42 PM.
    Josh G.NinjaTrader Customer Service

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by wzgy0920, 04-20-2024, 06:09 PM
    2 responses
    26 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, 02-22-2024, 01:11 AM
    5 responses
    32 views
    0 likes
    Last Post wzgy0920  
    Started by wzgy0920, Yesterday, 09:53 PM
    2 responses
    49 views
    0 likes
    Last Post wzgy0920  
    Started by Kensonprib, 04-28-2021, 10:11 AM
    5 responses
    192 views
    0 likes
    Last Post Hasadafa  
    Started by GussJ, 03-04-2020, 03:11 PM
    11 responses
    3,234 views
    0 likes
    Last Post xiinteractive  
    Working...
    X