I've same indicators and when I'd open one of those indicators, I can't understand samething.
Please, see on this code:
public partial class GomRecorderIndicator : Indicator
//...
{
protected override sealed void Initialize()
{
CalculateOnBarClose = false;
BarsRequired=0;
GomInitialize();
if (iDataManager == -1)
{
iDataManager = Gom.DataManagerList.Name.IndexOf("Binary");
if (iDataManager == -1)
if (Gom.DataManagerList.Name.Count > 0)
iDataManager = 0;
if (iDataManager > -1)
FileFormat = Gom.DataManagerList.Name[iDataManager];
}
//...
public partial class GomRecorderIndicator : Indicator
Please, explane me this.

Comment