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 Jonker, Today, 01:19 PM
      0 responses
      1 view
      0 likes
      Last Post Jonker
      by Jonker
       
      Started by futtrader, Today, 01:16 PM
      0 responses
      5 views
      0 likes
      Last Post futtrader  
      Started by Segwin, 05-07-2018, 02:15 PM
      14 responses
      1,791 views
      0 likes
      Last Post aligator  
      Started by Jimmyk, 01-26-2018, 05:19 AM
      6 responses
      844 views
      0 likes
      Last Post emuns
      by emuns
       
      Started by jxs_xrj, 01-12-2020, 09:49 AM
      6 responses
      3,294 views
      1 like
      Last Post jgualdronc  
      Working...
      X