Is there something more I need to do to get default Enums to work?
public enum TF { FALSE,TRUE }
private TF fibretracement = TF.FALSE;
[Description("Add Fibonacci Retracement")]
[Category(" A. MULTI-DIVERGENCE")]
public TF FibRetracement
{
get { return fibretracement; }
set { fibretracement = value; }
}
Thanks
Matt

Comment