DislikedThe reason I had an interest in the 24hr one was that there was more of a chance of actual trading taking place.
AttachmentIgnored
Trading correlation pairs by using the other pairs 843 replies
Export All pairs or selected pairs to .csv with script 3 replies
Pairs of Currency Pairs 4 replies
Trending Pairs / Ranging Pairs 0 replies
Robot trading 120 replies
DislikedThe reason I had an interest in the 24hr one was that there was more of a chance of actual trading taking place.
AttachmentIgnored
DislikedI reckon define variables outside Buy trade if() function - like;
RefreshRates();
double TradePrice; // scalpz
double Stop; // scalpz
double Take; // scalpz
// Buy trade
if (type == 0)
{
TradePrice=ask; // scalpz
Stop = NormalizeDouble(ask - sl,digits); // scalpz
Take = NormalizeDouble(ask + tp,digits); // scalpz
}//if (type == 0)Ignored
DislikedThis might be true...but considering the initial methodology of why this bot was set up in the first one I think the "proper" version still has the best profit making potential.Ignored
DislikedIgnored
DislikedSteve or Anyone else
Sorry if this sounds like a dumb question but if you lose connection to your broker, does your EA stop at the current line it is running or does it return to init() or once connection is restored does it go back to init() or carry on from where it stopped ?
Cheers
Scoobs.Ignored
DislikedHi guys.
I just finished reading through all the thread and it felt like reading chatroom log.
Anyway.. I am fairly new to trading forex but I think i comprehended your system, so will demo the original for some time.
Anyway, what I meant to say is: thanks thanks thanks thanks thanks.
That and keep up the good work.Ignored
DislikedI have been testing versions 1.6, 2.3, 2.4, 3.3 and now I see Original v1.4 - would this be the latest version?
I have also tested 24H versions 1, 2.5, and 3.3 - but now it looks like v3.1 is the latest?
I have read through the thread but am still confused...Ignored
DislikedSteve or Anyone else
Sorry if this sounds like a dumb question but if you lose connection to your broker, does your EA stop at the current line it is running or does it return to init() or once connection is restored does it go back to init() or carry on from where it stopped ?
Cheers
Scoobs.Ignored
DislikedIt will not receive any more ticks, meaning it the start() function won't be called anymore. It will continue the current execution of the start() function (the tick it is just processing, the last tick it received before the connection broke) until it reaches it's end, but of course calls to trading functions (OrderSend(), OrderModify(), etc.) will produce an error if the connection is already lost before start() ends. You must catch and handle such errors gracefully.
init() won't be called upon reconnection. init() will only be...Ignored
DislikedHey Steve,
any last minute bug fixes on the horizon? I want to setup the original bot on demo but if there's an upload coming, I would rather wait.
CheersIgnored