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

How to create an indicator

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

    How to create an indicator

    Good morning.
    I need a very simple indicator, that I mark the open price of 2 candles backwards. I tried to do it, but I still do not handle this language very well.

    #2
    Hello heguilar,
    Thanks for your post.

    What do you mean by "backwards"? It seems like you are you trying to store the open values for two candles and then swap those values. Is this correct?

    Please show me the code you have written so far so that I have a better idea of what you are trying to accomplish.

    I look forward to your reply.
    Josh G.NinjaTrader Customer Service

    Comment


      #3
      Good morning. I need an indicator that I paint the open [1]. IIt's very simple, but I do not know how it's done.

      Comment


        #4
        Hello heguilar,
        Thanks for your note.

        You could plot Close[1] with your indicator by doing something similar to the following snippet.
        Code:
        protected override void OnStateChange()
        {
        	if (State == State.SetDefaults)
        	{
        		AddPlot(Brushes.Orange, "MyPlot");
        	}
        }
        
        protected override void OnBarUpdate()
        {
        	if (CurrentBar<1)
        		return;
        	Value[0] = Open[1];
        }
        I am including the relevant help guide documentation on how to accomplish this below, for your convenience.

        AddPlot()
        https://ninjatrader.com/support/help...s/?addplot.htm
        Value
        https://ninjatrader.com/support/help...-us/?value.htm

        Please let me know if you have any questions.
        Josh G.NinjaTrader Customer Service

        Comment


          #5
          OK, muchas gracias

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by Brevo, Today, 01:45 AM
          0 responses
          4 views
          0 likes
          Last Post Brevo
          by Brevo
           
          Started by aussugardefender, Today, 01:07 AM
          0 responses
          3 views
          0 likes
          Last Post aussugardefender  
          Started by pvincent, 06-23-2022, 12:53 PM
          14 responses
          241 views
          0 likes
          Last Post Nyman
          by Nyman
           
          Started by TraderG23, 12-08-2023, 07:56 AM
          9 responses
          384 views
          1 like
          Last Post Gavini
          by Gavini
           
          Started by oviejo, Today, 12:28 AM
          0 responses
          6 views
          0 likes
          Last Post oviejo
          by oviejo
           
          Working...
          X