diff --git a/strategies/2-period-rsi/README.md b/strategies/2-period-rsi/README.md index 6bc3ae0..5febe87 100644 --- a/strategies/2-period-rsi/README.md +++ b/strategies/2-period-rsi/README.md @@ -23,9 +23,9 @@ For taking short positions, invert the above conditions and use a 2-period RSI r **Short Entry Threshold**: The RSI value above which to allow entering a short position. (Default: 95) -**Long Term Trend Period**: The period to use for the simple moving average used to define the long term trend. (Default: 200) +**Long-Term Trend Period**: The period to use for the simple moving average used to define the long term trend. (Default: 200) -**Short Term Trend Period**: The period to use for the simple moving average used to define the short term trend. (Default: 5) +**Short-Term Trend Period**: The period to use for the simple moving average used to define the short term trend. (Default: 5) **Use Fixed Position Sizing**: Whether to use the same position size for every trade in order to neutralize the effect of lower historical prices. (Default: false) diff --git a/strategies/2-period-rsi/TwoPeriodRSI.cs b/strategies/2-period-rsi/TwoPeriodRSI.cs index a896b14..68a5969 100644 --- a/strategies/2-period-rsi/TwoPeriodRSI.cs +++ b/strategies/2-period-rsi/TwoPeriodRSI.cs @@ -90,11 +90,11 @@ namespace NinjaTrader.NinjaScript.Strategies public int ShortEntryThreshold { get; set; } [NinjaScriptProperty] - [Display(Name = "Long Term Trend Period", GroupName = "2-Period RSI", Order = 5)] + [Display(Name = "Long-Term Trend Period", GroupName = "2-Period RSI", Order = 5)] public int LongTermTrendPeriod { get; set; } [NinjaScriptProperty] - [Display(Name = "Short Term Trend Period", GroupName = "2-Period RSI", Order = 6)] + [Display(Name = "Short-Term Trend Period", GroupName = "2-Period RSI", Order = 6)] public int ShortTermTrendPeriod { get; set; } [NinjaScriptProperty]