Trading Gold/USD - page 29

 

Indicator on Charts..Display

DJI/100-Aqua

CRUDEOIL-Silver

Gold/10-Gold...Indicators

======================

Downloaded the dj cr oil indicator along #_i_FFT_separate_Basket4.mq4 indicator: and tried to add to my forex currency chart, such eur/usd or usd/chf (a/c with Www.fxpro.com), but it is not appearing, could you

please guide me how to obtain the same pls? What mistake i would have done.. Thx in advance

19th oct 2008

 
radiant:
DJI/100-Aqua

CRUDEOIL-Silver

Gold/10-Gold...Indicators

======================

Downloaded the dj cr oil indicator along #_i_FFT_separate_Basket4.mq4 indicator: and tried to add to my forex currency chart, such eur/usd or usd/chf (a/c with Www.fxpro.com), but it is not appearing, could you

please guide me how to obtain the same pls? What mistake i would have done.. Thx in advance

19th oct 2008

Change symbol names:

extern string Symbol1Long = "XAU";

extern string Symbol2Long = "CL";

extern string Symbol3Long = "YM";

You don't have this symbols on www.fxpro.com.

 

It was great while the direct correlation lasted. It is still good, just not quite like before when you could trade gold, oil and the dollar and just run to the bank. Maybe we will see that day again.

 

Change of symbol names

barnix.....]Change symbol names:

extern string Symbol1Long = "XAU";

extern string Symbol2Long = "CL";

extern string Symbol3Long = "YM";

You don't have this symbols on www.fxpro.com.

=====

Tried to change the symbols as shown in www.fxpro.com, ie., gold,clx8, sx8, in the 'input' column of the indicator. did not work, is it possible to a give any other suitable indicator, for buying or selling the forex currencies, let me

know sir. Thx again.

19 oct 08

 

You need this library :

https://c.mql5.com/forextsd/forum/32/_lib_fft_1.mq4

Sorry this indicators it is only experimental indicators.

Don't trade on real account with this indicators.

radiant:
barnix.....]Change symbol names:

extern string Symbol1Long = "XAU";

extern string Symbol2Long = "CL";

extern string Symbol3Long = "YM";

You don't have this symbols on www.fxpro.com.

=====

Tried to change the symbols as shown in www.fxpro.com, ie., gold,clx8, sx8, in the 'input' column of the indicator. did not work, is it possible to a give any other suitable indicator, for buying or selling the forex currencies, let me

know sir. Thx again.

19 oct 08
 
Files:
opt2.jpg  8 kb
 

liboctopus - a financial trading library

liboctopus - a financial trading library

software package for producing plots, charts, and graphics from data

ploticus: welcome

The MaWaTT Trading Toolkit

The MaWaTT Trading Toolkit

CCruncher computes the Value At Risk (VAR) of large credit portfolios using the Monte Carlo method.

http://www.generacio.com/ccruncher/

MCOV is Open Source software used to estimate the value of financial options using a Monte Carlo method.

http://www.agt.net/public/bmarshal/mcov/

full featured toolbox to create trading systems

http://www.geniustrader.org/

BeanCounter portfolio performance toolkit

http://dirk.eddelbuettel.com/code/beancounter.html

PNN

http://translate.google.com/translate?u=http%3A%2F%2Fforum.mql4.com%2Fru%2F12474%2Fpage4&hl=en&ie=UTF-8&sl=ru&tl=en

 

1.Download Broco Trader from:

http://www.metaquotes.net/files/broco/bc4setup_trade.exe

2.Uppgrade Wine and addthe WineHQ APT Repository from:

Wine HQ - Wine for Debian based distributions

3.Install Broco Trader:

wine bc4setup_trade.exe

4.Copy run.sh in :

/home/barnix/.wine/drive_c/Program Files/Broco Trader/experts/files (barnix is your linux user directory)

5.Copy all indicators in directory:

/home/barnix/.wine/drive_c/Program Files/Broco Trader/experts/indicators

6.Copy the experts

GOLD_EA_TRADE_lx_v19_1 ---->M30 EURUSD

GOLD_EA_TRADE_lx_v20_1 --->H4 EURUSD

GOLD_EA_TRADE_lx_v21_1 -->D1 EURUSD

in directory:

/home/barnix/.wine/drive_c/Program Files/Broco Trader/experts

////////////////////////////////////////////////////////////////////////////////////////////

Broco trader has changed this simbols:

YM->YM_CONT

ZB->ZB_CONT

CL->CL_CONT

FGBL->FGBL_CONT

FDAX->FDAX_CONT

Please make the following changes in EA-s:

Original(Error):

string x4=iCustom(Symbol(),0,ind_name1,"XAU",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string x5=iCustom(Symbol(),0,ind_name1,"YM",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string x6=iCustom(Symbol(),0,ind_name1,"ZB",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string x7=iCustom(Symbol(),0,ind_name1,"CL",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string x8=iCustom(Symbol(),0,ind_name1,"FGBL",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string x9=iCustom(Symbol(),0,ind_name1,"FDAX",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string y4=iCustom(Symbol(),0,ind_name2,"XAU",8,nb1,0,-1,PERIOD_M30,0,i);

string y5=iCustom(Symbol(),0,ind_name2,"YM",8,nb1,0,-1,PERIOD_M30,0,i);

string y6=iCustom(Symbol(),0,ind_name2,"ZB",8,nb1,0,-1,PERIOD_M30,0,i);

string y7=iCustom(Symbol(),0,ind_name2,"CL",8,nb1,0,-1,PERIOD_M30,0,i);

string y8=iCustom(Symbol(),0,ind_name2,"FGBL",8,nb1,0,-1,PERIOD_M30,0,i);

string y9=iCustom(Symbol(),0,ind_name2,"FDAX",8,nb1,0,-1,PERIOD_M30,0,i);

Correct:

string x4=iCustom(Symbol(),0,ind_name1,"XAU",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string x5=iCustom(Symbol(),0,ind_name1,"YM_CONT",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string x6=iCustom(Symbol(),0,ind_name1,"ZB_CONT",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string x7=iCustom(Symbol(),0,ind_name1,"CL_CONT",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string x8=iCustom(Symbol(),0,ind_name1,"FGBL_CONT",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string x9=iCustom(Symbol(),0,ind_name1,"FDAX_CONT",8,nb1,0,PRICE_CLOSE,PERIOD_M30,0,i);

string y4=iCustom(Symbol(),0,ind_name2,"XAU",8,nb1,0,-1,PERIOD_M30,0,i);

string y5=iCustom(Symbol(),0,ind_name2,"YM_CONT",8,nb1,0,-1,PERIOD_M30,0,i);

string y6=iCustom(Symbol(),0,ind_name2,"ZB_CONT",8,nb1,0,-1,PERIOD_M30,0,i);

string y7=iCustom(Symbol(),0,ind_name2,"CL_CONT",8,nb1,0,-1,PERIOD_M30,0,i);

string y8=iCustom(Symbol(),0,ind_name2,"FGBL_CONT",8,nb1,0,-1,PERIOD_M30,0,i);

string y9=iCustom(Symbol(),0,ind_name2,"FDAX_CONT",8,nb1,0,-1,PERIOD_M30,0,i);

Files:
run.rar  2 kb
experts.rar  18 kb
tpl.rar  4 kb
b4_.rar  638 kb
 

Optional install:

1.Copy attached indicators in directory:

/home/barnix/.wine/drive_c/Program Files/Broco Trader/experts/indicators

2.Use attached template on M1 EURUSD

///////////////////////////////////////////////////

Corrected Expert Advisors

Files:
Reason: