for thoose really simple ea's and if you're not a wiz. at coding, the best place to go is here:
http://sufx.core.t3-ism.net/ExpertAd...ndex.html#Buy1
for anything that can be run off of simple signals like cci, macd, moving average, etc. not only does it let YOU solve the problem the way you want, it also helps you learn a bit of coding so you're not so CO-dependant on others to code for you.

.
now as for more money;
there's a section in the code, that you'll have to search for, at the top, in comments. it looks like this
PHP Code:
//+------------------------------------------------------------------+
//| Signal Begin(Entry) |
//+------------------------------------------------------------------+
//your opening logics will be here //+------------------------------------------------------------------+
//| Signal End |
//+------------------------------------------------------------------+
simply copy each logic as many times as you want to have options for increasing lot sizes and change,
PHP Code:
Order = SIGNAL_SELL;
to
PHP Code:
Order = SIGNAL_SELL; Lots = 1;
it should work
