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 Rapine Heihei, Today, 08:19 PM
      1 response
      4 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by Rapine Heihei, Today, 08:25 PM
      0 responses
      5 views
      0 likes
      Last Post Rapine Heihei  
      Started by f.saeidi, Today, 08:01 PM
      1 response
      4 views
      0 likes
      Last Post NinjaTrader_Manfred  
      Started by Rapine Heihei, Today, 07:51 PM
      0 responses
      6 views
      0 likes
      Last Post Rapine Heihei  
      Started by frslvr, 04-11-2024, 07:26 AM
      5 responses
      97 views
      1 like
      Last Post caryc123  
      Working...
      X