TRO_FX_Dashboard - page 7

 

Mod for futures

Could someone help me mod this for futures

Iam not getting the futures name to show just the ticker

It is difficult to use as the tickers are not always clear of what they are

i use this just to see the over all market picture. i think the indicator was change on post #22 and not using the names

I am using x.brocompany.x as broker was whc

Files:
 
toddanderson:
Could someone help me mod this for futures

Iam not getting the futures name to show just the ticker

It is difficult to use as the tickers are not always clear of what they are

i use this just to see the over all market picture. i think the indicator was change on post #22 and not using the names

I am using x.brocompany.x as broker was whc

Hi, toddanderson

Could you tell me why? Nothing show as below. Thanks a lot in advanced!

And could you tell me what's Forex software you use? Thanks again!!

Best regards

Franky

Files:
pic.gif  18 kb
 

brocampany

I am using mt4 with x.brocompany.x as broker was whc

frankychen:
Hi, toddanderson

Could you tell me why? Nothing show as below. Thanks a lot in advanced!

And could you tell me what's Forex software you use? Thanks again!!

Best regards

Franky
 
frankychen:
Hi, toddanderson

Could you tell me why? Nothing show as below. Thanks a lot in advanced!

And could you tell me what's Forex software you use? Thanks again!!

Best regards

Franky

I am sure your problem is the caracter added by the broker after the symbol.

FerruFx

 
FerruFx:
I am sure your problem is the caracter added by the broker after the symbol. FerruFx

Hi, FerruFX

Could you tell me how to solve the problem you found?

Because the problem has greatly impaired my other MTF indicators which download from this website.

Thanks in advanced!!

Best regards

Franky

 
frankychen:
Hi, FerruFX

Could you tell me how to solve the problem you found?

Because the problem has greatly impaired my other MTF indicators which download from this website.

Thanks in advanced!!

Best regards

Franky

If the issue is the caracter added after the symbol, there's a mod to do in the coding.

FerruFx

 
FerruFx:
If the issue is the caracter added after the symbol, there's a mod to do in the coding. FerruFx

Hi, FerruFx

Please give me a solution to solve the problem for all

the MTF indicators I downloaded but not display as you saw.

Or give me help how to midify the sourcecode to solve it?

Thanks a lot!!!!!!!!!!!!!!!!!!!!!!!

Best regards

Franky

 
frankychen:
Hi, FerruFx

Please give me a solution to solve the problem for all

the MTF indicators I downloaded but not display as you saw.

Or give me help how to midify the sourcecode to solve it?

Thanks a lot!!!!!!!!!!!!!!!!!!!!!!!

Best regards

Franky

You need to do something like this in init(), where the pairs should be defined:

// Initialize for IBFX (or any broker that uses more than the standard 6 characters)

string AddChar;

if (StringLen(Symbol()) > 6) AddChar = StringSubstr(Symbol(), 6 );

sAUDUSD = "AUDUSD" + AddChar;

sEURUSD = "EURUSD" + AddChar;

sUSDCHF = "USDCHF" + AddChar;

sNZDUSD = "NZDUSD" + AddChar;

sGBPUSD = "GBPUSD" + AddChar;

sUSDJPY = "USDJPY" + AddChar;

sUSDCAD = "USDCAD" + AddChar;

Hope this helps.

 
 

TheRumpledOne:
TRO FX DASHBOARD REV 1

Someone suggested that the indicator input should be "inline" just like when you code.

I revised the TRO FX DASHBOARD to accept inline input.

Remember the format for iCustom is:

iCustom(string symbol, int timeframe, string name, ..., int mode, int shift)

So if you want MACD(12,26,9) you enter:

MACD;12;26;9;0;0

You have to use ";" instead of ",".

You have to enter the mode ( which buffer to use ) and 0 for shift. What you enter for shift doesn't matter in this case because TRO FX DASHBOARD looks at the current and previous values to determine the direction of the arrowheads.

very thankful Mr Tro for your great , powerfull & awesome fx dashboard , i think this thread is not ative arleady , i hope some body can help me code rsi+ma+label.mq4 to TRO FX DASHBOARD please... i found in RSI+MA - MQL4 Code Base ,thank you very much. (sory my broken Eng)

Files:
rsi.gif  168 kb