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 Rapine Heihei, 04-23-2024, 07:51 PM
          2 responses
          30 views
          0 likes
          Last Post Max238
          by Max238
           
          Started by Shansen, 08-30-2019, 10:18 PM
          24 responses
          943 views
          0 likes
          Last Post spwizard  
          Started by Max238, Today, 01:28 AM
          0 responses
          9 views
          0 likes
          Last Post Max238
          by Max238
           
          Started by rocketman7, Today, 01:00 AM
          0 responses
          4 views
          0 likes
          Last Post rocketman7  
          Started by wzgy0920, 04-20-2024, 06:09 PM
          2 responses
          28 views
          0 likes
          Last Post wzgy0920  
          Working...
          X