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 Max238, Today, 01:28 AM
          2 responses
          26 views
          0 likes
          Last Post NinjaTrader_ChristopherJ  
          Started by Shansen, 08-30-2019, 10:18 PM
          25 responses
          949 views
          0 likes
          Last Post NinjaTrader_BrandonH  
          Started by JonesJoker, 04-22-2024, 12:23 PM
          8 responses
          41 views
          0 likes
          Last Post JonesJoker  
          Started by timko, Today, 06:45 AM
          0 responses
          4 views
          0 likes
          Last Post timko
          by timko
           
          Started by Waxavi, 04-19-2024, 02:10 AM
          2 responses
          39 views
          0 likes
          Last Post poeds
          by poeds
           
          Working...
          X