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 Thread Tools Display Modes
  #11 (permalink)  
Old 11-25-2006, 10:16 PM
Senior Member
 
Join Date: Nov 2005
Posts: 169
mangman is on a distinguished road
Yaniv,

The Yurik version of the Fisher indicator does infact repaint the past. It is useless.

Please check this thread on this forum. Igorad and many other expert prgrammers were involved in trying to figure out this indicator in response Nina's original question about the repainting of some of the Fisher indicators available on the web.

Fisher

Please download the Fisher_m11.mq4 indicator in that thread near the end and then change the code in your EA to reflect this and test it and let us know if it works.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #12 (permalink)  
Old 11-25-2006, 10:43 PM
zupcon's Avatar
Senior Member
 
Join Date: Dec 2005
Location: Malta
Posts: 235
zupcon is on a distinguished road
Quote:
Originally Posted by yaniv_av
Do you have a version of that indicator that dosn't repaint ?
Sorry I dont, but I think there are a few versions out there that dont repaint, although you'll find that the signals from these are probably no better than RSI or stochastics, or even tossing a coin to determine a suitable entry.

Its probably worth spending a couple of hours watching your EA in real time to confirm, I usually drop indicators on the 1 min charts to watch out for them repainting, there's also a couple of good utilities around that will take screen captures every few minutes if you really cant be there to watch.

good luck with it, let us know how you get on

regards
mick
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #13 (permalink)  
Old 01-30-2007, 04:23 AM
Senior Member
 
Join Date: Jun 2006
Posts: 373
fxnewbie is on a distinguished road
Quote:
Originally Posted by yaniv_av
Oh, well I did'nt know that...
I'll check it live at monday.
Do you have a version of that indicator that dosn't repaint ?
This indicator repaints. Dont use it !!
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #14 (permalink)  
Old 06-20-2008, 04:37 AM
Junior Member
 
Join Date: May 2008
Posts: 2
menelaus is on a distinguished road
EA using others indicators

Hello all,

Is it possible to write an EA that takes it signals for trades based on someone elses closed source indicators?

I need to write an EA that is customized to the style that I trade so I can actually get some sleep and work and go to school and still make money with forex.

I don't have access to the source for the indicators, but they show visual keys on the chart.

Thank you,
Menelaus
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #15 (permalink)  
Old 06-20-2008, 05:00 AM
Senior Member
 
Join Date: Oct 2007
Posts: 223
Dave137 is on a distinguished road
Smile

The answer is Yes for about 98% of the indicators that end with .ex4. What you have to test is the buffers using the iCustom statement in your ea such as:

double PM1=0, PM1_1=0, PM1_2=0, PM2=0, PM2_1=0, PM2_2=0; //Initializes variable names

PM1=iCustom(NULL,0,"Price Channel",0,0); // Buffer 0, Shift 0 // Note: The Indicator Name (ex. "Price Channel") has to match the file name of the indicator - Case sensitive!
PM1_1=iCustom(NULL,0,"Price Channel",0,1); // Buffer 0, Shift 1 (1-Back)
PM1_2=iCustom(NULL,0,"Price Channel",0,2); // Buffer 0, Shift 2 (2-Back)

PM2=iCustom(NULL,0,"Price Channel",1,0); // Buffer 1, Shift 0
PM2_1=iCustom(NULL,0,"Price Channel",1,1); // Buffer 1, Shift 1 (1-Back)
PM2_2=iCustom(NULL,0,"Price Channel",1,2); // Buffer 1, Shift 2 (2-Back)

//Sample logic code to buy!


if(PM1>PM2 && PM1_1<PM2_1)

{
OpenBuy=1;
}

Continue code of program!



You can change the PM1, PM2 etc. variable to whatever you want to call it.

You will either have to use a comment statement referencing PM1, or a print statement referencing PM1, or use Control-D which opens up a data window on the left side of the graph and may tell you the current indicator buffer values of the current bar.

P.S. You may identify the amount of buffers used in the indicator by the amount of colors it shows in the indicator setup box when you select it from the indicator list by right clicking the mouse after the indicator is on the graph (4 colors = 4 buffers in the indicator). If there are only 2 colors listed, than buffer 0 will be 'Up' direction, and buffer 1 will be 'Down' direction value of the indicator on the current bar.

If you have any other questions, just ask.
I hope this helps!

Dave
<><<<

Last edited by Dave137; 06-20-2008 at 05:11 AM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #16 (permalink)  
Old 06-20-2008, 05:15 AM
Junior Member
 
Join Date: May 2008
Posts: 2
menelaus is on a distinguished road
Thank you for the quick reply Dave, will begin coding my EA soon
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #17 (permalink)  
Old 06-20-2008, 05:37 PM
matrixebiz's Avatar
Senior Member
 
Join Date: Oct 2006
Posts: 1,174
matrixebiz is on a distinguished road
Quote:
Originally Posted by codersguru View Post
in XP Worx - Custom MetaTrader (MQL4) Programming and Free Expert Advisors - Indicators - Libraries - Scripts - MetaTrader Extensions (c++ DLLs) they are building iCustom generator (which I'm helping them in with the mql4 language!)

The program takes .mq4 file and which line to use as parameters and return mql4 code generated!

I'll inform you when it's done and be online!
Is the program ready? Can't find it.
Thanks
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
icustom

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
iCustom function homicida Questions 67 11-30-2008 10:42 AM
Easy iCustom and Alerts! codersguru Indicators - Metatrader 4 50 09-18-2008 02:02 PM
icustom maje Questions 24 12-05-2007 10:26 AM
I need help on creating an Icustom statement for my EA using this indicator as input! iscuba11 Expert Advisors - Metatrader 4 4 09-11-2006 08:18 PM
iCustom() problem billritz Indicators - Metatrader 4 5 08-23-2006 08:22 AM


All times are GMT. The time now is 10:28 AM.



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