Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How do I clear the Max Consecutive Loser/Winner?

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

    How do I clear the Max Consecutive Loser/Winner?

    I'm using a sim101 account. I'm printing the max consecutive losers. Even though I've reset the sim acct several times, it still says that the max consecutive loser is '4' in the Output window.

    ALSO, when I run my method call "CheckForLoserCount();" It places a long trade at candle close. I have no logic that tells the strategy to place any trade. I want it to close the strategy.


    Code:
    Print(SystemPerformance.AllTrades.TradesPerformance.MaxConsecutiveLoser);
    
    
    private void CheckForLoserCount()
    {
            if (SystemPerformance.AllTrades.TradesPerformance.Max ConsecutiveLoser == LoserCount)
           {
                 CloseStrategy("StochMomentumStrat");
    
                /* if (PositionAccount.MarketPosition == MarketPosition.Long && PositionAccount.Quantity == ContractAmount)
                   {
                         ExitLong(ContractAmount);
                         CloseStrategy("StochMomentumStrat");
                   }
    
                  else if (PositionAccount.MarketPosition == MarketPosition.Short && PositionAccount.Quantity == ContractAmount)
                  {
                          ExitShort(ContractAmount);
                         CloseStrategy("StochMomentumStrat");
                   }*/
          }
    }

    #2
    Hello jamestrader21x,

    Thank you for your post.

    Could you provide a reduced example strategy that demonstrates this behavior?

    CloseStrategy would be expected to submit an order to close a position if the strategy thinks one is open. Are any manual trades being taken on the same instrument and account while the strategy is running, or are any other strategies running on the same account and instrument combination?

    Thanks in advance; I look forward to assisting you further.

    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
    71 views
    0 likes
    Last Post PaulMohn  
    Working...
    X