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

Draw.Diamond on Add-On

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

    Draw.Diamond on Add-On

    Hello

    I'm trying to transfer my code from NT7 to NT8.

    I wrote a function that wraps Draw.Diamond which pass compilation on my indicator:

    Code:
    public Diamond DiamondDraw(double y, DateTime dateTime, Brush brush)
            {
                return (Draw.Diamond(this, Guid.NewGuid().ToString(), false, dateTime, y, brush));
            }

    However I want it to be on my Add-on so I wont need to copy it to each indicator. How can that be accomplished?

    Thanks

    #2
    Hello kiss987,

    Thank you for your note.

    I have attached a sample Addon which contains your draw diamond method inside a partial indicator class. The attachment also includes a indicator which references your method.

    You should note that if you try to export this indicator you will have to include this partial class, or include it within the indicator. I have this position commented out at the bottom of the attached indicator.

    Please let us know if you need further assistance.
    Attached Files
    Alan P.NinjaTrader Customer Service

    Comment


      #3
      Thank you for your reply.

      On my addon file I have the following code:

      namespace NinjaTrader.NinjaScript.AddOns
      {
      public partial class MySharedMethods : NinjaTrader.NinjaScript.AddOnBase
      {
      }
      }

      Is it possible to move the DiamondDraw method to this area so it will be effective for both indicators and strategies?

      Comment


        #4
        Hello kiss987,

        If you test the method inside the Addon namespace, like your suggestion, are you able to call it from a strategy?

        A working approach would be to add the following code to the end of the file I provided and you could reference the strategy method from within a strategy.

        Code:
        namespace NinjaTrader.NinjaScript.Strategies
        {
        	public partial class Strategy
        	{
        		public NinjaTrader.NinjaScript.DrawingTools.Diamond DiamondDraw1(double y, DateTime dateTime, Brush brush)
                       {
                           return (NinjaTrader.NinjaScript.DrawingTools.Draw.Diamond(this, Guid.NewGuid().ToString(), false, dateTime, y, brush));
                       }
        	}
        }
        Please let us know if you need further assistance.
        Alan P.NinjaTrader Customer Service

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by jeronymite, 04-12-2024, 04:26 PM
        3 responses
        44 views
        0 likes
        Last Post jeronymite  
        Started by Barry Milan, Yesterday, 10:35 PM
        7 responses
        20 views
        0 likes
        Last Post NinjaTrader_Manfred  
        Started by AttiM, 02-14-2024, 05:20 PM
        10 responses
        179 views
        0 likes
        Last Post jeronymite  
        Started by ghoul, Today, 06:02 PM
        0 responses
        10 views
        0 likes
        Last Post ghoul
        by ghoul
         
        Started by DanielSanMartin, Yesterday, 02:37 PM
        2 responses
        13 views
        0 likes
        Last Post DanielSanMartin  
        Working...
        X