Edit Your Comment
How to manage risk percent I decided to bet?
Sep 06, 2013 at 05:37
會員從Jul 11, 2013開始
3帖子
Hi.
I am a new trader.
I have readed a lot of articles and I have seen a lot of videos about manual and automatic trading. I am a developer too, so I did my own expert (http://www.myfxbook.com/members/rpalacios/pnd-ea/634782). Last month it worked very good (about 30% gain). This week it is not going well, but it was my fault because I start playing with same EA on differents pairs at same time and I forgot to control the number of orders on each pair.
Well, the question is: How should a trader manage the risk percent? I mean, differents traders talk about differents risk percents, but usually it always talk about 5 - 10%.
So, how I have invest that 5%?
Should I calculate the numbers of lots that represents the 5% of my capital?
Or do I set the stoploss such way that the lossing trade represents that 5%?
Or do I trade inside the 5% of equity, no mather how many orders or lots I manage?
Thanks in advance for yours answers!
I am a new trader.
I have readed a lot of articles and I have seen a lot of videos about manual and automatic trading. I am a developer too, so I did my own expert (http://www.myfxbook.com/members/rpalacios/pnd-ea/634782). Last month it worked very good (about 30% gain). This week it is not going well, but it was my fault because I start playing with same EA on differents pairs at same time and I forgot to control the number of orders on each pair.
Well, the question is: How should a trader manage the risk percent? I mean, differents traders talk about differents risk percents, but usually it always talk about 5 - 10%.
So, how I have invest that 5%?
Should I calculate the numbers of lots that represents the 5% of my capital?
Or do I set the stoploss such way that the lossing trade represents that 5%?
Or do I trade inside the 5% of equity, no mather how many orders or lots I manage?
Thanks in advance for yours answers!
會員從Jun 24, 2013開始
6帖子
會員從Nov 21, 2011開始
1601帖子
Sep 06, 2013 at 13:46
會員從Nov 21, 2011開始
1601帖子
Hi,
Should I calculate the numbers of lots that represents the 5% of my capital? => So this depend how far is your SL
Or do I set the stoploss such way that the lossing trade represents that 5%? => I prefer to use a fix SL
Or do I trade inside the 5% of equity, no mather how many orders or lots I manage? I think so
This is what a use for one of my EA:
//___Parameters
extern bool Money_Management=true;
extern int RiskPercent=1;
extern double Lots=0.1;
//____ UTILITIES
// Automatic Lotsizing
double LotsOptimized()
{
double lot=Lots;
//---- select lot size
if (Money_Management) lot=NormalizeDouble(MathFloor(AccountFreeMargin()*RiskPercent/100)/100,3);
// lot at this point is number of standard lots
return(lot);
}
So Let's say the account is €1200 so Lotsize for any trades will be 0.12 whatever the SL.
I loose 10 pips so Account is now €1190, next trade will be 0.11.
Should I calculate the numbers of lots that represents the 5% of my capital? => So this depend how far is your SL
Or do I set the stoploss such way that the lossing trade represents that 5%? => I prefer to use a fix SL
Or do I trade inside the 5% of equity, no mather how many orders or lots I manage? I think so
This is what a use for one of my EA:
//___Parameters
extern bool Money_Management=true;
extern int RiskPercent=1;
extern double Lots=0.1;
//____ UTILITIES
// Automatic Lotsizing
double LotsOptimized()
{
double lot=Lots;
//---- select lot size
if (Money_Management) lot=NormalizeDouble(MathFloor(AccountFreeMargin()*RiskPercent/100)/100,3);
// lot at this point is number of standard lots
return(lot);
}
So Let's say the account is €1200 so Lotsize for any trades will be 0.12 whatever the SL.
I loose 10 pips so Account is now €1190, next trade will be 0.11.
會員從Nov 21, 2011開始
1601帖子
Sep 16, 2013 at 23:06
會員從Nov 21, 2011開始
1601帖子
I just developped the StopLoss strategy below:
Opening trade with no SL and TP = X
Now if market doesn't go into trade's favor while EA is Long... if RSI < X then Modify Stop Loss X pips under Actual Price and TP = OpenPrice.
So I don't close this looser trade, I take the risk to loose X pips more but I try to exit @ 0 Pips.
Nothing fantastic... sometimes avoiding to loose pips, sometimes loosing a bit more!
This can be more suitable for a volatile pair.
Opening trade with no SL and TP = X
Now if market doesn't go into trade's favor while EA is Long... if RSI < X then Modify Stop Loss X pips under Actual Price and TP = OpenPrice.
So I don't close this looser trade, I take the risk to loose X pips more but I try to exit @ 0 Pips.
Nothing fantastic... sometimes avoiding to loose pips, sometimes loosing a bit more!
This can be more suitable for a volatile pair.

*商業用途和垃圾郵件將不被容忍,並可能導致帳戶終止。
提示:發佈圖片/YouTube網址會自動嵌入到您的帖子中!
提示:鍵入@符號,自動完成參與此討論的用戶名。