Thread: ASCTrend system
View Single Post
  #448 (permalink)  
Old 07-15-2006, 08:29 AM
waltini waltini is offline
Senior Member
 
Join Date: May 2006
Posts: 147
waltini is on a distinguished road
multiple trades

Hi Cubesteak,
I think it might be possible to have the EA do multiple trades by removing just one line

Quote:
if(AccountFreeMargin()<(500*Lots)){//2
Print("You are out of Money", AccountFreeMargin());
return(0);
}//2

if (!ExistPositions()){//2 // Remove this line?
if (PS){//3
OpenSell();
return(0);
}//3
if (PB){//3
OpenBuy();
return(0);
What do you think?

regards

waltini
Reply With Quote