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 Christopher_R, Today, 12:29 AM
            0 responses
            9 views
            0 likes
            Last Post Christopher_R  
            Started by sidlercom80, 10-28-2023, 08:49 AM
            166 responses
            2,235 views
            0 likes
            Last Post sidlercom80  
            Started by thread, Yesterday, 11:58 PM
            0 responses
            3 views
            0 likes
            Last Post thread
            by thread
             
            Started by jclose, Yesterday, 09:37 PM
            0 responses
            8 views
            0 likes
            Last Post jclose
            by jclose
             
            Started by WeyldFalcon, 08-07-2020, 06:13 AM
            10 responses
            1,415 views
            0 likes
            Last Post Traderontheroad  
            Working...
            X