Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Discrepancy between plotted SMA and Indicator SMA?

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

    Discrepancy between plotted SMA and Indicator SMA?

    Hi, i'm bewildered by an apparent discrepancy between plotted values and indicator values.

    I've written a basic piece of code which colors bars green if they close above a 20-period SMA, and red if they close below.

    When applied to price action, it seems to work ok. But if i add a visual SMA of the same period to the chart, its clear that its not working correctly. Infact the indicator seems to be making its calculations around a 10-period SMA, not 20.

    Really don't understand why its halving the input period.. am i overlooking something?

    Thanks!! Damien
    Attached Files

    #2
    Originally posted by Bogomir28 View Post
    Hi, i'm bewildered by an apparent discrepancy between plotted values and indicator values.

    I've written a basic piece of code which colors bars green if they close above a 20-period SMA, and red if they close below.

    When applied to price action, it seems to work ok. But if i add a visual SMA of the same period to the chart, its clear that its not working correctly. Infact the indicator seems to be making its calculations around a 10-period SMA, not 20.

    Really don't understand why its halving the input period.. am i overlooking something?

    Thanks!! Damien
    Here is your calculation line:

    Code:
     
    double SMA1 = SMA(Inputs[0], (int)(Period1 / 2))[0];
    If Period1 == 20, as you have it assigned, then Period1/2 == 10. Ergo!

    Comment


      #3
      Oh, heck! Thats pretty elementary. I pinched that bit of code off something else then forgot to check it closely. Anyway, thanks very much koganam!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by CarlTrading, 03-31-2026, 09:41 PM
      1 response
      133 views
      1 like
      Last Post NinjaTrader_ChelseaB  
      Started by CarlTrading, 04-01-2026, 02:41 AM
      0 responses
      75 views
      1 like
      Last Post CarlTrading  
      Started by CaptainJack, 03-31-2026, 11:44 PM
      0 responses
      117 views
      2 likes
      Last Post CaptainJack  
      Started by CarlTrading, 03-30-2026, 11:51 AM
      0 responses
      113 views
      1 like
      Last Post CarlTrading  
      Started by CarlTrading, 03-30-2026, 11:48 AM
      0 responses
      90 views
      0 likes
      Last Post CarlTrading  
      Working...
      X