View Single Post
  #10 (permalink)  
Old 09-06-2007, 02:09 PM
Bongo's Avatar
Bongo Bongo is offline
Senior Member
 
Join Date: Oct 2005
Posts: 496
Bongo is an unknown quantity at this point
Will these codes work?
-max 5% drawdown.
-stop open new trade.
Thanks B.

extern double maxdrawdownpercent = 0.05;

if ( AccountBalance() - AccountEquity() > AccountBalance() * maxdrawdownpercent )
{
return(0);
}
Reply With Quote