stevehopwoodforex.com
https://www.stevehopwoodforex.com/phpBB3/
Print view

MultiBob, a multi symbol NB10.2(a) autotrader
https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?t=827
Page 13 of 53
Author:  fire580 [ Mon Sep 24, 2012 8:30 pm ]
Post subject:  Re: MultiBob, a multi symbol NB10.2(a) autotrader

Can someone explain to me how to run this just for the information and not to trade - when I attach to a chart it enters stops and limits on any existing open trades I have - how can I prevent this - please
Author:  hansnl [ Mon Sep 24, 2012 8:41 pm ]
Post subject:  Re: MultiBob, a multi symbol NB10.2(a) autotrader

fire580 wrote:Can someone explain to me how to run this just for the information and not to trade - when I attach to a chart it enters stops and limits on any existing open trades I have - how can I prevent this - please
Have a look at the settings Auto symbols and or pairs to trade
that will do the job or set stop trading to true

regards

hans..
Author:  fire580 [ Mon Sep 24, 2012 8:47 pm ]
Post subject:  Re: MultiBob, a multi symbol NB10.2(a) autotrader

Thank you hansnl I do have stop trading set to true - and it is not trading... but takes over my existing trades when I attach to a chart?
Author:  hansnl [ Mon Sep 24, 2012 8:56 pm ]
Post subject:  Re: MultiBob, a multi symbol NB10.2(a) autotrader

fire580 wrote:Thank you hansnl I do have stop trading set to true - and it is not trading... but takes over my existing trades when I attach to a chart?
Just open a new chart , put Multibob on it and set stop trading to true !!
or in the common tab unclick live trading.

that does the job as well

good luck
Author:  fire580 [ Mon Sep 24, 2012 9:04 pm ]
Post subject:  Re: MultiBob, a multi symbol NB10.2(a) autotrader

thanks again hansnl - clicking on the common tab did the trick - strange how it wasn't trading but taking over my existing trades? hopefully will be fine now - thanks
Author:  gaheitman [ Mon Sep 24, 2012 9:07 pm ]
Post subject:  Re: MultiBob, a multi symbol NB10.2(a) autotrader

fire580 wrote:Thank you hansnl I do have stop trading set to true - and it is not trading... but takes over my existing trades when I attach to a chart?
Did it enter the trades in the first place? It shouldn't touch them if the Magic Number doesn't match.

I suppose you could enter a return(0); statement after the showGrid() call in start();

Perhaps Paul will add the "make this EA an indicator" option in a future release. :>

George
Author:  fire580 [ Mon Sep 24, 2012 9:37 pm ]
Post subject:  Re: MultiBob, a multi symbol NB10.2(a) autotrader

thanks gaheitman - No it didn't enter the trades in the first place - but clicking on no live trading in the commons tab has done the trick for now - Yes it would be nice if Paul make this EA an Indicator
Author:  APQN [ Mon Sep 24, 2012 10:45 pm ]
Post subject:  Re: MultiBob, a multi symbol NB10.2(a) autotrader

lilac wrote:
APQN wrote:
shiningstar wrote:Thanks for the great EA, looks very nice! I put it on my Empty4 account yesterday but it still has not open any trade yet. Is this normal? Thanks!
I haven't got any trade either. Not sure if this is normal!

You might want to update to version V1.0.2. It only came out today.

Best regards,
Still no trades over here either, running since yesterday before opening, upgraded to V1.0.2 today and restarted, but still no trades, and no errors. Maybe this ea is so good it refuses to trade in this market conditions, preserving our precious deposits :roll:
Hi Lilac,

I'm the same. No trade overnight. Not sure why. "Stop trading" is definitely set to "false".

Anyone else having the same problem?

Regards,
Author:  garyfritz [ Tue Sep 25, 2012 2:43 am ]
Post subject:  Re: MultiBob, a multi symbol NB10.2(a) autotrader

MultiBob just entered a position, and the TP is the same as the entry price??
Author:  Lifesys [ Tue Sep 25, 2012 3:39 am ]
Post subject:  Re: MultiBob, a multi symbol NB10.2(a) autotrader

Hi
I never understand why "no trade" is a problem. Another 10.2 EA adds >20% on our account often, but then we turn it off for 2-3 weeks - others abandoned it as "did not work". Trend trading is for when there are clear trends. The other EA indicates 'no trades' at present - for good reason.
A couple of little refinement/additions to MB102 could be considered Paul. I added a 60th field (59) to show direction of open trades - very useful, especially when viewed with D1 slope, angle & H4 trend. Aware that multi-stack trades are allowed but hopefully all in same direction -attached.
Another refinement I have pointed out on many threads is the 'maxSpread' inconsistency.

Code: Select all

MarketInfo( symbolNames[symbolIndex], MODE_SPREAD )
does NOT give spread in pips, hence default maxSpread = 120; instead of 12 (pips).
(Ask-Bid) * Pipfactor always gives spread in pips, so replace

Code: Select all

// if (MarketInfo( symbolNames[symbolIndex], MODE_SPREAD ) > maxSpread) return( false );  with
   string pair = symbolNames[symbolIndex];
   if ((MarketInfo(pair,MODE_ASK) - MarketInfo(pair,MODE_BID)) * symbolValues[symbolIndex][51] > maxSpread) 
      return (false);
An interesting EA anyway - great concept. Less trades is usually better long term.
All times are UTC Page 13 of 53