Thread
:
Coding Help Please - easy stuff
View Single Post
#
10
(
permalink
)
09-06-2007, 01:09 PM
Bongo
Senior Member
Join Date: Oct 2005
Posts: 302
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);
}
Bongo
View Public Profile
Send a private message to Bongo
Find all posts by Bongo