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 Segwin, 05-07-2018, 02:15 PM
      14 responses
      1,789 views
      0 likes
      Last Post aligator  
      Started by Jimmyk, 01-26-2018, 05:19 AM
      6 responses
      837 views
      0 likes
      Last Post emuns
      by emuns
       
      Started by jxs_xrj, 01-12-2020, 09:49 AM
      6 responses
      3,293 views
      1 like
      Last Post jgualdronc  
      Started by Touch-Ups, Today, 10:36 AM
      0 responses
      13 views
      0 likes
      Last Post Touch-Ups  
      Started by geddyisodin, 04-25-2024, 05:20 AM
      11 responses
      63 views
      0 likes
      Last Post halgo_boulder  
      Working...
      X