Forex



Go Back   Forex Trading > Discussion Areas > 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
  #1 (permalink)  
Old 11-19-2006, 03:57 PM
Junior Member
 
Join Date: Sep 2006
Posts: 4
Benna is on a distinguished road
How to display two currency pairs on one chart?

Hallo everybody.

I want to know if it is possible to display two currency pairs for example EUR/USD and GBP/USD on one chart. It does not need to be live data or in the metatrader platform, it can be historical data imported into Exel with a custom chart. I just want to study, on the same timeframe, how the two currency pairs follow each other.

Any help in the right direction would be greatly appreciated. Thanks.
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
  #2 (permalink)  
Old 11-26-2006, 12:35 PM
Junior Member
 
Join Date: Feb 2006
Posts: 2
RockyLeexh is on a distinguished road
Smile

I had the same question.Did anyone had the solution?
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
  #3 (permalink)  
Old 11-26-2006, 03:23 PM
Senior Member
 
Join Date: Jan 2006
Posts: 1,119
omelette is on a distinguished road
Hi. No, you cannot display more than one price-series in candle format on the same chart - though there is nothing to stop you displaying multiple pairs as moving averages.
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
  #4 (permalink)  
Old 11-28-2006, 09:41 AM
Junior Member
 
Join Date: Sep 2005
Posts: 20
GKBBRIA is on a distinguished road
Quote:
Originally Posted by omelette
Hi. No, you cannot display more than one price-series in candle format on the same chart - though there is nothing to stop you displaying multiple pairs as moving averages.
Hi !

Did you mean MA in GBP/USD can be shown in EUR/USD ! Can you mention how ?

B.rgds / Kibria
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
  #5 (permalink)  
Old 11-28-2006, 10:00 AM
Junior Member
 
Join Date: Dec 2005
Posts: 15
Vasilyt is on a distinguished road
Price indicator (try that)

#property copyright "Copyright"
#property link "http:"

#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Plum
#property indicator_color2 Plum

extern string symbol = "EURUSD";

double EurUsd[],oEurUsd[];
double IdxClose[], IdxOpen[];

int init()
{
RefreshRates();
IndicatorShortName(symbol," price");
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,IdxClose);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(1,IdxOpen);
IndicatorDigits(4);
return(0);
}

void start()
{
ArrayCopySeries(EurUsd,MODE_HIGH,symbol);
ArrayCopySeries(oEurUsd,MODE_LOW,symbol);

int counted_bars=IndicatorCounted();
double EURUSD, oEURUSD;

if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
int limit=Bars-counted_bars;
for(int i=0; i<limit; i++)
{
if(EurUsd[i]!=0 && oEurUsd[i]!=0)
{
EURUSD = EurUsd[i];
oEURUSD = oEurUsd[i];

IdxClose[i] = EURUSD;
IdxOpen[i] = oEURUSD;
}
}
}
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
  #6 (permalink)  
Old 12-03-2006, 02:53 AM
Junior Member
 
Join Date: Feb 2006
Posts: 2
RockyLeexh is on a distinguished road
Thx,Below is my little modified program.
Maybe it will be helpful:

#property copyright "Copyright"
#property link "http:"

#property indicator_separate_window
//#property indicator_chart_window
#property indicator_buffers 2
#property indicator_color1 Aqua
#property indicator_color2 Yellow

extern string symbol = "EURUSD";

double EurUsd[];
double IdxClose[];
double ExtMapBuffer1[];

int init()
{
RefreshRates();
IndicatorShortName(symbol);
SetIndexStyle(0,DRAW_LINE);
SetIndexBuffer(0,IdxClose);
SetIndexStyle(1,DRAW_LINE);
SetIndexBuffer(1,ExtMapBuffer1);
SetIndexLabel(0,symbol+"_ClosePrice");
SetIndexLabel(1,symbol+"_DayClose");
IndicatorDigits(MarketInfo(symbol,MODE_DIGITS)+1);
return(0);
}

void start()
{
int win_idx=WindowFind(symbol);
string sTag = symbol+"PriceTag";
datetime TimeArray[];
ArrayCopySeries(TimeArray,MODE_TIME,symbol,1440);
ArrayCopySeries(EurUsd,MODE_CLOSE,symbol);

int counted_bars=IndicatorCounted();
double EURUSD;

if(counted_bars<0) return(-1);
if(counted_bars>0) counted_bars--;
int i,y=0,limit=Bars-counted_bars;
for(i=0,y=0;i<limit;i++)
{
if (Time[i]<TimeArray[y]) y++;
if (TimeDayOfWeek(Time[i])!=0)
ExtMapBuffer1[i]=iMA(symbol,1440,1,0,0,1,y) ;
else
ExtMapBuffer1[i]=iMA(symbol,1440,1,0,0,1,y+1) ;

}
for(i=0; i<limit; i++)
{
if(EurUsd[i]!=0)
{
EURUSD = EurUsd[i];
IdxClose[i] = EURUSD;
ObjectDelete(sTag);
ObjectCreate(sTag, OBJ_ARROW, win_idx, CurTime(),IdxClose[0]);
ObjectSet(sTag,OBJPROP_ARROWCODE,SYMBOL_RIGHTPRICE );
ObjectSet(sTag,OBJPROP_COLOR,Aqua);
}
}
}
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
  #7 (permalink)  
Old 12-04-2006, 06:40 PM
Junior Member
 
Join Date: Sep 2006
Posts: 4
Benna is on a distinguished road
Quote:
Originally Posted by RockyLeexh
Thx,Below is my little modified program.
Maybe it will be helpful:
Thanks for the replies, not really what I had in mind but thanks anyway.

Excel has a feature to create Forex tick charts and I will use that to display two currency pairs on one chart. I just need to figure out how to get tick data without gaps in .csv format.
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
  #8 (permalink)  
Old 12-04-2006, 07:20 PM
Senior Member
 
Join Date: Dec 2005
Posts: 142
trevman is on a distinguished road
the best i can suggest is goto http://www.fxstreet.com/rates-charts/forex-charts/ and overlay one chart on another
__________________
There is no candle.
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
  #9 (permalink)  
Old 12-04-2006, 07:30 PM
Arthur_1_'s Avatar
Member
 
Join Date: Apr 2006
Posts: 60
Arthur_1_ is on a distinguished road
hi

try this one, it displays many pairs on the chart
Attached Files
File Type: mq4 All_usd_pair.mq4 (8.5 KB, 174 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
  #10 (permalink)  
Old 08-04-2008, 10:50 PM
Senior Member
 
Join Date: Oct 2006
Posts: 181
FXBabe is on a distinguished road
indicator that shows price of two currency pairs on one chart

Hi,
I would like an indicator that allows prices of two pairs of currencies to be put onto one chart, so when one moves we can see how the other pair moves. And also, the indicator gives the difference in price between the two currencies. is there any indicator like this or can anyone do this for me please? Thanks.
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


Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
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
inverted chart display samjesse Metatrader 4 3 06-15-2007 08:52 AM
How Do I View More Currency Pairs? mikejody Metatrader 4 2 12-05-2006 01:50 AM
Chart display in MT4 oneprint Metatrader 4 4 11-07-2006 05:48 PM
MultiPips 1.3.8 : To display the TICKS of various pairs in Real-Time, from QuoteRoom De Vinci Tools and utilities 2 09-26-2006 04:34 AM
Trade muliple currency Pairs rbowles Metatrader 4 5 08-13-2006 06:51 AM


All times are GMT. The time now is 11:53 PM.



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