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 f.saeidi, Today, 12:14 PM
            7 responses
            16 views
            0 likes
            Last Post f.saeidi  
            Started by Russ Moreland, Today, 12:54 PM
            1 response
            6 views
            0 likes
            Last Post NinjaTrader_Erick  
            Started by philmg, Today, 12:55 PM
            1 response
            7 views
            0 likes
            Last Post NinjaTrader_ChristopherJ  
            Started by TradeForge, 04-19-2024, 02:09 AM
            2 responses
            32 views
            0 likes
            Last Post TradeForge  
            Started by aprilfool, 12-03-2022, 03:01 PM
            3 responses
            329 views
            0 likes
            Last Post NinjaTrader_Adrian  
            Working...
            X