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

Ema Std dev

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

    Ema Std dev

    Hi

    Ive copied the bollinger code and changed the sma to ema but get loads of errors

    This is my code

    #region Variables
    // Wizard generated variables
    // User defined variables (add any user defined variables below)
    private double numStdDev = 3.5;
    private int period = 55;
    #endregion

    /// <summary>
    /// This method is used to configure the indicator and is called once before any bar data is loaded.
    /// </summary>
    protected override void Initialize()
    {
    Add(new Plot(Color.Black, "Upper band"));
    Add(new Plot(Color.Blue, "Middle band"));
    Add(new Plot(Color.Black, "Lower band"));
    Overlay = true;
    }

    /// <summary>
    /// Called on each bar update event (incoming tick)
    /// </summary>
    protected override void OnBarUpdate()
    {

    double emaValue = EMA(Period)[0];
    double stdDevValue = StdDev(EMA,Period)[0];
    Upper.Set(emaValue + NumStdDev * stdDevValue);
    Middle.Set(emaValue);
    Lower.Set(emaValue - NumStdDev * stdDevValue);

    i seem to get errors for the last 5 line of code with cs1503,0118,1502 and NT1503 errors.
    Anyone show me where im going wrong?
    Thanks

    #2
    Hello Dyversity,

    Thanks for your post and welcome to the forums.

    When you copied the code, did you also copy the information in the area of #region Properties?
    The information would be between #region Properties and #endregion.
    Paul H.NinjaTrader Customer Service

    Comment


      #3
      Problem solved!!
      Thanks for the reply

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by mjairg, 07-20-2023, 11:57 PM
      3 responses
      213 views
      1 like
      Last Post PaulMohn  
      Started by TheWhiteDragon, 01-21-2019, 12:44 PM
      4 responses
      544 views
      0 likes
      Last Post PaulMohn  
      Started by GLFX005, Today, 03:23 AM
      0 responses
      3 views
      0 likes
      Last Post GLFX005
      by GLFX005
       
      Started by XXtrader, Yesterday, 11:30 PM
      2 responses
      12 views
      0 likes
      Last Post XXtrader  
      Started by Waxavi, Today, 02:10 AM
      0 responses
      7 views
      0 likes
      Last Post Waxavi
      by Waxavi
       
      Working...
      X