Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Not calculating indicator for last bar painted

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

    Not calculating indicator for last bar painted

    I am using a simple crossover system, and have for example inside OBU:

    Code:
    if (CurrentBar<emalenlow)
                     return;
    
    emalow[0]= EMA(Low, emalenlow)[0];
    In the SetDefaults I am using:
    Code:
        AddPlot(Brushes.Red, "emalow");
    And in #region Properties, have:
    Code:
    [Browsable(false)]
            [XmlIgnore]
            public Series<double> emalow
            {
                get { return Values[0]; }
            }
    But on the chart there is no ema value on the last bar drawn, only up to the second last bar. Is there something I need to modify?

    #2
    Hello pel11,

    Thank you for the post.

    What is your CalculationMode currently set to? If you are using OnBarClose, the building bar is not included because it is not yet closed. Using OnEachTick or OnPriceChange would allow the Building bar to be used.

    I look forward to being of further assistance.

    Comment


      #3
      RESOLVED - Thanks - I noticed that by changing the settings. Good to go. Thx

      Comment

      Latest Posts

      Collapse

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