What do I need to do? Here are the relevant code bits:
#region Variables
privatestring pivotTarget = @"Pivot"; // Temorary default. Actual input choices: R3, R2, R1, PP, S1, S2, S3
// Condition set 2 for Long Exit
if (High[0] >= CMIPivotsDaily_V73(10, false, PlotAlignPD.Left, HLCCalculationMode.CalcFromIntradayData, true, 15).“pivotTarget”[0])
{
ExitLong("ExitLongPivot", "EnterLong");
}
#region Properties
[Description("Choices: R3 R2 R1 PP S1 S2 S3")]
[Category("Parameters")]
publicstring PivotTarget
{
get { return pivotTarget; }
set { pivotTarget = value; }
}

Comment