Announcement

Collapse
No announcement yet.

Partner 728x90

Collapse

Help with Reversing Strategy

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

    Help with Reversing Strategy

    Hi NT Community.

    I downloaded this strategy from the free ecosystem and I noticed that it might be much better if it were reversed, and if it could have the add trades for the opposite direction. Can someone please help me reverse it and add the opposite directional trades to it?

    Some notes:
    - This strategy is currently for Longs only - you will see
    - I tried simply replacing the text "Long" with"Short" but that didn't accomplish the reversal - I had a historical performance of zero trades, so I assume there must be more to change about the code
    - After reversing it, (replacing the Longs for Shorts), please add the trade for the opposite direction (which will be for Longs after changing the original Long entry to Shorts)
    - Thank you! - Code is below:


    ***


    ***




    namespace NinjaTrader.NinjaScript.Strategies
    {
    public class TimingModel : Strategy
    {
    private RSI myRSI;

    protected override void OnStateChange()
    {
    if (State == State.SetDefaults)
    {
    Description = @"Timing Model from the June 2008 Stocks and Commodities magazine Article";
    Name = "TimingModel";
    Calculate = Calculate.OnBarClose;
    EntriesPerDirection = 1;
    EntryHandling = EntryHandling.AllEntries;
    IsExitOnSessionCloseStrategy = true;
    ExitOnSessionCloseSeconds = 30;
    IsFillLimitOnTouch = false;
    MaximumBarsLookBack = MaximumBarsLookBack.TwoHundredFiftySix;
    OrderFillResolution = OrderFillResolution.Standard;
    Slippage = 0;
    StartBehavior = StartBehavior.WaitUntilFlat;
    TimeInForce = TimeInForce.Gtc;
    TraceOrders = false;
    RealtimeErrorHandling = RealtimeErrorHandling.StopCancelClose;
    StopTargetHandling = StopTargetHandling.PerEntryExecution;
    BarsRequiredToTrade = 20;
    // Disable this property for performance gains in Strategy Analyzer optimizations
    // See the Help Guide for additional information
    IsInstantiatedOnEachOptimizationIteration = true;
    }
    else if (State == State.Configure)
    {
    myRSI = RSI(High, 2, 3);
    SetProfitTarget(CalculationMode.Percent, 0.075);
    AddChartIndicator(myRSI);
    }
    }

    protected override void OnBarUpdate()
    {
    if (CurrentBar < 200)
    return;

    // Enter long
    if (myRSI.Default[0] < 2 && myRSI.Default[1] > 1 && Close[0] > SMA(200)[0])
    EnterLongLimit(Low[0] * 1.025);

    // Exit conditions
    if (Close[0] > High[2] || BarsSinceEntryExecution() > 5)
    ExitLong();
    }
    }
    }

Latest Posts

Collapse

Topics Statistics Last Post
Started by NullPointStrategies, 03-13-2026, 05:17 AM
0 responses
83 views
0 likes
Last Post NullPointStrategies  
Started by argusthome, 03-08-2026, 10:06 AM
0 responses
150 views
0 likes
Last Post argusthome  
Started by NabilKhattabi, 03-06-2026, 11:18 AM
0 responses
79 views
0 likes
Last Post NabilKhattabi  
Started by Deep42, 03-06-2026, 12:28 AM
0 responses
52 views
0 likes
Last Post Deep42
by Deep42
 
Started by TheRealMorford, 03-05-2026, 06:15 PM
0 responses
59 views
0 likes
Last Post TheRealMorford  
Working...
X