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

What is the ways to plot price label at X-axis value equals to ArrowLine Start X-axis

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

    What is the ways to plot price label at X-axis value equals to ArrowLine Start X-axis

    Hi all,

    I'm developing a script which shows the price of ArrowLine end. The code I use is the following

    public override void Plot(Graphics graphics, Rectangle bounds, double min, double max)

    SizeF stringSize = new SizeF() ;
    ChartArrowLine l1 = (co as ChartArrowLine);

    double bb = l1.StartBarsAgo;
    double gg = l1.StartY;

    int x2 = ????????????

    int y2 = (bounds.Y + bounds.Height) - ((int)(((gg-min) / (max-min)) * bounds.Height))-30;
    string s = l1.EndY.ToString(_priceFormat);
    stringSize = graphics.MeasureString( s, largerFont ) ;
    graphics.DrawString(s, largerFont, l1.Pen.Brush, x2, (y2), _format1);

    I have the code to plot price label at Y-axis value equals to ArrowLine Start Y-axis value.
    What is the ways to plot price label at X-axis value equals to ArrowLine Start X-axis value.

    Please , help!

    #2
    Hi Alex, sorry for our late reply - custom plotting via C# would be unfortunately not a directly supported area, however for your ArrowLine start you would have a Datetime or a bar index, correct?

    Then the ChartControls would offer a GetXByTime or GetXByBarIdx to determine the needed X value.
    Last edited by NinjaTrader_Bertrand; 09-10-2013, 03:24 AM. Reason: typo
    BertrandNinjaTrader Customer Service

    Comment


      #3
      Bertrand

      Thank you very much! I knew that it should be simple.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by cre8able, Today, 01:16 PM
      2 responses
      9 views
      0 likes
      Last Post cre8able  
      Started by chbruno, 04-24-2024, 04:10 PM
      3 responses
      48 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by samish18, Today, 01:01 PM
      1 response
      6 views
      0 likes
      Last Post NinjaTrader_LuisH  
      Started by WHICKED, Today, 12:56 PM
      1 response
      9 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Started by WHICKED, Today, 12:45 PM
      1 response
      11 views
      0 likes
      Last Post NinjaTrader_Gaby  
      Working...
      X