Forex
Google
New signals service!

Go Back   Forex Trading > Downloads > Indicators - Metatrader 4


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 (229) Thread Tools Display Modes
  1 links from elsewhere to this Post. Click to view. #171 (permalink)  
Old 06-12-2006, 08:03 PM
Member
 
Join Date: Feb 2006
Location: Czech Republic
Posts: 95
ForexBoss is on a distinguished road
heiken ashi bars

somebody make multi frame indicator from this?
Attached Files
File Type: mq4 Heiken Ashi.mq4 (3.6 KB, 118 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #172 (permalink)  
Old 06-12-2006, 08:04 PM
Member
 
Join Date: Feb 2006
Location: Czech Republic
Posts: 95
ForexBoss is on a distinguished road
trend manager

multiple from this?
Attached Files
File Type: mq4 TrendManager.mq4 (1.4 KB, 457 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #173 (permalink)  
Old 06-14-2006, 09:13 AM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,032
ValeoFX is on a distinguished road
Forex_Off_Trend Oscillator

One of the most accurate Oscillators to determine trend change i.m.o. is the
Forex_Off_Trend Oscillator. The latest version I received last week is called the ForexTrend_v2 which is a Histogram version. I was very excited about this development, but the new one is not good at all. It repaints terribly, but if we can fix it, it could be a very good adjunct as a MTF-oscillator.

I am attaching both here with a request that you look at it and if you can put it into a MTF format, I would be very glad. The histogram format is excellent so that one can narrow the window and still see at a glance when the direction is changing.

Looking forward to hearing from you guys. Thanks in advance and best wishes.
Attached Files
File Type: mq4 ForexOFFTrend indi.mq4 (3.3 KB, 601 views)
File Type: mq4 ForexTrend_v2.mq4 (2.9 KB, 545 views)
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #174 (permalink)  
Old 06-14-2006, 02:56 PM
lowphat's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 199
lowphat is on a distinguished road
offtrend

looks like basicly the same code to me with histo code and the default SSP number changed. may just wanna call that one histo or something instead of v2 imho.

A little more seperation helps me for quick glances
else
{
ExtHBuffer1[b]=0;
ExtHBuffer2[b]=-1 //<----

and here is some timeframe crap
as usual beware of redrawing problems

Code:
//+------------------------------------------------------------------+
//|                     Copy and Pasted by Lowphat                   |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright "  "
#property link      " "

#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Lime
#property indicator_color2 Red

#property indicator_maximum 1                     
#property indicator_minimum -1

extern int TimeFrame=30;
extern int       SSP=7;
extern double    Kmax=50.6;                     


double ExtMapBuffer1[];
double ExtMapBuffer2[];


int init()
  {

   SetIndexStyle(0,DRAW_HISTOGRAM,EMPTY,2);
   SetIndexBuffer(0,ExtMapBuffer1);
   SetIndexStyle(1,DRAW_HISTOGRAM,EMPTY,2);
   SetIndexBuffer(1,ExtMapBuffer2);


  

   switch(TimeFrame)
   {
      case 1 : string TimeFrameStr="Period_M1"; break;
      case 5 : TimeFrameStr="Period_M5"; break;
      case 15 : TimeFrameStr="Period_M15"; break;
      case 30 : TimeFrameStr="Period_M30"; break;
      case 60 : TimeFrameStr="Period_H1"; break;
      case 240 : TimeFrameStr="Period_H4"; break;
      case 1440 : TimeFrameStr="Period_D1"; break;
      case 10080 : TimeFrameStr="Period_W1"; break;
      case 43200 : TimeFrameStr="Period_MN1"; break;
      default : TimeFrameStr="Current Timeframe";
   }
   string short_name;
   short_name=("FxTrend("+TimeFrame+")");
    IndicatorShortName(short_name);
     SetIndexLabel(0,short_name);  
  }
//----
   return(0);
 

int start()
  {
   datetime TimeArray[];
   int    i,limit,y=0,counted_bars=IndicatorCounted();

// Plot defined time frame on to current time frame
   ArrayCopySeries(TimeArray,MODE_TIME,Symbol(),TimeFrame); 
   
   limit=Bars-counted_bars;
   limit=Bars-counted_bars;
   for(i=0,y=0;i<limit;i++)
   {
   if (Time[i]<TimeArray[y]) y++;

 
   ExtMapBuffer1[i]=iCustom(NULL,TimeFrame,"ForexTrend Histo",SSP,Kmax,0,y);
   ExtMapBuffer2[i]=iCustom(NULL,TimeFrame,"ForexTrend Histo",SSP,Kmax,1,y); 

   
   }  
   return(0);
  }
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #175 (permalink)  
Old 06-15-2006, 09:51 AM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,032
ValeoFX is on a distinguished road
Quote:
Originally Posted by lowphat
looks like basicly the same code to me with histo code and the default SSP number changed. may just wanna call that one histo or something instead of v2 imho.

A little more seperation helps me for quick glances
else
{
ExtHBuffer1[b]=0;
ExtHBuffer2[b]=-1 //<----

and here is some timeframe crap
as usual beware of redrawing problems

Code:
//+------------------------------------------------------------------+
//|                     Copy and Pasted by Lowphat                   |
//|                                                                  |
//+------------------------------------------------------------------+
#property copyright "  "
#property link      " "

#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Lime
#property indicator_color2 Red

#property indicator_maximum 1                     
#property indicator_minimum -1

extern int TimeFrame=30;
extern int       SSP=7;
extern double    Kmax=50.6;                     


double ExtMapBuffer1[];
double ExtMapBuffer2[];


int init()
  {

   SetIndexStyle(0,DRAW_HISTOGRAM,EMPTY,2);
   SetIndexBuffer(0,ExtMapBuffer1);
   SetIndexStyle(1,DRAW_HISTOGRAM,EMPTY,2);
   SetIndexBuffer(1,ExtMapBuffer2);


  

   switch(TimeFrame)
   {
      case 1 : string TimeFrameStr="Period_M1"; break;
      case 5 : TimeFrameStr="Period_M5"; break;
      case 15 : TimeFrameStr="Period_M15"; break;
      case 30 : TimeFrameStr="Period_M30"; break;
      case 60 : TimeFrameStr="Period_H1"; break;
      case 240 : TimeFrameStr="Period_H4"; break;
      case 1440 : TimeFrameStr="Period_D1"; break;
      case 10080 : TimeFrameStr="Period_W1"; break;
      case 43200 : TimeFrameStr="Period_MN1"; break;
      default : TimeFrameStr="Current Timeframe";
   }
   string short_name;
   short_name=("FxTrend("+TimeFrame+")");
    IndicatorShortName(short_name);
     SetIndexLabel(0,short_name);  
  }
//----
   return(0);
 

int start()
  {
   datetime TimeArray[];
   int    i,limit,y=0,counted_bars=IndicatorCounted();

// Plot defined time frame on to current time frame
   ArrayCopySeries(TimeArray,MODE_TIME,Symbol(),TimeFrame); 
   
   limit=Bars-counted_bars;
   limit=Bars-counted_bars;
   for(i=0,y=0;i<limit;i++)
   {
   if (Time[i]<TimeArray[y]) y++;

 
   ExtMapBuffer1[i]=iCustom(NULL,TimeFrame,"ForexTrend Histo",SSP,Kmax,0,y);
   ExtMapBuffer2[i]=iCustom(NULL,TimeFrame,"ForexTrend Histo",SSP,Kmax,1,y); 

   
   }  
   return(0);
  }
Thanks for your reply Lowphat, but as I am not a programmer, it makes very little sense to me unfortunately. - I agree with your sentiments regarding the V2 = Histogram.

Any further suggestions, please?
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #176 (permalink)  
Old 06-15-2006, 09:01 PM
lowphat's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 199
lowphat is on a distinguished road
here ya go bud
i havent had time to test it but i think it should be ok
Attached Files
File Type: mq4 ForexTrend Histo.mq4 (3.0 KB, 631 views)
File Type: mq4 ForexTrend Multi.mq4 (2.1 KB, 659 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #177 (permalink)  
Old 06-15-2006, 10:43 PM
Senior Member
 
Join Date: Jan 2006
Posts: 1,045
iGoR is an unknown quantity at this point
Quote:
Originally Posted by ValeoFX
One of the most accurate Oscillators to determine trend change i.m.o. is the
Forex_Off_Trend Oscillator
. The latest version I received last week is called the ForexTrend_v2 which is a Histogram version. I was very excited about this development, but the new one is not good at all. It repaints terribly, but if we can fix it, it could be a very good adjunct as a MTF-oscillator.

I am attaching both here with a request that you look at it and if you can put it into a MTF format, I would be very glad. The histogram format is excellent so that one can narrow the window and still see at a glance when the direction is changing.

Looking forward to hearing from you guys. Thanks in advance and best wishes.
Sorry to say so but I don't understand that you can make such a statement. It repaints the past up to 6 bars...and you call this one of the most accurate indicators to determine trend ?!?!....It has even beaten the accuracy of the Yu4rik indicator....

regards..iGoR
Attached Files
File Type: zip forex2.zip (118.8 KB, 767 views)

Last edited by iGoR; 06-15-2006 at 11:06 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #178 (permalink)  
Old 06-15-2006, 11:53 PM
lowphat's Avatar
Senior Member
 
Join Date: Sep 2005
Posts: 199
lowphat is on a distinguished road
thx for the info igor perhaps thats why its very accurite heh
does silvertrend suffer also since its very simular?
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #179 (permalink)  
Old 06-16-2006, 06:29 AM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,032
ValeoFX is on a distinguished road
Quote:
Originally Posted by iGoR
Sorry to say so but I don't understand that you can make such a statement. It repaints the past up to 6 bars...and you call this one of the most accurate indicators to determine trend ?!?!....It has even beaten the accuracy of the Yu4rik indicator....

regards..iGoR
Igor, the repainting may be so, however, in realtime it is very accurate. So one cannot backtest it either.

Now regarding your statement that it has "even beaten the accuracy of the Yu4rik", are you saying that it is more accurate than the Yu4rik? Sorry, but I am a little confused here.
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #180 (permalink)  
Old 06-16-2006, 06:30 AM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 1,032
ValeoFX is on a distinguished road
Quote:
Originally Posted by lowphat
here ya go bud
i havent had time to test it but i think it should be ok

Much appreciated, Lowphat. I will test it diligently and report back to you.

Best wishes.
__________________
"Risk comes from not knowing what you are doing" The Tao of Warren Buffett.

"Avoiding mistakes, makes people STUPID and having to be RIGHT, makes you OBSOLETE." Robert Kiyosaki.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
forex, histogram, mtf bband, TRO SAK MULTIPAIR, mtf macd, pipnailer, megatrend, absolute strength, bbsqueeze, TheBuyZoneForex.pdf, MTF ADX, multi

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

<
LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/indicators-metatrader-4/1077-multi-timeframe-indicators.html
Posted By For Type Date
求助:一个可以把大时间周期的均线放在小时间周期上的指标 - mt4编程与智能交易系统 - 领域外汇论坛 —外汇论坛|外汇开户|外汇保证金|FXSOL开户 This thread Refback 08-31-2008 07:31 AM
亂MT4亃MetaTrader Part8亂儊僞僩儗乕僟乕亃 Post #0 Refback 08-17-2008 12:55 PM
老涡: fractals.mq4 This thread Refback 08-07-2008 06:37 PM
Multi Timeframe Indicators - Page 91 - Forex Trading This thread Refback 08-02-2008 09:22 PM
MTF Stochastic 4TF Post #2168 Refback 08-02-2008 07:13 PM
耔咫耔轺 4 徕 ?? - Trading4Living 翦  滗屣 This thread Refback 07-23-2008 06:20 PM
Multi Timeframe Indicators - Page 117 - Forex Trading This thread Refback 07-20-2008 03:49 AM
耔咫耔轺 4 徕 ?? - Trading4Living 翦  滗屣 This thread Refback 07-13-2008 04:55 PM
耔咫耔轺 4 徕 ?? - Trading4Living 翦  滗屣 This thread Refback 07-13-2008 04:12 PM
软滂赅蝾瘥 桃 4 - 义蹴梓羼觇 囗嚯桤 Forex This thread Refback 07-12-2008 08:08 AM
软滂赅蝾瘥 桃 4 - 义蹴梓羼觇 囗嚯桤 Forex This thread Refback 07-12-2008 05:41 AM
Weekly_HILO. - MQL4 浠g爜鍩哄湴 Post #2066 Refback 07-10-2008 08:39 PM
Multi Timeframe Indicators - Page 62 - Forex Trading This thread Refback 07-05-2008 10:25 PM
仭僥僋僯僇儖偵偮偄偰岅傠偆仭part2 This thread Refback 07-05-2008 11:05 AM
BZ_TL_SkylineM - MQL4 Code Base Post #1684 Refback 07-05-2008 07:12 AM
MTF BB-Squeeze - MQL4 Code Base Post #1870 Refback 07-03-2008 03:32 AM
Weekly_HILO. - MQL4 Code Base Post #2066 Refback 06-25-2008 05:45 AM
≮持违スレ≯MetaTrader介看荚漓脱3≮ゆとり漓脱≯ - MetaTraderまとめWiki Post #1124 Refback 06-22-2008 01:31 PM
My MT4 modified indicators and collection - Page 7 Post #1177 Refback 06-22-2008 11:30 AM
Weekly_HILO. - MQL4 Code Base Post #2066 Refback 06-20-2008 04:56 AM
EESFX This thread Refback 06-19-2008 02:17 PM
Signal_Bars_MFI - MQL4 Code Base Post #2210 Refback 06-18-2008 10:24 PM
Signal_Bars_MFI - MQL4 Code Base Post #2210 Refback 06-17-2008 06:18 PM
Signal_Bars_MFI - MQL4 Code Base Post #2210 Refback 06-16-2008 10:29 PM
RSS-赅磬: 埋 桧滂赅蝾瘥 灶疱犟 Post #1652 Refback 06-15-2008 03:06 PM
软滂赅蝾瘥 桃 4 - 义蹴梓羼觇 囗嚯桤 Forex This thread Refback 06-13-2008 06:00 PM
袘谢芯谐 Post #1652 Refback 06-12-2008 02:17 PM
仭僥僋僯僇儖偵偮偄偰岅傠偆仭Part4 Post #977 Refback 06-11-2008 12:15 PM
袙褋械 懈薪写懈泻邪褌芯褉褘 肖芯褉械泻褋: 袦邪泄 2008 Post #1684 Refback 06-09-2008 10:47 AM
LinearRegSlope_v1 - MQL4 浠g爜鍩哄湴