I have created strategy "ChartTrader" that i wish to export as a compiled assembly.
In this ChartTrader i have used a whole lot of NT standard Indicators and Opensource indicators from ex. UserAppShare. that can be used for differant things eg, targets, stops, sizings, trends etc,,,
All the indicators are addded like this example for a standard EMA.
private EMA FiltersEMAInd;
"StateDataLoaded"
FiltersEMAInd = EMA(Close, FiltersEMAPeriod);
FiltersEMAInd.Plots[0].Brush = Brushes.Goldenrod;
FiltersEMAInd.Name = string.Empty;
AddChartIndicator(FiltersEMAInd);
When i export my "Strategy" it wants to include all the indicators i have used and as such this is fine and works fine.
However it exports al these indicators alos as Compiled assemblys, is it not possible to just include them as non compiled assemblys ?
or just Exclude them form the Export, and require the user to have the indicator already avalible on their PC ?
for the Standard NinjaTrade Indicators this it not so much a problem but if i use a OpenSource indicator i dont what to include it as a compiled version.
Also this is giving issues when a user then already have a non Compiled version of the indicator already on their PC.
Or is this how it should be and how everyone is doing it ?
Comment