Forex



Go Back   Forex Trading > Downloads > Indicators - Metatrader 4
Forex Forum Register More recent Blogs Calendar Advertising Others Help






Register
Welcome to Forex-TSD!, one of the largest Forex forums worldwide, where you will be able to find the most complete and reliable Forex information imaginable.

From the list below, select the forum that you want to visit and register to post, as many times you want. It’s absolutely free. Click here for registering on Forex-TSD.

Exclusive Forum
The Exclusive Forum is the only paid section. Once you subscribe, you will get free access to real cutting-edge Trading Systems (automated and not), Indicators, Signals, Articles, etc., that will help and guide you, in ways that you could only imagine, with your Forex trading.
  • Elite Section
    Get access to private discussions, specialized support, indicators and trading systems reported every week.
  • Advanced Elite Section
    For professional traders, trading system developers and any other member who may need to use and/or convert, the most cutting-edge exclusive indicators and trading systems for MT4 and MT5.
See more

Reply
 
Thread Tools Display Modes
  #51 (permalink)  
Old 06-22-2008, 05:07 PM
Administrator
 
Join Date: Sep 2005
Posts: 20,059
Blog Entries: 241
newdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud ofnewdigital has much to be proud of
Try it ...
I am not sure that I did it in right way ...
Attached Files
File Type: mq4 MIndex.mq4 (1.9 KB, 199 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #52 (permalink)  
Old 06-23-2008, 01:24 PM
mos mos is offline
Junior Member
 
Join Date: Jun 2006
Posts: 24
mos is on a distinguished road
the mindex dont work on my ibfx platform (mini account) . but it does work on demo.

someone know how to solve the problem?? i tried to add "m" in the code but it didnt help.


thx
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #53 (permalink)  
Old 06-23-2008, 08:44 PM
Member
 
Join Date: Apr 2006
Posts: 49
greatlakes is on a distinguished road
Quote:
Originally Posted by mos View Post
the mindex dont work on my ibfx platform (mini account) . but it does work on demo.

someone know how to solve the problem?? i tried to add "m" in the code but it didnt help.


thx
I had to modify the code to get it to work w/ibfx mini:


//+------------------------------------------------------------------+
//| MIndex.mq4 |
//| Copyright © 2005, Yuri Makarov. |
//| MakSite : Home*Page |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2005, Yuri Makarov."
#property link "http://mak.tradersmind.com"

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 OrangeRed

extern string Curency = "USD";

double EurUsdm[],UsdChfm[],GbpUsdm[],UsdJpym[],AudUsdm[],NzdUsdm[],UsdCadm[];
double Idx[];

int init()
{
IndicatorShortName(Curency);
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,Idx);
return(0);
}

void start()
{
ArrayCopySeries(EurUsdm,MODE_CLOSE,"EURUSDm");
ArrayCopySeries(GbpUsdm,MODE_CLOSE,"GBPUSDm");
ArrayCopySeries(AudUsdm,MODE_CLOSE,"AUDUSDm");
ArrayCopySeries(UsdChfm,MODE_CLOSE,"USDCHFm");
ArrayCopySeries(UsdJpym,MODE_CLOSE,"USDJPYm");
ArrayCopySeries(NzdUsdm,MODE_CLOSE,"NZDUSDm");
ArrayCopySeries(UsdCadm,MODE_CLOSE,"USDCADm");

int counted_bars=IndicatorCounted();
double USD;

if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
int limit=Bars-counted_bars;
for(int i=0; i<limit; i++)
{
USD = MathPow(UsdChfm[i]*UsdJpym[i]*UsdCadm[i]/EurUsdm[i]/GbpUsdm[i]/NzdUsdm[i]/AudUsdm[i],1./8.);
if (Curency == "USD") Idx[i] = USD;
if (Curency == "EUR") Idx[i] = USD*EurUsdm[i];
if (Curency == "GBP") Idx[i] = USD*GbpUsdm[i];
if (Curency == "AUD") Idx[i] = USD*AudUsdm[i];
if (Curency == "CHF") Idx[i] = USD/UsdChfm[i];
if (Curency == "JPY") Idx[i] = USD/UsdJpym[i];
if (Curency == "NZD") Idx[i] = USD*NzdUsdm[i];
if (Curency == "CAD") Idx[i] = USD/UsdCadm[i];
}
}
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #54 (permalink)  
Old 06-24-2008, 06:49 PM
mos mos is offline
Junior Member
 
Join Date: Jun 2006
Posts: 24
mos is on a distinguished road
Quote:
Originally Posted by greatlakes View Post
I had to modify the code to get it to work w/ibfx mini:


//+------------------------------------------------------------------+
//| MIndex.mq4 |
//| Copyright © 2005, Yuri Makarov. |
//| MakSite : Home*Page |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2005, Yuri Makarov."
#property link "http://mak.tradersmind.com"

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 OrangeRed

extern string Curency = "USD";

double EurUsdm[],UsdChfm[],GbpUsdm[],UsdJpym[],AudUsdm[],NzdUsdm[],UsdCadm[];
double Idx[];

int init()
{
IndicatorShortName(Curency);
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,Idx);
return(0);
}

void start()
{
ArrayCopySeries(EurUsdm,MODE_CLOSE,"EURUSDm");
ArrayCopySeries(GbpUsdm,MODE_CLOSE,"GBPUSDm");
ArrayCopySeries(AudUsdm,MODE_CLOSE,"AUDUSDm");
ArrayCopySeries(UsdChfm,MODE_CLOSE,"USDCHFm");
ArrayCopySeries(UsdJpym,MODE_CLOSE,"USDJPYm");
ArrayCopySeries(NzdUsdm,MODE_CLOSE,"NZDUSDm");
ArrayCopySeries(UsdCadm,MODE_CLOSE,"USDCADm");

int counted_bars=IndicatorCounted();
double USD;

if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
int limit=Bars-counted_bars;
for(int i=0; i<limit; i++)
{
USD = MathPow(UsdChfm[i]*UsdJpym[i]*UsdCadm[i]/EurUsdm[i]/GbpUsdm[i]/NzdUsdm[i]/AudUsdm[i],1./8.);
if (Curency == "USD") Idx[i] = USD;
if (Curency == "EUR") Idx[i] = USD*EurUsdm[i];
if (Curency == "GBP") Idx[i] = USD*GbpUsdm[i];
if (Curency == "AUD") Idx[i] = USD*AudUsdm[i];
if (Curency == "CHF") Idx[i] = USD/UsdChfm[i];
if (Curency == "JPY") Idx[i] = USD/UsdJpym[i];
if (Curency == "NZD") Idx[i] = USD*NzdUsdm[i];
if (Curency == "CAD") Idx[i] = USD/UsdCadm[i];
}
}
GREAT WORK!!

THANKS A MILLION
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #55 (permalink)  
Old 09-08-2008, 11:00 PM
Member
 
Join Date: May 2007
Posts: 42
derekz is on a distinguished road
is possible to use this indicator with CFDs (example eur>crude oil)?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #56 (permalink)  
Old 09-09-2008, 12:30 AM
Linuxser's Avatar
User Root
 
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 4,410
Blog Entries: 56
Linuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond repute
Quote:
Originally Posted by derekz View Post
is possible to use this indicator with CFDs (example eur>crude oil)?
Depends on the indicator but maybe you want to create your own index. MIndex is a formula based on US Dollar. But you could try another variables. Other indicators you could try.

Just replace the right piece of code.
EG: for Crude OIL WTI with Broco Trader the symbol is WTI.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #57 (permalink)  
Old 12-01-2008, 08:34 PM
Junior Member
 
Join Date: Sep 2008
Posts: 18
Hazel is on a distinguished road
Seek of New Correlations

Always wanted to make a post, just can't find anything interesting. But now there are some data from yesterday I want to share.

I don't know if there are guys have already getting tired with tech indicators. Let's find some new indications. Data are all over the internet, I picked the number of registered members of an international dating website to correlate major currency exchange rates. The exchange rates were provided by MSN Money Centre. I had few codes to get these two data sources synchronized, and run about 20 hrs yesterday.

The data is here, and as you can see in that a single day, some of the correlations were really high with the registered members of the international site. The data cannot conclude anything. Online dating is a world wide activity, and forex is world wide and online. Can there be some interesting theory for us to explore?
Attached Files
File Type: zip aff correlations.zip (202.0 KB, 285 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #58 (permalink)  
Old 12-02-2008, 03:33 AM
Linuxser's Avatar
User Root
 
Join Date: May 2006
Location: Helliconia (Winter)
Posts: 4,410
Blog Entries: 56
Linuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond reputeLinuxser has a reputation beyond repute
Quote:
Originally Posted by Hazel View Post
Always wanted to make a post, just can't find anything interesting. But now there are some data from yesterday I want to share.

I don't know if there are guys have already getting tired with tech indicators. Let's find some new indications. Data are all over the internet, I picked the number of registered members of an international dating website to correlate major currency exchange rates. The exchange rates were provided by MSN Money Centre. I had few codes to get these two data sources synchronized, and run about 20 hrs yesterday.

The data is here, and as you can see in that a single day, some of the correlations were really high with the registered members of the international site. The data cannot conclude anything. Online dating is a world wide activity, and forex is world wide and online. Can there be some interesting theory for us to explore?
Hi Hazel, thanks for the post.

I moved the thread here after wait a couple of hours. If some replies appears I will move back.

Last edited by Linuxser; 12-02-2008 at 03:36 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #59 (permalink)  
Old 12-03-2008, 04:15 PM
etrade's Avatar
Senior Member
 
Join Date: Aug 2007
Posts: 278
etrade is on a distinguished road
Quote:
Originally Posted by ipixtlan View Post
Pt.1 There is a set of correlation indicators and my translation of strategy(thanks to De Vinci )!
Is it possible to add other currencies to this indicator (Complex_Common.mq4) ?

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
  #60 (permalink)  
Old 12-03-2008, 04:17 PM
etrade's Avatar
Senior Member
 
Join Date: Aug 2007
Posts: 278
etrade is on a distinguished road
Quote:
Originally Posted by toddanderson View Post
Could someone change the attached overlay chart from candles to a line
chart or give me some direction on how to do it

Thank you
How one can change the number of bars displayed by this indicator ?

Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!StumbleUpon this Post!Reddit this Post!Facebook this Post!BlinkList this Post!Google Bookmarks this Post!Yahoo! My Web this Post!
Reply With Quote
Reply

Bookmarks

Tags
complex_balance.mq4, correlation, correlation forex, correlation in forex, correlation indicator, correlation indicator metatrader, correlation indicator MT4, correlation indicators, forex correlation, forex correlation indicator, forex correlation trading, indicators, metatrader correlation, metatrader correlation indicator, mindex, mt4 correlation, MT4 Correlation indicator


Currently Active Users Viewing This Thread: 2 (1 members and 1 guests)
bojan44
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are Off
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
correlation netk Suggestions for Trading Systems 27 10-18-2009 01:46 AM
Correlation Index help! albedo Indicators - Metatrader 4 3 08-30-2009 02:27 AM
FINEXX Correlation System EA tbreaker Expert Advisors - Metatrader 4 103 06-11-2009 06:21 PM
correlation analysis giraia_br Suggestions for Trading Systems 8 03-01-2006 06:43 PM


All times are GMT. The time now is 08:43 PM.



Search Engine Friendly URLs by vBSEO 3.2.0 ©2008, Crawlability, Inc.