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

Put alert price into alert message

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

    Put alert price into alert message

    Hi,

    How do I insert the price at which the alert was made, into the alert message?

    Code:
    Alert("namealert", Priority.High, "alert message and price", @"C:\Program Files\NinjaTrader 7\sounds\alert.wav", 1, Color.Red, Color.White);

    #2
    Hi ScottieDog,

    Thank you for your post.

    You would want to use this string line for the Alert -
    "Alert Message and price: " + Close[0]
    Cal H.NinjaTrader Customer Service

    Comment


      #3
      OK, great. That´s adding the price alongside the alert message correctly now. Thanks.

      If I wanted to put a space in between the alert message and the price, how do I add a space or two?

      At the moment it is plotting as "alertmessageprice" with no space, I want it to plot with a space before the price.. ie "alertmessage price"

      How do I add a few spaces ?

      Comment


        #4
        ScottieDog,

        The String text will use the number of spaces you add into.
        Example, my last post show having a space from the colon to the end of the string or the quotation mark.
        "Alert Message and price: " + Close[0]

        Additionally, you can do it this method as well -
        "Alert Message and price:" + " " + Close[0]
        Cal H.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by SugarDefwebsite, Today, 02:18 AM
        0 responses
        1 view
        0 likes
        Last Post SugarDefwebsite  
        Started by usglucofreeze, Today, 01:19 AM
        0 responses
        7 views
        0 likes
        Last Post usglucofreeze  
        Started by f.saeidi, Today, 01:12 AM
        0 responses
        7 views
        0 likes
        Last Post f.saeidi  
        Started by NinjaTrader_ChelseaB, 03-14-2017, 10:17 AM
        227 responses
        34,318 views
        7 likes
        Last Post rare312
        by rare312
         
        Started by f.saeidi, Today, 12:11 AM
        0 responses
        6 views
        0 likes
        Last Post f.saeidi  
        Working...
        X