Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

Partner 728x90

Collapse

Discrepancy between plotted SMA and Indicator SMA?

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

  • Bogomir28
    replied
    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!

    Leave a comment:


  • koganam
    replied
    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!

    Leave a comment:


  • 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

Latest Posts

Collapse

Topics Statistics Last Post
Started by bmartz, 03-12-2024, 06:12 AM
4 responses
31 views
0 likes
Last Post bmartz
by bmartz
 
Started by Aviram Y, Today, 05:29 AM
4 responses
12 views
0 likes
Last Post Aviram Y  
Started by algospoke, 04-17-2024, 06:40 PM
3 responses
28 views
0 likes
Last Post NinjaTrader_Jesse  
Started by gentlebenthebear, Today, 01:30 AM
1 response
8 views
0 likes
Last Post NinjaTrader_Jesse  
Started by cls71, Today, 04:45 AM
1 response
7 views
0 likes
Last Post NinjaTrader_ChelseaB  
Working...
X