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
  #181 (permalink)  
Old 06-16-2006, 08:23 AM
Senior Member
 
Join Date: Jan 2006
Posts: 1,009
iGoR is an unknown quantity at this point
Quote:
Originally Posted by ValeoFX
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.

In real time it repaints the past up to 6 bars. So that means if you would place this indicator on a day chart it can repaint the past up to 6 days.

In my zip folder you can see what it did in real time. If you have an indicator who repaints the past only with 1 bar it is uselles.

Working with an indicator like that is the same as you say ....I WOULD HAVE go long 6 bars ago (but that is after the facts) and a bit later you would say I WOULD HAVE exited 6 bars ago.
This way you WOULD HAVE a 100% hitrate....

The YU4rik indicator is also uselles because it repaints up to 4 or 5 bars ago. So when I said it has beaten the YU4rik that means it is even more unreliable.

That indicator is like an MA that you would shift back in time (hindsight).

So that indicator is not accurate iit is cr*p.

regards...iGoR
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #182 (permalink)  
Old 06-16-2006, 08:28 AM
ValeoFX's Avatar
Senior Member
 
Join Date: Jan 2006
Location: Johannesburg, South Africa
Posts: 970
ValeoFX is on a distinguished road
Quote:
Originally Posted by iGoR
In real time it repaints the past up to 6 bars. So that means if you would place this indicator on a day chart it can repaint the past up to 6 days.

In my zip folder you can see what it did in real time. If you have an indicator who repaints the past only with 1 bar it is uselles.

Working with an indicator like that is the same as you say ....I WOULD HAVE go long 6 bars ago (but that is after the facts) and a bit later you would say I WOULD HAVE exited 6 bars ago.
This way you WOULD HAVE a 100% hitrate....

The YU4rik indicator is also uselles because it repaints up to 4 or 5 bars ago. So when I said it has beaten the YU4rik that means it is even more unreliable.

That indicator is like an MA that you would shift back in time (hindsight).

So that indicator is not accurate iit is cr*p.

regards...iGoR
Thanks iGoR for this explanation. Much appreciated.
__________________
"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
  #183 (permalink)  
Old 06-16-2006, 08:48 AM
Member
 
Join Date: Dec 2005
Posts: 58
jerami is on a distinguished road
Question Plz repair this script

I try to change step stoch to MTF but it said

'\end_of_program' - unbalanced left parenthesis C:\Program Files\MetaTrader - North Finance\experts\indicators\#MTF_StepMA_Stoch_V1.mq 4 (113, 1)

Quote:
//+------------------------------------------------------------------+
//| #MTF_Step stoch.mq4 |
//+------------------------------------------------------------------+

#property indicator_separate_window
#property indicator_buffers 2
#property indicator_color1 Yellow
#property indicator_color2 DeepSkyBlue
#property indicator_minimum 0
#property indicator_maximum 1


//---- input parameters
/************************************************** ***********************
PERIOD_M1 1
PERIOD_M5 5
PERIOD_M15 15
PERIOD_M30 30
PERIOD_H1 60
PERIOD_H4 240
PERIOD_D1 1440
PERIOD_W1 10080
PERIOD_MN1 43200
You must use the numeric value of the timeframe that you want to use
when you set the TimeFrame' value with the indicator inputs.
---------------------------------------*/
//---- input parameters
extern int PeriodWATR=10;
extern double Kwatr=1.0000;
extern int HighLow=0;
extern int TimeFrame=0;
//---- indicator buffers

double LineMinBuffer[];
double LineMidBuffer[];
//+------------------------------------------------------------------+
//| Custom indicator initialization function |
//+------------------------------------------------------------------+

int init()
{
string short_name;
IndicatorBuffers(6);

//---- indicator line
SetIndexStyle(0,DRAW_LINE,STYLE_SOLID,1);
SetIndexStyle(1,DRAW_LINE,STYLE_SOLID,1);
SetIndexBuffer(0,LineMinBuffer);
SetIndexBuffer(1,LineMidBuffer);
IndicatorDigits(MarketInfo(Symbol(),MODE_DIGITS));




//---- name for DataWindow and indicator subwindow label

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";
}
IndicatorShortName("MTF_StepMA Stoch("+TimeFrameStr+","+PeriodWATR+","+Kwatr+","+ HighLow+")";

SetIndexDrawBegin(0,PeriodWATR);
SetIndexDrawBegin(1,PeriodWATR);
}

//----

return(0);

//+------------------------------------------------------------------+
//| MTF Step Stoch |
//+------------------------------------------------------------------+

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(),TimeF rame);

limit=Bars-counted_bars;
for(i=0,y=0;i<limit;i++)
{
if (Time[i]<TimeArray[y]) y++;

/************************************************** *********
Add your main indicator loop below. You can reference an existing
indicator with its iName or iCustom.
Rule 1: Add extern inputs above for all neccesary values
Rule 2: Use 'TimeFrame' for the indicator time frame
Rule 3: Use 'y' for your indicator's shift value
************************************************** ********/

LineMinBuffer[i]=iCustom(Symbol(),TimeFrame,"StepMA_Stoch_V1",0,Pe riodWATR);
LineMidBuffer[i]=iCustom(Symbol(),TimeFrame,"StepMA_Stoch_V1",1,Pe riodWATR);

}
return(0);
}
//+------------------------------------------------------------------+
Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #184 (permalink)  
Old 06-16-2006, 03:38 PM
balista4's Avatar
Senior Member
 
Join Date: May 2006
Posts: 132
balista4 is on a distinguished road
ValeoFx,

Thanks Man, Its a good indicator and regarding re-painting, I sat the whole afternoon sitting in front of 1M, 1H chart and i did not see its repaint the last bars. am'i missing something here or the re-painting happens sometimes or frequently.

After reading the post however, I tried to look at the codes and went to the site http://viac.ru/ the originator i guess of the codes and found others indicators as well.

The most frequented mq4 indicator was silver channel.

Im sorry i being late to the forum, taking time to get all the indicators, so if you guys have not already gone through it, you can verify and compare the two indicators together and see the results
Attached Files
File Type: mq4 Silver-channels.mq4 (5.2 KB, 302 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #185 (permalink)  
Old 06-16-2006, 04:11 PM
balista4's Avatar
Senior Member
 
Join Date: May 2006
Posts: 132
balista4 is on a distinguished road
Sorry Folks, It indeed does re-paint ....Irrational exuburance. I think i need a break now
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #186 (permalink)  
Old 06-16-2006, 04:51 PM
Administrator
 
Join Date: Sep 2005
Posts: 15,946
Blog Entries: 64
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 balista4
Sorry Folks, It indeed does re-paint ....Irrational exuburance. I think i need a break now
balista4,

this indicator is from trading system created by AlexSilver from viac. ru forum.
It is not simple system. I don't know how to trade by this system.
Attached Images
File Type: gif silver_d1.gif (22.2 KB, 1630 views)
File Type: gif silver_h1.gif (23.7 KB, 1460 views)
File Type: gif silver_h4.gif (16.9 KB, 1443 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #187 (permalink)  
Old 06-17-2006, 10:19 AM
Junior Member
 
Join Date: Oct 2005
Posts: 25
helena is on a distinguished road
multiple from this?

Hello
multiple from this?
Thanks
Attached Files
File Type: mq4 JR_Trend_Indicator.mq4 (4.5 KB, 612 views)
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #188 (permalink)  
Old 06-17-2006, 11:31 AM
Member
 
Join Date: Feb 2006
Location: Czech Republic
Posts: 96
ForexBoss is on a distinguished road
jr is nice indicator
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #189 (permalink)  
Old 06-18-2006, 05:35 AM
balista4's Avatar
Senior Member
 
Join Date: May 2006
Posts: 132
balista4 is on a distinguished road
NewDigital,

Thanks for the clarification.

Last edited by balista4; 06-18-2006 at 05:58 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #190 (permalink)  
Old 06-18-2006, 06:37 PM
Alexey Baranov's Avatar
Member
 
Join Date: Feb 2006
Location: Russia, Volzhsky Volgogradskaya obl.
Posts: 95
Alexey Baranov is on a distinguished road
Hi All!
Me is necessary MTF indicator "BBands Stops".
Somebody can help and alter existing?
Attached Files
File Type: mq4 BBands Stops.mq4 (5.2 KB, 255 views)
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

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

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爜鍩哄湴 Post #1901 Refback 06-09-2008 08:52 AM
My MT4 modified indicators and collection - Page 7 Post #1177 Refback 06-08-2008 08:54 PM
My MT4 modified indicators and collection - Page 7 Post #1177 Refback 06-08-2008 04:15 PM
Tro_Range - MQL4 Code Base