Forex
Google
New signals service!

Go Back   Forex Trading > Discussion Areas > Suggestions for Trading Systems


Register in Forex TSD!
Trading Systems Leaders in this forum (automated trading systems) are winning more than 3000 pips in a month (30000$ investing one lot every time).
Click here to register and get more information

Reply
 
LinkBack Thread Tools Display Modes
  #11 (permalink)  
Old 12-30-2005, 09:08 AM
Senior Member
 
Join Date: Oct 2005
Posts: 223
sailor is on a distinguished road
Yes :-) know i startet to be quite fancy to se how other indicators look on intraday chart but with the bigger pigture . Is it posible to do the same with a moving average ?


sailor
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 12-30-2005, 09:14 AM
Administrator
 
Join Date: Sep 2005
Posts: 15,873
Blog Entries: 54
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
Quote:
Originally Posted by sailor
Yes :-) know i startet to be quite fancy to se how other indicators look on intraday chart but with the bigger pigture . Is it posible to do the same with a moving average ?


sailor
Say again.
(did not understand).
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 12-30-2005, 10:17 AM
Senior Member
 
Join Date: Oct 2005
Posts: 223
sailor is on a distinguished road
lol my english.. what i mean is this its posible to change macd in the indicator window to look at daily chart while on intraday picture what i mean with the moving average is it posible to do the same ?


sailor
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 01-01-2006, 03:22 PM
Senior Member
 
Join Date: Oct 2005
Posts: 223
sailor is on a distinguished road
Im in litle doubt did u understand what i mean ( movingaverage) ?

Sailor
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 01-01-2006, 06:48 PM
Administrator
 
Join Date: Sep 2005
Posts: 15,873
Blog Entries: 54
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
Quote:
Originally Posted by sailor
Im in litle doubt did u understand what i mean ( movingaverage) ?

Sailor
Yes I understand what you mean. But I could not make it.
I tried but could not. Sorry.

Last edited by newdigital; 01-01-2006 at 07:16 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #16 (permalink)  
Old 01-01-2006, 07:07 PM
Senior Member
 
Join Date: Oct 2005
Posts: 223
sailor is on a distinguished road
Roger thanks for the help..


Sailor
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #17 (permalink)  
Old 02-20-2006, 08:04 PM
Senior Member
 
Join Date: Oct 2005
Posts: 223
sailor is on a distinguished road
//+------------------------------------------------------------------+
//| Custom Moving Average.mq4 |
//| Copyright © 2004, MetaQuotes Software Corp. |
//| http://www.metaquotes.net/ |
//+------------------------------------------------------------------+
#property copyright "Copyright © 2004, MetaQuotes Software Corp."
#property link "http://www.metaquotes.net/"

#property indicator_separate_window
#property indicator_buffers 1
#property indicator_color1 Red
//---- indicator parameters
extern int MA_Period=13;
extern int MA_Shift=0;
extern int MA_Method=0;
//---- indicator buffers
double ExtMapBuffer[];
//----
int ExtCountedBars=0;



Can somme one give a hint i have changed movingaverage to be showing in seperate window. I am trying to have the oportunity to have the oportunity to change periods like having weekly daily and hour 4 in same window. I tryed without luck

sailor
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #18 (permalink)  
Old 02-20-2006, 09:09 PM
lowphat's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 199
lowphat is on a distinguished road
here is a possible way of doing it unless i am misunderstanding

Code:
//+------------------------------------------------------------------+
//|                                                   PhatMultiMA
//|                                                   Lowphat © 2006
//+------------------------------------------------------------------+
#property copyright "Lowphat © 2006"
#property link      "http://www.forex-tsd.com/ "

#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Blue
#property indicator_color2 Yellow
extern double Chart1=15;
extern double Chart2=30;
extern double Per1=15;
extern double Per2=15;
double ExtMapBuffer1[];
double ExtMapBuffer2[];
int init()
  {
   SetIndexStyle(0,DRAW_LINE);
   SetIndexBuffer(0,ExtMapBuffer1);
   SetIndexStyle(1,DRAW_LINE);
   SetIndexBuffer(1,ExtMapBuffer2);   
      return(0);
  }
int deinit()
  {
   return(0);
  }
int start()
  {
   int i,limit;
   int counted_bars=IndicatorCounted();
   if(counted_bars>0) counted_bars--;
   limit=Bars-counted_bars;
   for(i=0; i<limit; i++)
   ExtMapBuffer1[i]=iMA(NULL,Chart1,Per1,0,MODE_EMA,PRICE_CLOSE,i);
   for(i=0; i<limit; i++)
   ExtMapBuffer2[i]=iMA(NULL,Chart2,Per2,0,MODE_EMA,PRICE_CLOSE,i);
   return(0);
  }

Last edited by lowphat; 02-20-2006 at 09:41 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #19 (permalink)  
Old 02-20-2006, 09:47 PM
Senior Member
 
Join Date: Oct 2005
Posts: 223
sailor is on a distinguished road
thanks.. looks like it is working

sailor
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #20 (permalink)  
Old 02-20-2006, 10:36 PM
keris2112's Avatar
Senior Member
 
Join Date: Dec 2005
Location: California, US
Posts: 129
keris2112 is on a distinguished road
MTF Indicators

Hi all,
I just wanted to let you know that I started a new thread for Multi TimeFrame indicators. (Wasn't paying attention when I came to the site today. Probably could have just posted them here.) Anyway, I've posted 5 MTF indicators and you can use the code as a template to create any other MTF indicators you may want.

Multi-TimeFrame set 1 contains:
#MTF_MovingAverage.mq4
#MTF_PSar.mq4
#MTF_RSI.mq4
#MTF_MACD.mq4
#MTF_CCI.mq4

Multi Timeframe Indicators

Keris
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

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 On
Forum Jump

Similar Threads
Thread Thread Starter Forum Replies Last Post
Use of Many Timeframes dvarrin Metatrader 4 5 06-10-2007 12:42 AM
Different timeframes for daily EA rjay Metatrader 4 3 12-29-2006 04:16 PM
Trading two timeframes Jovager Questions 2 10-10-2006 10:33 AM


All times are GMT. The time now is 06:20 PM.



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