44 lines
1.1 KiB
C#
44 lines
1.1 KiB
C#
#region Using declarations
|
|
using NinjaTrader.Cbi;
|
|
using NinjaTrader.NinjaScript.Indicators;
|
|
#endregion
|
|
|
|
namespace NinjaTrader.NinjaScript.Strategies
|
|
{
|
|
public class InternalBarStrengthBot : Strategy
|
|
{
|
|
private InternalBarStrength ibs;
|
|
|
|
protected override void OnStateChange()
|
|
{
|
|
if (State == State.SetDefaults)
|
|
{
|
|
Name = "Internal Bar Strength Bot";
|
|
Description = @"Long only bot which bases trades on internal bar strength";
|
|
Calculate = Calculate.OnBarClose;
|
|
EntriesPerDirection = 1;
|
|
}
|
|
else if (State == State.DataLoaded)
|
|
{
|
|
ibs = InternalBarStrength();
|
|
}
|
|
}
|
|
|
|
protected override void OnBarUpdate()
|
|
{
|
|
if (CurrentBar < BarsRequiredToTrade)
|
|
return;
|
|
|
|
if (ibs[0] < 0.2)
|
|
EnterLong();
|
|
else if (ibs[0] > 0.8 && Position.MarketPosition == MarketPosition.Long)
|
|
ExitLong();
|
|
}
|
|
|
|
public override string DisplayName
|
|
{
|
|
get { return Name; }
|
|
}
|
|
}
|
|
}
|