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

Net-Lines Indicator

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

    Net-Lines Indicator

    Hi, I am not a NinjaTrader programmer, and I am interested having someone code for me the Net-Lines indicator depicted, including a description of Net-Lines, on the following chart. I am willing to pay a reasonable fee. Please indicate what you think a reasonable fee to develop this indicator. I am using NinjaTrader 7. Thanks.

    Attached Files

    #2
    Welcome to our forums here - you can also contact any of those certified NinjaScript consultants for discussing this project - http://www.ninjatrader.com/partners#...pt-Consultants
    BertrandNinjaTrader Customer Service

    Comment


      #3
      I found the following ThinkorSwim Net-Lines script. I will pay someone via PayPal a reasonable fee if they will convert the ThinkorSwim script to a working NinjaTrader 7 script/indicator.

      #DEF VCLOSE = (((HIGH + LOW) + (CLOSE * 2)) / 4) ;
      DEF VCLOSE = (((HIGH + LOW) / 2)) ;
      #DEF VCLOSE = CLOSE - (((HIGH + LOW) + (CLOSE * 2)) / 4) ;
      #DEF VCLOSE = CLOSE;
      def VBI = (((VCLOSE[1] < VCLOSE[2]) * (VCLOSE[2] < VCLOSE[3])) * (VCLOSE[3] < VCLOSE[4]));
      DEF VSS = (((VCLOSE[1] > VCLOSE[2]) * (VCLOSE[2] > VCLOSE[3])) * (VCLOSE[3] < VCLOSE[4]));
      def vmovebi = (sum(vbi, 5) / 5) == vbi;
      def vmovess = (sum(vss, 5) / 5) == vss;
      declare upper;
      rec top;
      rec bot;
      top = if
      VBI then High[3] else top[1];
      bot = if
      VSS then Low[3] else bot[1];
      plot BUYline = if vmovebi then Double.NaN else TOP;
      BUYline.SetLineWeight(1);
      BUYline.SetDefaultColor(color.BLUE);
      BUYline.SetPaintingStrategy(PaintingStrategy.dashe s);
      plot SHORTline = if vmovess then Double.NaN else BOT;
      SHORTline.SetLineWeight(1);
      SHORTline.SetDefaultColor(color.MAGENTA);
      SHORTline.SetPaintingStrategy(PaintingStrategy.poi nts);

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by DJ888, Today, 10:57 PM
      0 responses
      1 view
      0 likes
      Last Post DJ888
      by DJ888
       
      Started by MacDad, 02-25-2024, 11:48 PM
      7 responses
      158 views
      0 likes
      Last Post loganjarosz123  
      Started by Belfortbucks, Today, 09:29 PM
      0 responses
      7 views
      0 likes
      Last Post Belfortbucks  
      Started by zstheorist, Today, 07:52 PM
      0 responses
      7 views
      0 likes
      Last Post zstheorist  
      Started by pmachiraju, 11-01-2023, 04:46 AM
      8 responses
      151 views
      0 likes
      Last Post rehmans
      by rehmans
       
      Working...
      X