Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Stop Function for Errors Handling

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

    Stop Function for Errors Handling

    Hello, I have a stop function I am working on for error handling. It is copied below. The purpose of this code is to exist any working orders and also cancel any pending orders, then I throw a flag(haltProcessing = true which I poll in onbarupdate, and return; if true(thus stopping the code from running).

    In my main code (onbarupdate), I create my long and short orders by using this code:
    entryShortOrder1 = EnterShort(numcontracts, "target1short");
    entryLongOrder1 = EnterLong(numcontracts, "target1long");

    My question is, is my logic and syntax correct?



    private void StopStrategy()
    {
    if (entryLongOrder1 != null){
    CancelOrder(entryLongOrder1);
    }
    if (entryShortOrder1 != null){
    CancelOrder(entryShortOrder1);
    }

    // If we have a position we will need to close the position
    if (Position.MarketPosition == MarketPosition.Long)
    {
    entryLongOrder1 = ExitLong("target1long");
    }
    if (Position.MarketPosition == MarketPosition.Short)
    {
    entryShortOrder1 = ExitShort("target1short");
    }

    haltProcessing = true;
    }//end stopstrategy

    #2
    Hello ktmdave,

    Your logic and syntax should be good.
    JCNinjaTrader Customer Service

    Comment


      #3
      Thank you!

      Comment

      Latest Posts

      Collapse

      Topics Statistics Last Post
      Started by bortz, 11-06-2023, 08:04 AM
      47 responses
      1,608 views
      0 likes
      Last Post aligator  
      Started by jaybedreamin, Today, 05:56 PM
      0 responses
      9 views
      0 likes
      Last Post jaybedreamin  
      Started by DJ888, 04-16-2024, 06:09 PM
      6 responses
      19 views
      0 likes
      Last Post DJ888
      by DJ888
       
      Started by Jon17, Today, 04:33 PM
      0 responses
      6 views
      0 likes
      Last Post Jon17
      by Jon17
       
      Started by Javierw.ok, Today, 04:12 PM
      0 responses
      16 views
      0 likes
      Last Post Javierw.ok  
      Working...
      X