Announcement

Collapse

Looking for a User App or Add-On built by the NinjaTrader community?

Visit NinjaTrader EcoSystem and our free User App Share!

Have a question for the NinjaScript developer community? Open a new thread in our NinjaScript File Sharing Discussion Forum!
See more
See less

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 rayyyu12, Today, 05:38 PM
    0 responses
    12 views
    0 likes
    Last Post rayyyu12  
    Started by xepher101, Yesterday, 12:19 PM
    2 responses
    30 views
    0 likes
    Last Post xepher101  
    Started by thumper57, Today, 04:30 PM
    0 responses
    8 views
    0 likes
    Last Post thumper57  
    Started by OllieFeraher, 05-09-2024, 11:14 AM
    5 responses
    16 views
    0 likes
    Last Post MisterTee  
    Started by jackiegils, Yesterday, 11:05 PM
    1 response
    11 views
    0 likes
    Last Post marcus2300  
    Working...
    X