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 argusthome, 03-08-2026, 10:06 AM
      0 responses
      61 views
      0 likes
      Last Post argusthome  
      Started by NabilKhattabi, 03-06-2026, 11:18 AM
      0 responses
      40 views
      0 likes
      Last Post NabilKhattabi  
      Started by Deep42, 03-06-2026, 12:28 AM
      0 responses
      21 views
      0 likes
      Last Post Deep42
      by Deep42
       
      Started by TheRealMorford, 03-05-2026, 06:15 PM
      0 responses
      23 views
      0 likes
      Last Post TheRealMorford  
      Started by Mindset, 02-28-2026, 06:16 AM
      0 responses
      51 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Working...
      X