Remove hard-coded long-term trend period value from ConnorsRSI strategy
This commit is contained in:
parent
9d8e5974b8
commit
1344107973
@ -1,6 +1,7 @@
|
||||
#region Using declarations
|
||||
using NinjaTrader.Cbi;
|
||||
using NinjaTrader.NinjaScript.Indicators;
|
||||
using System;
|
||||
using System.ComponentModel.DataAnnotations;
|
||||
#endregion
|
||||
|
||||
@ -39,7 +40,7 @@ namespace NinjaTrader.NinjaScript.Strategies
|
||||
|
||||
protected override void OnBarUpdate()
|
||||
{
|
||||
if (CurrentBar < 200)
|
||||
if (CurrentBar < Math.Max(LongTermTrendPeriod, PercentRankPeriod))
|
||||
return;
|
||||
|
||||
if (Close[0] > longTermTrend[0] && connorsRSI[0] < 15)
|
||||
|
Loading…
Reference in New Issue
Block a user