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 algospoke, Today, 06:40 PM
            0 responses
            4 views
            0 likes
            Last Post algospoke  
            Started by maybeimnotrader, Today, 05:46 PM
            0 responses
            7 views
            0 likes
            Last Post maybeimnotrader  
            Started by quantismo, Today, 05:13 PM
            0 responses
            6 views
            0 likes
            Last Post quantismo  
            Started by AttiM, 02-14-2024, 05:20 PM
            8 responses
            168 views
            0 likes
            Last Post jeronymite  
            Started by cre8able, Today, 04:22 PM
            0 responses
            8 views
            0 likes
            Last Post cre8able  
            Working...
            X