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 Geovanny Suaza, 02-11-2026, 06:32 PM
    0 responses
    646 views
    0 likes
    Last Post Geovanny Suaza  
    Started by Geovanny Suaza, 02-11-2026, 05:51 PM
    0 responses
    367 views
    1 like
    Last Post Geovanny Suaza  
    Started by Mindset, 02-09-2026, 11:44 AM
    0 responses
    107 views
    0 likes
    Last Post Mindset
    by Mindset
     
    Started by Geovanny Suaza, 02-02-2026, 12:30 PM
    0 responses
    569 views
    1 like
    Last Post Geovanny Suaza  
    Started by RFrosty, 01-28-2026, 06:49 PM
    0 responses
    573 views
    1 like
    Last Post RFrosty
    by RFrosty
     
    Working...
    X