Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Plotting DataSeries

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

    Plotting DataSeries

    Have a DataSeries that contains bar numbers and want to plot a line between Highs and Lows of consecutive bars,, any suggestions?

    #2
    Hi gg80108, you can use the DrawLine methods for connecting your highs / lows - http://www.ninjatrader-support.com/H.../DrawLine.html

    Comment


      #3
      Plotting Lines to conect Highs & Lows

      Yea, I'm interested in the same. Apparently, Low and Lows do NOT have a Plot method? We can plot EMA on close,open,high, low. But how can we create a series of lows and highs and plot then and base decision rules off of them? Not just drawing lines to connect them. Any suggestions are much welcomed.

      blueion

      Comment


        #4
        Hello,

        I am jumping in here so I may be off, but I suggest storing them in a DataSeries:
        DenNinjaTrader Customer Service

        Comment


          #5
          here is the code i used to connect significant bar points, like Ben said the key to this is storing the bar numbers somewhere. The trick is that with a data series there is an entry in the array for every bar , a null or value, and not just the values you set in.
          I had to use a


          //find last pivot bar
          for (int x = 1; x < Bars.BarsSinceSession;x++)
          {
          if (scalpSeries.ContainsValue(x))
          {
          PivotBarNum = (
          int)scalpSeries[x];
          DrawLine(
          "sl" + CurrentBar,CurrentBar - PivotBarNum,Low[CurrentBar - PivotBarNum],ExtremeBar,High[ExtremeBar],Color.Blue,DashStyle.Solid,1);
          Last edited by gg80108; 11-22-2009, 04:07 PM.

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by CarlTrading, Yesterday, 09:41 PM
          1 response
          20 views
          0 likes
          Last Post NinjaTrader_ChelseaB  
          Started by CarlTrading, Today, 02:41 AM
          0 responses
          6 views
          0 likes
          Last Post CarlTrading  
          Started by CaptainJack, Yesterday, 11:44 PM
          0 responses
          17 views
          0 likes
          Last Post CaptainJack  
          Started by CarlTrading, 03-30-2026, 11:51 AM
          0 responses
          33 views
          0 likes
          Last Post CarlTrading  
          Started by CarlTrading, 03-30-2026, 11:48 AM
          0 responses
          32 views
          0 likes
          Last Post CarlTrading  
          Working...
          X