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 plot last price on the charts

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

    How to plot last price on the charts

    How to plot last price on the charts??

    #2
    Hello,

    Thank you for the question.

    If you are looking to plot just the last price you could create an indicator and use it on CalculateOnBarClose = false and reference the Close[0] as the Last price.

    The Close would be considered the Close of the bar if you have CalculateOnbarClose = true or the Last price if you have CalculateOnbarClose = false.

    You can also use something like a 1 period SMA set on CalculateOnbarClose = false if you do not want to manually code this. You can define the input series if you would like a different set of values other than the Close of each bar.

    I look forward to being of further assistance.
    JesseNinjaTrader Customer Service

    Comment


      #3
      Originally posted by NinjaTrader_Jesse View Post
      Hello,

      Thank you for the question.

      If you are looking to plot just the last price you could create an indicator and use it on CalculateOnBarClose = false and reference the Close[0] as the Last price.

      The Close would be considered the Close of the bar if you have CalculateOnbarClose = true or the Last price if you have CalculateOnbarClose = false.

      You can also use something like a 1 period SMA set on CalculateOnbarClose = false if you do not want to manually code this. You can define the input series if you would like a different set of values other than the Close of each bar.

      I look forward to being of further assistance.
      Thanks for your swift reply.. I have created a message box where I want to show the last price.

      Comment


        #4
        Hello,

        Thank you for the clairification.

        You would need to pass through the Close[0] information to this box as well as putting the indicator into CalculateOnBarClose = false.

        If the case is that you can not use COBC = false you could look into using the OnMarketData method to update your box as ticks are coming in.

        There is also an example that includes the Last price in the following link:


        Please let me know if I may be of additional assistance.
        JesseNinjaTrader Customer Service

        Comment


          #5
          if this is the code then how to add that OMD method into it
          if(!Historical)
          MessageBox.Show(DateTime.Now.ToString() + "\n\n Sell Signal generated for " + Instrument.FullName + ".", Instrument.FullName + " SELL ALERT!");

          Comment


            #6
            Hello,

            In NinjaScript or C# you can turn most things into strings by adding ToString() to the end of it or if you are combining a number with a string you dont even need to go that far.

            Here are a couple examples:

            Code:
            MessageBox.Show(DateTime.Now.ToString() + "\n\n Sell Signal generated for " + Instrument.FullName + ".", Instrument.FullName + " SELL ALERT! + " Price at: " + Close[0]);
            Or you can convert to a string like this:

            Code:
            string price = Close[0].ToString();
            I look forward to being of further assistance.
            JesseNinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by pechtri, 06-22-2023, 02:31 AM
            10 responses
            124 views
            0 likes
            Last Post Leeroy_Jenkins  
            Started by judysamnt7, 03-13-2023, 09:11 AM
            4 responses
            59 views
            0 likes
            Last Post DynamicTest  
            Started by ScottWalsh, Yesterday, 06:52 PM
            4 responses
            36 views
            0 likes
            Last Post ScottWalsh  
            Started by olisav57, Yesterday, 07:39 PM
            0 responses
            7 views
            0 likes
            Last Post olisav57  
            Started by trilliantrader, Yesterday, 03:01 PM
            2 responses
            22 views
            0 likes
            Last Post helpwanted  
            Working...
            X