DislikedMy wife is complaining that I always go to bed too late!!
Here is some trades of this afternoon....Ignored
Results from Basket 503.d or Basket 504 ?
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
DislikedMy wife is complaining that I always go to bed too late!!
Here is some trades of this afternoon....Ignored
DislikedThis happens to me also.
I think it's perhaps when there is a pair in "PairtoTrade" string that is not available to your broker.Ignored
DislikedI am not getting any trades opening on any of the 3 brokers.
I also see that I am not getting any of the on chart information you obtain on yours as shown in your screen shot on post number 5538.
I must be missing something right before my eyes, but don't know what it is.Ignored
DislikedMy wife is complaining that I always go to bed too late!!
Here is some trades of this afternoon....Ignored
// Resize the array appropriately
string NewArray = ArrayResize(TradePair, NoOfPairs);
int Index = 0;//For searching InputString
int LastIndex = 0;//Points the the most recent Index
for (cc = 0; cc < NoOfPairs; cc ++)
{
Index = StringFind(InputString, ",",LastIndex);
if (Index > -1)
{
TradePair[cc] = StringSubstr(InputString, LastIndex,Index-LastIndex);
TradePair[cc] = StringTrimLeft(TradePair[cc]);
TradePair[cc] = StringTrimRight(TradePair[cc]);
TradePair[cc] = StringConcatenate(TradePair[cc], AddChar);
LastIndex = Index+1;
[color=Blue] //maxou, see if this stops non-existing pairs being included and so triggering zero divide errors
double a = MarketInfo(TradePair[cc], MODE_ASK);// a = Ask
double b = MarketInfo(TradePair[cc], MODE_BID);// b = bid
double s = MarketInfo(TradePair[cc], MODE_SPREAD);// s = spread
if (a == 0 && b == 0 && s == 0)
{
cc--;
NoOfPairs--;
}//if (a == 0 && b == 0 && s == 0)
[/color]
}//if (Index > -1)
}//for (int cc; cc<NoOfPairs; cc ++)
// ============= END LOOP FOR PAIR TO TRADE void DoProgramm ()
{
if (ask == 0 && bid == 0 && digits == 0 && point == 0) return; DislikedMaxou, I am running your EA in Mode 2 (KG). I have right now 6 open trades quite into profit, and was wondering what is the exit strategy. The chart shows a Big Target number that was reached long ago, yet the trades remained open.
Thanks,Ignored
DislikedIgnored
Dislikedmaxou888
Member
maxou888,
your robot is applied to what chart? and what do I need on that chart? I did put it on 5m chart USDJPY, but no trades happening. Please let me know I want to test drive.Ignored
DislikedBut...but...but...today JPY is not a sell????? How can you make mulah the Steve?Ignored