Kangaroomarket
Kangaroomarket
Friends

Add friends via their profile or user search and you will be able to see if they are online

Kangaroomarket
Added topic Does this make sense for a drawdown minimiser, and also is there a way I can improve the lots sizing thing to take on less risk in a drawdown?
void maxloss(){ int total = PositionsTotal (); int orderType = ( int ) PositionGetInteger ( POSITION_TYPE ) ; double equity = AccountInfoDouble ( ACCOUNT_EQUITY ); double Lossdifference = balance - equity; NormalizeDouble (Lossdifference, _Digits );
Kangaroomarket
Added topic Trying to code my partial closes to a percentage of the tp instead of a fixed point value
void Partialclosing(){ double ask = SymbolInfoDouble ( _Symbol , SYMBOL_ASK ); double bid = SymbolInfoDouble ( _Symbol , SYMBOL_BID ); ask = NormalizeDouble (ask, _Digits ); bid = NormalizeDouble (bid, _Digits ); for ( int i = PositionsTotal ()- 1 ;
Kangaroomarket
Added topic HELP! How do I set my SL to Breakeven on first partial closing?
Hi guys, I'm coding a range breakout strategy, and as the title says, I'm having difficulty with the that particular problem. 
Kangaroomarket
Registered at MQL5.community