Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Custom Drawing Tool Question...

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

    Custom Drawing Tool Question...

    In GetSelectionPoints() I want to change the "anchor point" to the high of the bar selected, how would this be done?

    Code:
    public override Point[] GetSelectionPoints(ChartControl chartControl, ChartScale chartScale)
    		{
    			if (chartControl.BarsArray.Count == 0)
    				return null;
    			
    			try
    			{
                                    Bars bars = chartControl.BarsArray[0].Bars;
    
    				ChartPanel chartPanel = chartControl.ChartPanels[chartScale.PanelIndex];
    				Point anchorPoint = Anchor.GetPoint(chartControl, chartPanel, chartScale);
    				
                                    int idx = bars.GetBar(Anchor.Time);
    				[color=red]double high = bars.GetHigh(idx);[/color]
    
                                    // Point highPoint = new Point();
                                    [b] // how do I convert this "high" value to a useable "anchor point" to return?[/b]
    				
    				[color=red]return new[] { highPoint }; ??[/color]
    			}
    			catch (Exception e)
    			{
    				Print (e.Message);
    				return null;
    			}
    		}

    #2
    I will answer my own question for others :-)

    Code:
    public override Point[] GetSelectionPoints(ChartControl chartControl, ChartScale chartScale)
    		{
    			if (chartControl.BarsArray.Count == 0)
    				return null;
    			
    			try
    			{
    				ChartPanel chartPanel = chartControl.ChartPanels[chartScale.PanelIndex];
    				Point anchorPoint = Anchor.GetPoint(chartControl, chartPanel, chartScale);
    				
                                    // high is defined else where in the code from Bars object -> bars.GetHigh(index);
                                    ChartAnchor HighAnchor = new ChartAnchor(Anchor.Time, high, chartControl);
                                    Point highPoint = HighAnchor.GetPoint(chartControl, chartPanel, chartScale);
    				
    				return new[] { highPoint };
    			}
    			catch (Exception e)
    			{
    				Print (e.Message);
    				return null;
    			}
    		}

    Comment


      #3
      Use the chartScale.GetYByValue() method and pass in the high value you calculated.

      If you solely want the selection point to be on the high of the bar, there is no reason to create a new anchor point, you can just assign the anchorPoint.Y to that value:

      Code:
      anchorPoint.Y = chartScale.GetYByValue(high);
      				
      return new[] { anchorPoint };
      If you want to have both the objects Anchor as the selection point and you want a new selection point as the High value, you can create a copy of Anchor point and then set that copies .Y value, then return both points

      Code:
      Point highPoint = anchorPoint;
      
      highPoint.Y = chartScale.GetYByValue(high);
      
      return new[] { anchorPoint, highPoint };
      MatthewNinjaTrader Product Management

      Comment


        #4
        Ah, cool, thanks.

        Comment


          #5
          Thanks so much for sharing this!

          Could you please paste the full context of your cod3? Need to do something similar in an indicator and am wondering where to put it. (OnBarUpdate? OnRender?)

          Thanks again.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by bortz, 11-06-2023, 08:04 AM
          47 responses
          1,602 views
          0 likes
          Last Post aligator  
          Started by jaybedreamin, Today, 05:56 PM
          0 responses
          8 views
          0 likes
          Last Post jaybedreamin  
          Started by DJ888, 04-16-2024, 06:09 PM
          6 responses
          18 views
          0 likes
          Last Post DJ888
          by DJ888
           
          Started by Jon17, Today, 04:33 PM
          0 responses
          4 views
          0 likes
          Last Post Jon17
          by Jon17
           
          Started by Javierw.ok, Today, 04:12 PM
          0 responses
          12 views
          0 likes
          Last Post Javierw.ok  
          Working...
          X