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

auto pitchfork

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

    auto pitchfork

    hi there i dont supose anyone feels like building an auto Andrews Pitchfork ?

    #2
    If no one is up to the challenge, you can alternatively try a NinjaScript consultant.

    RayNinjaTrader Customer Service

    Comment


      #3
      Any luck with this one yet?

      Comment


        #4
        I've been trying my hand at code such an auto pitchfork but ran into a problem. I can't get the fork to draw more than 38 bars back from the current (0) bar (& yes that many bars exist).
        for example:
        This works
        DrawAndrewsPitchfork("FORKU", 0, 1060, 0, 1070, 38, 170);
        Doesn't Work
        DrawAndrewsPitchfork("FORKU", 0, 1060, 0, 1070, 39, 170);

        Anybody have any suggestions as to what I might be doing wrong or need to check for?
        Last edited by i001962; 10-23-2009, 08:59 PM.

        Comment


          #5
          i001962, the only way to be sure that many bars exist is to return out of the code if that many bars do not exist. Here is a link that will take you to a tip that describes how to check if you have enough bars.

          Basically your OnBarUpdate() should look something like this:
          Code:
          protected override void OnBarUpdate()
          {
              // very important this is first
              if (CurrentBar < 39)
                  return;
              
              // the rest of your code goes here
          }
          If that doesn't fix it, do you have any error or anything in your logs (right-most tab in Control Center)?
          AustinNinjaTrader Customer Service

          Comment

          Latest Posts

          Collapse

          Topics Statistics Last Post
          Started by rocketman7, Today, 01:00 AM
          0 responses
          1 view
          0 likes
          Last Post rocketman7  
          Started by wzgy0920, 04-20-2024, 06:09 PM
          2 responses
          27 views
          0 likes
          Last Post wzgy0920  
          Started by wzgy0920, 02-22-2024, 01:11 AM
          5 responses
          32 views
          0 likes
          Last Post wzgy0920  
          Started by wzgy0920, 04-23-2024, 09:53 PM
          2 responses
          74 views
          0 likes
          Last Post wzgy0920  
          Started by Kensonprib, 04-28-2021, 10:11 AM
          5 responses
          193 views
          0 likes
          Last Post Hasadafa  
          Working...
          X