View Single Post
  #1054 (permalink)  
Old 05-06-2008, 10:26 PM
zaxmarki zaxmarki is offline
Junior Member
 
Join Date: Dec 2007
Posts: 14
zaxmarki is on a distinguished road
Change settings

Quote:
Originally Posted by Enforcer View Post
Yup, avoid trading during news may help.
About stop placing orders when loose too much, look here

Code:
extern bool    AllowRecovery          = true;   //enable/disable loss management
extern double  MaxLossPercent         = 1;      //maximum loss in balance procents 1=1% max loss
extern bool    ExitAllTrades          = false;   //Close all open orders
extern bool    StopTrading            = false;   //stop trading if loss management was triggered
extern bool    PlaceRecoveryOrders    = false;   //Use counter orders to get in profit
if AllowRecovery = true will stop placing orders if loss is more than MaxLossPercent.
StopTrading = true will try to finish current cycle and stop after that
ExitAllTrades= true will act as stop loss at MaxLossPercent specified.
PlaceRecoveryOrders better let it to false, is enough one that go lose and you're screwed...
Enforcer, I mean is the quote above a new setting that we should be changing to?
Reply With Quote