Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

how incoming tick is processed in multi time frame

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

    how incoming tick is processed in multi time frame


    In the Initialzie(), the CalculateOnBarClose is set false, the OnBarUpdate() is called on each incoming tick, it seems my indicator code in (BarsInProgress == 0){} only get processed once per primary bar.

    how to make my indicator being processed on each incoming tick?

    Thanks

    ---------here is the code ---------

    protectedoverridevoid Initialize()
    {
    CalculateOnBarClose =
    false;

    Overlay = true;
    Add(
    "ES 12-11", 1, MarketDataType.Last);

    }
     
    protectedoverridevoid OnBarUpdate()
    {


    if (BarsInProgress == 0){
    Print(CurrentBars[1]+Closes[1][0]+vBars); //<--
    }

    elseif (BarsInProgress == 1)
    {
    vBars = (int)((SMA(Volume, 12)[0] - SMA(Volume, 26)[0])/40);

    }
    Last edited by solvmatic; 11-19-2011, 10:55 PM.

    #2
    On historical bars OnBarUpdate is only called once per bar. With real time bars it is called on each incoming tick.

    Would that account for what you were seeing?

    VT

    Comment


      #3
      VT, yes , with historical chart called once per bar. Thanks for your reply.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      68 views
      0 likes
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      38 views
      0 likes
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      63 views
      1 like
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      62 views
      0 likes
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      53 views
      0 likes
      Last Post CarlTrading  
      Working...
      X