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 LawrenHom, Today, 10:45 PM
          0 responses
          3 views
          0 likes
          Last Post LawrenHom  
          Started by love2code2trade, Yesterday, 01:45 PM
          4 responses
          28 views
          0 likes
          Last Post love2code2trade  
          Started by funk10101, Today, 09:43 PM
          0 responses
          7 views
          0 likes
          Last Post funk10101  
          Started by pkefal, 04-11-2024, 07:39 AM
          11 responses
          37 views
          0 likes
          Last Post jeronymite  
          Started by bill2023, Yesterday, 08:51 AM
          8 responses
          44 views
          0 likes
          Last Post bill2023  
          Working...
          X