Code:
//
#region EMA_Cross
[Description("Allow Entrys/Exits on Fast/Slow EMA crossings ")]
[GridCategory("*EMA Crossings Control")][RefreshProperties(RefreshProperties.All)] [Gui.Design.DisplayNameAttribute("*Enable Control")]
public EmaCrosses EmaCross { get { return emaCross; } set { emaCross = value; } }
//
[Description("Allow Entrys/Exits if price Above/Below EMA Slow plot ")]
[GridCategory("*EMA Crossings Control")][RefreshProperties(RefreshProperties.All)] [Gui.Design.DisplayNameAttribute("*Enable Limits")]
public EmaLimits EmaLimit { get { return emaLimit; } set { emaLimit = value; } }
//
[Description("Fast EMA Period Signal Line")]
[GridCategory("*EMA Crossings Control")]
public int EmaFast { get { return emaFast; } set { emaFast = value; } }
//
[Description("Slow EMA Period Signal line")]
[GridCategory("*EMA Crossings Control")]
public int EmaSlow { get { return emaSlow; } set { emaSlow = value; } }
//
#endregion

Comment