MultiBob, a multi symbol NB10.2(a) autotrader
-
fire580
- Trader
- Posts: 314
- Joined: Wed May 09, 2012 4:51 pm
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
- hansnl
- Trader
- Posts: 101
- Joined: Sun May 20, 2012 3:18 pm
- Location: Rotterdam Netherlands
Re: MultiBob, a multi symbol NB10.2(a) autotrader
Have a look at the settings Auto symbols and or pairs to tradefire580 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
that will do the job or set stop trading to true
regards
hans..
-
fire580
- Trader
- Posts: 314
- Joined: Wed May 09, 2012 4:51 pm
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?
- hansnl
- Trader
- Posts: 101
- Joined: Sun May 20, 2012 3:18 pm
- Location: Rotterdam Netherlands
Re: MultiBob, a multi symbol NB10.2(a) autotrader
Just open a new chart , put Multibob on it and set stop trading to true !!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?
or in the common tab unclick live trading.
that does the job as well
good luck
-
fire580
- Trader
- Posts: 314
- Joined: Wed May 09, 2012 4:51 pm
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
- gaheitman
- Trader
- Posts: 655
- Joined: Tue Nov 15, 2011 10:55 pm
- Location: Richmond, VA, US
Re: MultiBob, a multi symbol NB10.2(a) autotrader
Did it enter the trades in the first place? It shouldn't touch them if the Magic Number doesn't match.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?
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
-
fire580
- Trader
- Posts: 314
- Joined: Wed May 09, 2012 4:51 pm
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
-
APQN
- Trader
- Posts: 47
- Joined: Wed Aug 22, 2012 8:08 am
Re: MultiBob, a multi symbol NB10.2(a) autotrader
Hi Lilac,lilac wrote: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 depositsAPQN wrote:I haven't got any trade either. Not sure if this is normal!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!
You might want to update to version V1.0.2. It only came out today.
Best regards,
I'm the same. No trade overnight. Not sure why. "Stop trading" is definitely set to "false".
Anyone else having the same problem?
Regards,
-
garyfritz
Re: MultiBob, a multi symbol NB10.2(a) autotrader
MultiBob just entered a position, and the TP is the same as the entry price??
You do not have the required permissions to view the files attached to this post.
-
Lifesys
- Trader
- Posts: 126
- Joined: Wed Apr 25, 2012 2:05 am
- Location: Echuca Victoria. Australia
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.
does NOT give spread in pips, hence default maxSpread = 120; instead of 12 (pips).
(Ask-Bid) * Pipfactor always gives spread in pips, so replace
An interesting EA anyway - great concept. Less trades is usually better long term.
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 )(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);You do not have the required permissions to view the files attached to this post.