In my strategy i want to use custom indicator and sourse for this indicator is other indicator.
Example:
protected override void Initialize()
{
kama = new Indicator.KAMA() { Fast = kama_fast, Period = kama_period, Slow = kama_slow };
custom_indi = new Indicator.MuCustomIndi() { size = 0.5, Input = kama};
Add(custom_indi );
base.Initialize();
}

Comment