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

Logic error?

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

    Logic error?

    Code:
    if(Open[0] < (Close[1] +( TickSize*2)))
    {
    DrawText("gapd"+CurrentBar,true,"G",0,Close[1],0,Color.Red,ChartControl.Font,StringAlignment.Center,Color.Transparent,Color.Transparent,100);
    }
    Print(Time[0] + "Close " + Close[1] + " Open " + Open[0]);
    if(Open[0] < (Close[1] + (TickSize*2)))
    Print("Gap Down");
    I get print outs of the correct close and open values but my drawtext is every bar
    Indicator is set to Calculate on bar close on an INTRADAY chart.

    ps I tried the following to no avail
    if(Open[0] < Instrument.MasterInstrument.Round2TickSize((Close[1] + (TickSize*2))))
    Last edited by Mindset; 06-02-2010, 10:16 AM.

    #2
    Hello Mindset,

    If your goal is to test whether the current open is more than two ticks below the prior close, you might just need to switch the sign below:

    if (Open[0] < (Close[1] - ( TickSize*2)))




    Ryan M.NinjaTrader Customer Service

    Comment


      #3
      I don't believe it

      sometimes you just have to smile......

      Thanks.

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by PaulMohn, Today, 12:36 PM
      2 responses
      16 views
      0 likes
      Last Post PaulMohn  
      Started by Conceptzx, 10-11-2022, 06:38 AM
      2 responses
      53 views
      0 likes
      Last Post PhillT
      by PhillT
       
      Started by Kaledus, Today, 01:29 PM
      0 responses
      3 views
      0 likes
      Last Post Kaledus
      by Kaledus
       
      Started by yertle, Yesterday, 08:38 AM
      8 responses
      37 views
      0 likes
      Last Post ryjoga
      by ryjoga
       
      Started by rdtdale, Today, 01:02 PM
      1 response
      6 views
      0 likes
      Last Post NinjaTrader_LuisH  
      Working...
      X