Remove unnecessary parameters from Internal Bar Strength Band strategy
This commit is contained in:
parent
c427ace72e
commit
8997f3f63d
@ -19,24 +19,10 @@ namespace NinjaTrader.NinjaScript.Strategies
|
||||
{
|
||||
if (State == State.SetDefaults)
|
||||
{
|
||||
Description = @"Long only bot which bases trades on internal bar strength and lower band condition";
|
||||
Name = "Internal Bar Strength Band Bot";
|
||||
Description = @"Long only bot which bases trades on internal bar strength and lower band condition";
|
||||
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;
|
||||
|
||||
LowerBandMultiplier = 2.5;
|
||||
IBSEntryThreshold = 0.3;
|
||||
|
Loading…
Reference in New Issue
Block a user