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 elirion, Yesterday, 09:32 PM
      0 responses
      6 views
      0 likes
      Last Post elirion
      by elirion
       
      Started by cre8able, Yesterday, 09:15 PM
      1 response
      8 views
      0 likes
      Last Post bltdavid  
      Started by cummish, Yesterday, 08:43 PM
      0 responses
      14 views
      0 likes
      Last Post cummish
      by cummish
       
      Started by Option Whisperer, Yesterday, 07:58 PM
      4 responses
      21 views
      0 likes
      Last Post Option Whisperer  
      Started by ETFVoyageur, 05-07-2024, 07:05 PM
      13 responses
      87 views
      0 likes
      Last Post ETFVoyageur  
      Working...
      X