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.
तबसे मेंबर है Sep 16, 2013
18 पोस्टों
Sep 16, 2013 at 12:57
तबसे मेंबर है Sep 16, 2013
18 पोस्टों
wait, are you talking about risk per trade? If yes, than 5% is too high, i'd say something about 1,5%, especially if you're using EA.
तबसे मेंबर है 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.

*व्यवसायिक इस्तेमाल और स्पैम को ब्रदाश नहीं किया जाएगा, और इसका परिणाम खाता को बन्द करना भी हो सकता है.
टिप: किसी चित्र या यूट्यूब या URL को पोस्ट करने से वे अपने आप आपके पोस्ट में आजाएगा!
टिप: @ चिन्ह को टाइप करें उपभोगता के नाम को अपने आप करने के लिए जो इस चर्चा में भाग ले रहा है.