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

Ninjatrader Strategy - Usage of Print method in Share Service

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

    Ninjatrader Strategy - Usage of Print method in Share Service

    Hi,

    I want to get notified when my strategy takes a trade when I'm not at the office. I've tried to implement the below, which works fine but having trouble getting the instrument name into the message:

    Share(@"Twitter", @"LongEntry" + "-" + Print.Instrument.FullName.ToString());

    What is the correct syntax of using "Print" in a strategy share service (what is the correct operator and howto get the instrument name correct in my pseudo code above)?

    Thanks for any help!

    br,
    Chris

    #2
    Hi Chris,

    Thanks for your post.

    You would not be able to use Print statement in the Share() method. The method overload you are using is: Share(string serviceName, string message);

    Instrument.Fullname will return a string so does not need to Print or To.String().

    Share(@"Twitter", @"LongEntry" + "-" +Instrument.FullName);

    References:

    Paul H.NinjaTrader Customer Service

    Comment


      #3
      Thank You and I'm sorry for my stupidity!

      Have a nice day!

      br,
      Chris

      Comment


        #4
        One more question: is it possible to do calculations under Share(); ?

        Example: Share(@"ShareService", + " " + Close[0]-VAR.ToString());

        Where VAR is a variable defined elsewhere.

        Thanks,
        Chris

        Comment


          #5
          Hi Chris,

          Thanks for your reply.

          Yes, just like Print statement you can include calculations.
          Paul H.NinjaTrader Customer Service

          Comment


            #6
            OK, thanks! Will stop strategies and try to add calculations!

            Thanks again, you guys are the best!

            br,
            Chris

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by proptrade13, Today, 11:06 AM
            0 responses
            1 view
            0 likes
            Last Post proptrade13  
            Started by kulwinder73, Today, 10:31 AM
            1 response
            10 views
            0 likes
            Last Post NinjaTrader_Erick  
            Started by RookieTrader, Today, 09:37 AM
            3 responses
            15 views
            0 likes
            Last Post NinjaTrader_ChelseaB  
            Started by terofs, Yesterday, 04:18 PM
            1 response
            24 views
            0 likes
            Last Post terofs
            by terofs
             
            Started by CommonWhale, Today, 09:55 AM
            1 response
            6 views
            0 likes
            Last Post NinjaTrader_Erick  
            Working...
            X