Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

3 day Low Exit

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

    3 day Low Exit

    hi all - new to NJ scripting and perplexed with folloiwng

    trying to exit any long trades for when the current low is below the lowest low for the previous 3 days - following my script:

    if ((Low[0]) <= (MIN(Low, 3)[1]))
    {
    ExitLong("", "out-L(p)");
    }

    when i run the script (and print out the necessary numbers), the script enters a Long position, however does not exit as expected on a bar where the low is clearly below the min of the following 3 days low (the printed out numbers suggest that the condition is true, current low below MIN).

    the system behaves as expected for any Short trades where i have something similar (current High above max of previous 3 day highs)

    any suggestions as to what i am doing wrong is very much appreciated - thanking you in advance; cheers...

    ...jurgen
    Attached Files

    #2
    Originally posted by jurgenC View Post
    hi all - new to NJ scripting and perplexed with folloiwng

    trying to exit any long trades for when the current low is below the lowest low for the previous 3 days - following my script:

    if ((Low[0]) <= (MIN(Low, 3)[1]))
    {
    ExitLong("", "out-L(p)");
    }

    when i run the script (and print out the necessary numbers), the script enters a Long position, however does not exit as expected on a bar where the low is clearly below the min of the following 3 days low (the printed out numbers suggest that the condition is true, current low below MIN).

    the system behaves as expected for any Short trades where i have something similar (current High above max of previous 3 day highs)

    any suggestions as to what i am doing wrong is very much appreciated - thanking you in advance; cheers...

    ...jurgen
    Hard to say without seeing more of the code. Are you sure that you have used the correct EntrySignal name to tie to the ExitLong() order?

    Comment


      #3
      hi koganam - thanks (i just worked it out due to your post)

      need to change ExitLong("", "out-L(p)"); to ExitLong("out-L(p)", "");

      cheers - jurgen

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by Hwop38, 05-04-2026, 07:02 PM
      0 responses
      163 views
      0 likes
      Last Post Hwop38
      by Hwop38
       
      Started by CaptainJack, 04-24-2026, 11:07 PM
      0 responses
      313 views
      0 likes
      Last Post CaptainJack  
      Started by Mindset, 04-21-2026, 06:46 AM
      0 responses
      245 views
      0 likes
      Last Post Mindset
      by Mindset
       
      Started by M4ndoo, 04-20-2026, 05:21 PM
      0 responses
      350 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Started by M4ndoo, 04-19-2026, 05:54 PM
      0 responses
      179 views
      0 likes
      Last Post M4ndoo
      by M4ndoo
       
      Working...
      X