View Single Post
  #4 (permalink)  
Old 03-23-2006, 01:41 AM
lowphat's Avatar
lowphat lowphat is offline
Senior Member
 
Join Date: Sep 2005
Posts: 200
lowphat is on a distinguished road
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
Reply With Quote