Is there any reason why I cant seem to call values from a custom indicator that works perfectly fine as an indicator on a chart, but I just cant seem to get by errors when I try to call it as a function from a different indicator or strategy (same error).
What may make this different is that the custom indicator that I am calling to is a DLL compiled indicator. Is this a known issue? I have added the DLL as a reference.
I initiate it after the class intro bit, as in...
public class MyCustomIndicator1 : Indicator
{
MyDLLIndicator mydllind;
....
else if (State == State.DataLoaded)
{
mydllind = new MyDLLIndicator(Close, 2,4,4,7);
}
mydllind = MyDLLIndicator(Close, 2,4,4,7);
Any ideas? Thanks,
JackoOnHisBacko

Comment