View Single Post
  #10 (permalink)  
Old 09-06-2007, 01:09 PM
Bongo Bongo is offline
Senior Member
 
Join Date: Oct 2005
Posts: 302
Bongo is on a distinguished road
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