ninjatrader/strategies/rsi-25-75/RSITwentyFiveBot.cs

127 lines
4.7 KiB
C#
Raw Normal View History

2024-09-24 13:39:23 +00:00
#region Using declarations
using NinjaTrader.Cbi;
using NinjaTrader.NinjaScript.Indicators;
using System;
using System.ComponentModel.DataAnnotations;
2024-09-24 13:39:23 +00:00
#endregion
namespace NinjaTrader.NinjaScript.Strategies
{
public class RSITwentyFiveBot : Strategy
{
private SMA longTermTrend;
private RSI rsi;
2024-09-24 13:39:23 +00:00
protected override void OnStateChange()
{
if (State == State.SetDefaults)
{
Description = @"Taken from chapter 3 of High Probability ETF Trading (2009) by Larry Connors";
2024-09-24 13:39:23 +00:00
Name = "RSI 25 / 75 Bot";
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;
IsInstantiatedOnEachOptimizationIteration = true;
LongTermTrendPeriod = 200;
RSIPeriod = 4;
RSISmoothing = 1;
EnableLongTrades = true;
LongRSIEntry = 25;
LongRSIExit = 55;
EnableShortTrades = true;
ShortRSIEntry = 75;
ShortRSIExit = 45;
EnableAggressiveEntries = true;
AggressiveLongRSIEntry = 20;
AggressiveShortRSIEntry = 80;
2024-09-24 13:39:23 +00:00
}
else if (State == State.DataLoaded)
2024-09-24 13:39:23 +00:00
{
longTermTrend = SMA(LongTermTrendPeriod);
rsi = RSI(RSIPeriod, RSISmoothing);
2024-09-24 13:39:23 +00:00
}
}
protected override void OnBarUpdate()
{
if (CurrentBar < Math.Max(LongTermTrendPeriod, RSIPeriod))
return;
2024-09-24 13:39:23 +00:00
}
public override string DisplayName
{
get { return Name; }
}
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name = "Long-Term Trend Period", GroupName = "RSI 25 / 75 Bot", Order = 1)]
public int LongTermTrendPeriod { get; set; }
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name = "RSI Period", GroupName = "RSI 25 / 75 Bot", Order = 2)]
public int RSIPeriod { get; set; }
[NinjaScriptProperty]
[Range(1, int.MaxValue)]
[Display(Name = "RSI Smoothing", GroupName = "RSI 25 / 75 Bot", Order = 3)]
public int RSISmoothing { get; set; }
[NinjaScriptProperty]
[Display(Name = "Enable Long Trades", GroupName = "RSI 25 / 75 Bot", Order = 4)]
public bool EnableLongTrades { get; set; }
[NinjaScriptProperty]
[Range(0.1, double.MaxValue)]
[Display(Name = "Long RSI Entry", GroupName = "RSI 25 / 75 Bot", Order = 5)]
public double LongRSIEntry { get; set; }
[NinjaScriptProperty]
[Range(0.1, double.MaxValue)]
[Display(Name = "Long RSI Exit", GroupName = "RSI 25 / 75 Bot", Order = 6)]
public double LongRSIExit { get; set; }
[NinjaScriptProperty]
[Display(Name = "Enable Short Trades", GroupName = "RSI 25 / 75 Bot", Order = 7)]
public bool EnableShortTrades { get; set; }
[NinjaScriptProperty]
[Range(0.1, double.MaxValue)]
[Display(Name = "Short RSI Entry", GroupName = "RSI 25 / 75 Bot", Order = 8)]
public double ShortRSIEntry { get; set; }
[NinjaScriptProperty]
[Range(0.1, double.MaxValue)]
[Display(Name = "Short RSI Exit", GroupName = "RSI 25 / 75 Bot", Order = 9)]
public double ShortRSIExit { get; set; }
[NinjaScriptProperty]
[Display(Name = "Enable Aggressive Entries", GroupName = "RSI 25 / 75 Bot", Order = 10)]
public bool EnableAggressiveEntries { get; set; }
[NinjaScriptProperty]
[Range(0.1, double.MaxValue)]
[Display(Name = "Aggressive Long RSI Entry", GroupName = "RSI 25 / 75 Bot", Order = 11)]
public double AggressiveLongRSIEntry { get; set; }
[NinjaScriptProperty]
[Range(0.1, double.MaxValue)]
[Display(Name = "Aggressive Short RSI Entry", GroupName = "RSI 25 / 75 Bot", Order = 12)]
public double AggressiveShortRSIEntry { get; set; }
2024-09-24 13:39:23 +00:00
}
}