Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Exit on session close

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

    #16
    Hello ozziyhtomit,

    Thank you for your reply.

    If you're setting them in OnStateChange you can do that from either State.SetDefaults or State.Configure, you may override the platform settings for IsExitOnSessionCloseStrategy and ExitOnSessionCloseSeconds and these will be used for the strategy in question instead of the set defaults in the platform:


    Code:
    protected override void OnStateChange()
    {
        if (State == State.SetDefaults)
        {
            // Triggers the exit on close function 30 seconds prior to trading day end
            IsExitOnSessionCloseStrategy = true;
            ExitOnSessionCloseSeconds = 30;
        }
    }
    Please let us know if we may be of further assistance to you.

    Comment


      #17
      I want it to exit at close but want the strategy to stay open. The funding rules says you cannot trade between 5 and 6 pm. Thx.

      Comment


        #18
        Hello JTizz,

        Thank you for your note.

        If IsExitOnSessionClosedStrategy is set to true, the strategy will cancel all strategy-generated orders and close all open strategy positions at the close of the session. This does not disable the strategy - it will still "stay open" and enabled to place trades the next time that the entry conditions become true. Please see the following help guide pages for more information about IsExitOnSessionCloseStrategy and ExitOnSessionCloseSeconds:Another option you may want to consider for placing trades during certain hours is using a time filter. We have a reference sample for using a time filter to limit trading hours that may be found here:


        Please feel free to reach out with any additional questions or concerns.

        Comment

        Latest Posts

        Collapse

        Topics Statistics Last Post
        Started by Mindset, 04-21-2026, 06:46 AM
        0 responses
        90 views
        0 likes
        Last Post Mindset
        by Mindset
         
        Started by M4ndoo, 04-20-2026, 05:21 PM
        0 responses
        137 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by M4ndoo, 04-19-2026, 05:54 PM
        0 responses
        68 views
        0 likes
        Last Post M4ndoo
        by M4ndoo
         
        Started by cmoran13, 04-16-2026, 01:02 PM
        0 responses
        120 views
        0 likes
        Last Post cmoran13  
        Started by PaulMohn, 04-10-2026, 11:11 AM
        0 responses
        72 views
        0 likes
        Last Post PaulMohn  
        Working...
        X