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 Balage0922, Today, 07:38 AM
      0 responses
      2 views
      0 likes
      Last Post Balage0922  
      Started by JoMoon2024, Today, 06:56 AM
      0 responses
      6 views
      0 likes
      Last Post JoMoon2024  
      Started by Haiasi, 04-25-2024, 06:53 PM
      2 responses
      19 views
      0 likes
      Last Post Massinisa  
      Started by Creamers, Today, 05:32 AM
      0 responses
      6 views
      0 likes
      Last Post Creamers  
      Started by Segwin, 05-07-2018, 02:15 PM
      12 responses
      1,786 views
      0 likes
      Last Post Leafcutter  
      Working...
      X