I made my own NinjaScript library:
using System;
using System.ComponentModel;
using System.Diagnostics;
using System.Drawing;
using System.Drawing.Drawing2D;
using System.Xml.Serialization;
using NinjaTrader.Cbi;
using NinjaTrader.Data;
using NinjaTrader.Gui.Chart;
using System.Collections;
using System.Collections.Generic;
using System.Linq;
namespace i_Lib
{
public enum CS { Black, White, Print }; //ColorSet
public enum TF { H1, D1, W1 }
public struct BandColors_struct
{
public Color fill_color;
public Color plots_color;
}
}
And I use this library in my different idicators this way:
using i_Lib;
Now I need to export some of my indicators, that using this library in protected compiled assembly.
I can made assembly in my computer.
But I got error when import assembly on another computer.
What am I doing wrong?
Please help.

Comment