/// <summary> /// Constructor. /// </summary> public IndicatorCompilationManager() { CustomIndicatorsList = new List <Indicator>(); _compiler = new CSharpCompiler(); foreach (Assembly assembly in GetReferencedAndInitialAssembly(Assembly.GetEntryAssembly())) { _compiler.AddReferencedAssembly(assembly); } }
/// <summary> /// Constructor. /// </summary> public IndicatorCompilationManager() { CustomIndicatorsList = new List<Indicator>(); _compiler = new CSharpCompiler(); foreach (Assembly assembly in GetReferencedAndInitialAssembly(Assembly.GetEntryAssembly())) { _compiler.AddReferencedAssembly(assembly); } }