I can run a backtest via the Amibroker's Object COM model in .NET (and this works)
Dim AB = CreateObject("Broker.Application")
Try
Dim NewA = AB.AnalysisDocs.Open("C:\AFLTest\Analysis1.apx")
NewA.Run(2)
While NewA.IsBusy
System.Threading.Thread.Sleep(100)
End While
NewA.Export("C:\AFLTest\AFLTest.csv")
NewA.Close()
Catch ex As Exception
MessageBox.Show(ex.Message)
End Try
But I also want to run "Explore" as well.
Does anyone know how to do this? I've checked the documentation, but can't find anything unless I'm missing something.
Thanks for your assistance...