
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
is there also a version for 5 digit broker available and where can it be found?
digits
is there also a version for 5 digit broker available and where can it be found?
no problem! xmeter adapts by itself the number of digits.
no problem! xmeter adapts by itself the number of digits.
thnx, nice EA ...
if i set risk to 0.1 w/ $1000 acc. you think it is save enough when trading all pairs?
thnx, nice EA ... if i set risk to 0.1 w/ $1000 acc. you think it is save enough when trading all pairs?
all depends on you littlest lot possible with you broker.
You have to be carefull because of risk of very huge drawdown in certain case.
with 10k euros you can trade all pairs with 0.01 lot.
I advice you to select the best pairs ( avoid all pairs with chf ). You can try the triplet
eurusd, eurgbp,gbpusd ( please see my response to toxxum ) and perhaps add audusd.
be carefull to the drawdown
thnx, nice EA ... if i set risk to 0.1 w/ $1000 acc. you think it is save enough when trading all pairs?
all depends on you littlest lot possible with you broker.
You have to be carefull because of risk of very huge drawdown in certain case.
with 10k euros you can trade all pairs with 0.01 lot.
I advice you to select the best pairs ( avoid all pairs with chf ). You can try the triplet
eurusd, eurgbp,gbpusd ( please see my response to toxxum ) and perhaps add audusd.
separated by a semicolon in special pairs ?
eurusd;eurgbp;gbpusd
hello,
you have to edit xmeter and find in the source :
if (AllowNewTrades) {
//--- iterate over all allowed trade pairs in their priority ---
for(int PairID = 0; PairID < TradeCountBuy || PairID < TradeCountSell; PairID++) {
if (PairID < TradeCountBuy) {
//--- check buying of PairID pair ---
pair = TradePairBuy[PairID];
// ##################### I add this line below
if(pair!="EURUSD") continue;
and this one :
if (PairID < TradeCountSell) {
//--- check buying of PairID pair ---
pair = TradePairSell[PairID];
//##################### I add this line below
if(pair!="EURUSD") continue;
after that, you have to compile the source ( after rename the source by xmeter_eurusd for example, if you want )
You have to keep in showed symbols not only EURUSD but several cross between several Symbols and EUR
for example, let in showed symbols :
EURUSD, EURGBP, GBPUSD, AUDUSD, EURAUD, GBPAUD, USDJPY, AUDJPY, EURJPY, GBPJPY
if you want, you can add CAD if you want with : EURCAD, GBPCAD, USDCAD, CADJPY, AUDCAD
xmeter needs to analyse several symbols in order to know the relative force between them.Thanks Mate, your help is very much appreciated!!
you are welcome
Thanks Mate, your help is very much appreciated!!
I think it is a good choice to avoid certain pairs. I did that since 6 months.
I was running xmeter with eurusd eurgbp gbpusd and eurcad.
eurcad was not very interresting.
eurgbp had the lowest dd but wan not much.
eurusd was the best, but currently they cause much dd.
I consider to try audusd, because this pair has a clearer behavior.
pairs
separated by a semicolon in special pairs ? eurusd;eurgbp;gbpusd
Please read my response to Toxxum and if you want these 3 pairs,
add at the 2 right places :
if(pair!="EURUSD" && pair!="GBPUSD" && pair!="EURGBP") continue;
hello,
you have to edit xmeter and find in the source :
if (AllowNewTrades) {
//--- iterate over all allowed trade pairs in their priority ---
for(int PairID = 0; PairID < TradeCountBuy || PairID < TradeCountSell; PairID++) {
if (PairID < TradeCountBuy) {
//--- check buying of PairID pair ---
pair = TradePairBuy[PairID];
// ##################### I add this line below
if(pair!="EURUSD") continue;
and this one :
if (PairID < TradeCountSell) {
//--- check buying of PairID pair ---
pair = TradePairSell[PairID];
//##################### I add this line below
if(pair!="EURUSD") continue;
after that, you have to compile the source ( after rename the source by xmeter_eurusd for example, if you want )
You have to keep in showed symbols not only EURUSD but several cross between several Symbols and EUR
for example, let in showed symbols :
EURUSD, EURGBP, GBPUSD, AUDUSD, EURAUD, GBPAUD, USDJPY, AUDJPY, EURJPY, GBPJPY
if you want, you can add CAD if you want with : EURCAD, GBPCAD, USDCAD, CADJPY, AUDCAD
xmeter needs to analyse several symbols in order to know the relative force between them.Could there be an error in the code? When I make the changes and compile (without errors), the chart does not refresh any more and "initialising EA, waiting for tick..." remains there forever