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 Skifree, Today, 03:41 AM
          0 responses
          0 views
          0 likes
          Last Post Skifree
          by Skifree
           
          Started by usazencort, Today, 01:16 AM
          0 responses
          1 view
          0 likes
          Last Post usazencort  
          Started by kaywai, 09-01-2023, 08:44 PM
          5 responses
          603 views
          0 likes
          Last Post NinjaTrader_Jason  
          Started by xiinteractive, 04-09-2024, 08:08 AM
          6 responses
          23 views
          0 likes
          Last Post xiinteractive  
          Started by Pattontje, Yesterday, 02:10 PM
          2 responses
          22 views
          0 likes
          Last Post Pattontje  
          Working...
          X