Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

How to Enter only after a winning trade signal?

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

    How to Enter only after a winning trade signal?

    In my strategy I have 2 rules that I need to program:

    1) Stop trades after 2 consecutive losers
    2) Resume trading only after a winning trade signal


    On Rule #1 I can use ProfitCurrency to detect winning and losing trades.

    On #2 I need to monitor if there was a winning trade signal before taking a live trade.

    Any ideas on how to program #2 rule would be greatly appreciated.

    Afshin

    #2
    Originally posted by afshinmoshrefi View Post
    In my strategy I have 2 rules that I need to program:

    1) Stop trades after 2 consecutive losers
    2) Resume trading only after a winning trade signal


    On Rule #1 I can use ProfitCurrency to detect winning and losing trades.

    On #2 I need to monitor if there was a winning trade signal before taking a live trade.

    Any ideas on how to program #2 rule would be greatly appreciated.

    Afshin
    Code:
     
    if (EntryConditionMet && !SuccessfulTrade)
    {
    EntrySignalMet = true;
    EntryPrice = Close[0];
    ExitPrice = EntryPrice + ProfitTarget;
    }
     
    if (Close[0] >= ExitPrice)
    {
    SuccessfulTrade = true;
    EntrySignalMet = false;
    MayTrade = true;
    }
    That is just a skeleton. you will have to declare your variables, and there might need to be a refinement of conditions too. Naturally, MayTrade will gate your normal signals, and SuccessfulTrade will have to be set false when your loss trigger is met.

    Comment

    Latest Posts

    Collapse

    Topics Statistics Last Post
    Started by charlesugo_1, 05-26-2026, 05:03 PM
    0 responses
    60 views
    0 likes
    Last Post charlesugo_1  
    Started by DannyP96, 05-18-2026, 02:38 PM
    1 response
    145 views
    0 likes
    Last Post NinjaTrader_ChelseaB  
    Started by CarlTrading, 05-11-2026, 05:56 AM
    0 responses
    161 views
    0 likes
    Last Post CarlTrading  
    Started by CarlTrading, 05-10-2026, 08:12 PM
    0 responses
    97 views
    0 likes
    Last Post CarlTrading  
    Started by Hwop38, 05-04-2026, 07:02 PM
    0 responses
    283 views
    0 likes
    Last Post Hwop38
    by Hwop38
     
    Working...
    X