Quote:
|
Originally Posted by jorgka
Lowphat
It works except is places the trade on every bar. How do you allow the EA to only place the trade when the signal is given. One would think that iCustom(NULL, 0, "BrainTrend2Sig",1,0); //down arrow, iCustom(NULL, 0, "BrainTrend2Sig",1,0); //up arrow would be fine except this does not seem to be the case.
Jorgka
|
its not
iCustom(NULL, 0, "BrainTrend2Sig",1,0); //down arrow,
iCustom(NULL, 0, "BrainTrend2Sig",1,0); //up arrow
which you typed above
its
iCustom(NULL, 0, "BrainTrend2Sig",0,0); //up arrow
iCustom(NULL, 0, "BrainTrend2Sig",1,0); //down arrow
if you still have problems with it making to many entrys you may want to check out
***THIS*** thread