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 Geovanny Suaza, 02-11-2026, 06:32 PM
      0 responses
      571 views
      0 likes
      Last Post Geovanny Suaza  
      Started by Geovanny Suaza, 02-11-2026, 05:51 PM
      0 responses
      331 views
      1 like
      Last Post Geovanny Suaza  
      Started by Mindset, 02-09-2026, 11:44 AM
      0 responses
      101 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by Geovanny Suaza, 02-02-2026, 12:30 PM
      0 responses
      549 views
      1 like
      Last Post Geovanny Suaza  
      Started by RFrosty, 01-28-2026, 06:49 PM
      0 responses
      549 views
      1 like
      Last Post RFrosty
      by RFrosty
       
      Working...
      X