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

Indicator accessing user drawn obcjecy - how ?

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

    Indicator accessing user drawn obcjecy - how ?

    Is it possible for indicator to access user drawn objects ? Let's say i draw a fibonacci retracement on my chart, can the indicator see this fibonacci and access it somehow ?

    #2
    Hello danhoff,
    Thanks for writing in and I am happy to assist you.

    Yes, you can access user drawn draw objects via an indicator. Please refer to the below code which demonstrates it.

    Code:
    foreach(IDrawObject o in DrawObjects)
    {
    	if (o.UserDrawn)
    	{
    		if (o.DrawType == DrawType.FibonacciRetracements)
    		{
    			IFibonacciRetracements fibs = (IFibonacciRetracements)o;
    			
    			//do stuffs
    		}
    	}
    }
    Please let me know if I can assist you any further.
    JoydeepNinjaTrader Customer Service

    Comment


      #3
      Many thanks !

      Comment


        #4
        Hello danhoff,
        Thanks for your reply.
        Please let me know if I can assist you any further.
        JoydeepNinjaTrader Customer Service

        Comment


          #5
          Is there a way to access fibonacci object that will also return values for the fib lines, for example 61.8% line or 50% line ? I think i can't do that by usin g IFibonaciRetracements ?
          Last edited by danhoff; 03-19-2012, 01:37 PM.

          Comment


            #6
            Hello,
            You can calculate the various ranges from the StartY and EndY properties.

            Please let me know if I can assist you any further.
            JoydeepNinjaTrader Customer Service

            Comment

            Latest Posts

            Collapse

            Topics Statistics Last Post
            Started by alifarahani, Today, 09:40 AM
            6 responses
            36 views
            0 likes
            Last Post alifarahani  
            Started by Waxavi, Today, 02:10 AM
            1 response
            17 views
            0 likes
            Last Post NinjaTrader_LuisH  
            Started by Kaledus, Today, 01:29 PM
            5 responses
            14 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Started by Waxavi, Today, 02:00 AM
            1 response
            12 views
            0 likes
            Last Post NinjaTrader_LuisH  
            Started by gentlebenthebear, Today, 01:30 AM
            3 responses
            17 views
            0 likes
            Last Post NinjaTrader_Jesse  
            Working...
            X