Home › Forums › Tickstory Lite › General Discussion › Help needed. Please
-
AuthorPosts
-
Hi Voly,
Can you please try another EA to see if that works? Otherwise the next step to trouble-shoot would maybe to add some lines to the EA to print out a message so you know it’s doing something.
Hope this helps.
I have the same problem with any other EA too.
Hi Voly,
Have you tried to print an error message to the screen to see if the EA is running? Does the progress indicator on the Strategy Tester move at all?
Try creating a simple EA by copying and pasting the following code in a new MQ4 file and see if you see the output in the Tester’s ‘Journal’ window :
#property copyright "Copyright 2012, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net"
int init()
{
Print("Initialising..");
return(0);
}
int deinit()
{
return(0);
}
int start()
{
Print("Running..");
return(0);
}Regards.
Do I need a TDS working? (I had it only for a trial period which already expired)
Or do I need TS Lite only?The in-built Tickstory launcher will provide you with the ability to do fixed spread back-testing. TDS has a few more advanced features if you need them.
Regards.
Anyway, I installed the file.
I launched mt4 by F8 (TDS is not running, only “Lite”).
In Journal tab I see “Running”.Hi Voly – if you are seeing the “Running” message, this indicates that the strategy tester is working correctly. It is possible that your EA is not functioning correctly. Check the Journal tab to see if its raising any error messages.
Regards.
Interesting.
Now my ea is running, but I get 1.04% modelling quality, instead of 90%.Hi Voly – if you are not getting a 99.9% modelling quality then you have not followed the correct steps as outlined in this video:
http://www.youtube.com/watch?v=R-rMOen4UHg
You will need to regenerate your export again and ensure that you have launched your Metatrader via Tickstory (as shown in the video).
Hope this helps.
-
AuthorPosts
You must be logged in to reply to this topic.