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 jxs_xrj, 01-12-2020, 09:49 AM
      6 responses
      3,290 views
      1 like
      Last Post jgualdronc  
      Started by Touch-Ups, Today, 10:36 AM
      0 responses
      8 views
      0 likes
      Last Post Touch-Ups  
      Started by geddyisodin, 04-25-2024, 05:20 AM
      11 responses
      61 views
      0 likes
      Last Post halgo_boulder  
      Started by Option Whisperer, Today, 09:55 AM
      0 responses
      8 views
      0 likes
      Last Post Option Whisperer  
      Started by halgo_boulder, 04-20-2024, 08:44 AM
      2 responses
      24 views
      0 likes
      Last Post halgo_boulder  
      Working...
      X