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
  #151 (permalink)  
Old 10-01-2008, 08:08 PM
Member
 
Join Date: Jun 2006
Posts: 85
maccavity is on a distinguished road
Take it and use it!


Quote:
Originally Posted by pip man View Post
do anyone have a mtf fisher indicator? i could not find one.
Attached Files
File Type: mq4 Fisher Transform.mq4 (2.7 KB, 376 views)
File Type: mq4 MTF_FisherTransform 5m.mq4 (2.9 KB, 439 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
  #152 (permalink)  
Old 10-12-2008, 03:13 PM
Member
 
Join Date: Sep 2007
Posts: 54
osaze is on a distinguished road
Dat Indicator repaints seriously

Quote:
Originally Posted by shayne1972 View Post
Hello, I need some help here from some experinced programmers/traders on how a particluar indicator works going forward.

I have been looking at a particular signal history for the #FXmFish[1]-2.mq4 indicator. Unfortunately I have never watched it tick by, bar by bar and since there is no FOREX trading this weekend, I don;t know what it does.

My question is do the histogram bars being painted green or red, and the signal dots (YELLOW & AQUA) repaint themselves or is once a bar is completed, the histogram painted or dot that is painted, stays that color and position so you can make a decision on the bar immediately after to buy or sell? See attached indicator.

Thanks in advance...
Shayne

[IMG][/IMG]
the histogram repaints itself but I haven't seen the dots repaint. it repaints eveb when the bars have closed.
__________________
I have so many commercial trading systems, indicators n robots. I still keep them to remind me that am better.
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
  #153 (permalink)  
Old 11-10-2008, 02:54 AM
Member
 
Join Date: Nov 2007
Posts: 48
veritasfx is on a distinguished road
Quote:
Originally Posted by Yur4ik View Post
Try it by yourself and tell me...
I can't notice that it repaint the past but from the code it draw from 0 to Bar. So it compute the shift=0 first then shift=1,2,3,....
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
  #154 (permalink)  
Old 11-10-2008, 03:02 AM
Member
 
Join Date: Nov 2007
Posts: 48
veritasfx is on a distinguished road
How to write a function for ea?

It takes too much time for backtesting when call exernal indicator especially of these kind regression indicators.
Here's my function but seems it doesn't work.

double Fisher_Value(int shift)
{
double _Value=0;
int i=0;
for(int i=1;i>=0;shift--)
{
double smax = High[iHighest(NULL,0,MODE_HIGH,Length,shift+i)];
double smin = Low[iLowest(NULL,0,MODE_LOW,Length,shift+i)];
double price = iMA(NULL,0,1,0,0,PRICE_MEDIAN,shift+i);
if (smax==smin) smax=smin+Point;
double wpr=(price-smin)/(smax-smin);
_Value = 0.33*2*(wpr-0.5) + 0.67*_Value;
}
if (_Value> 0.99) _Value= 0.999;
if (_Value<-0.99) _Value=-0.999;
return(_Value);
}
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
  #155 (permalink)  
Old 12-23-2008, 08:13 AM
Junior Member
 
Join Date: Dec 2008
Posts: 1
543212 is on a distinguished road
Need help for create EA from Fisher_Yur4ik

I have a simple ideia for EA using Fisher indicator.
When fisher previous bar more than 0.25, Open BUY

and after open buy, if fisher previous bar below 0.25, CLOSE Buy


And if fisher previous bar below -0.25, OPEN SELL

and after open, if fisher previous bar above -0.25, CLOSE SELL.


No SL and TP. i use this in the manual trade and i have a good profit.


Thank you
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
  #156 (permalink)  
Old 01-26-2009, 10:15 AM
Junior Member
 
Join Date: Jul 2007
Posts: 2
billclarke is on a distinguished road
MTF Fisher_Yur4ik

Would, could someone code this indicator (Fisher_Yur4ik) for multi time frame usage? Although it absolutely does repaint, I find that it's real value is as a divergence and trend trading indicator seen in different time frames, say for instance 5, 15, 30 min. time frames. For example, if the 15 and 30 min fisher is in a definite uptrend (green) and the 5 min is reversing from green (red), and there is no divergence on the 15 & 30 min times frames, you can stay in the trade until there is divergence in at least two time frames. Or you can exit the trade on the 5 min, and re-enter again when the 5 min matches green again with the 15 & 30min time frames. The reverse is of course true for a sell trade. Used in combo with say RSI for instance, it gives you very high probability trades. Please, help. Seeing this indicator (Fisher Yur4ik) in muti times frames on one chart would be a great feature. It would be worth your time. Bill
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
  #157 (permalink)  
Old 01-26-2009, 05:36 PM
Junior Member
 
Join Date: Jul 2007
Posts: 2
billclarke is on a distinguished road
A supplement to the above

I will be glad to share a very good strategy if you can provide the MTF Fisher_Yur4ik indicator mentioned above. But where the indicator does surely repaint, it is almost imperative to see the different time frames on the same chart. I know you will be happy w/ it, but we need the Multi-Time-Frame option. Again, it is a trend recognition trading system and does not employ the indicator in the ways it has been discussed in this thread so far. The indicator by itself is a very poor signal provider, but again,I use it in a different manner. regards: bill
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
  #158 (permalink)  
Old 01-31-2009, 07:53 AM
Member
 
Join Date: May 2008
Posts: 29
harrytn is on a distinguished road
Any Help

Hi,

Is there any help where can I download the MTF Fisher_yur4ik http://www.forex-tsd.com/attachments...her_yur4ik.mq4
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
  #159 (permalink)  
Old 03-05-2009, 02:40 AM
Junior Member
 
Join Date: Feb 2009
Posts: 15
xgtrboy is on a distinguished road
Lightbulb Inverse Fisher seems quite good

Hello all,

I have been observing the fisher indicators recently and found that in fact the Inverse Fisher one (sorry I am not well versed in MQL code) seems to do very well (albeit stumbles a bit on sideways markets).

filename is: Inverse Fisher.mq4 (sorry still can't post attachments)

If you are able to try it out, (can't remember where I found it) apparently it's simple - quote from the instructions:

The trading rules are simple. Buy when the indicator crosses over –0.5 or crosses over +0.5 if it has not previously crossed over –0.5 and to sell short when the indicators crosses under +0.5 or crosses under –0.5 if it has not previously crossed under +0.5. You can see that the trading signals are not only clear and unequivocal, but they are also profitable.
If anybody has already (or can) code in sound/email alerts for the above criteria, I would be most happy to spend screentime testing it out...

I think potentially it could be used solely, or as an additional confirmation (more testing on my part to be done) for signal generation. Obviously further filtering out of sideways markets is necessary (so far the Damiani voltmeter signal seems a good starting point, or even the TOR indicator)

Personally I currently have it running with BrainTrend1Sig and GMMA (though GMMA does not play much part, just my addiction to the pretty colours!)

Without my ability to post screenshots, anyone else using Inverse Fisher in a profitable/consistent way?

NewDigital, you mentioned use of BrainTrend signals for some time now, still going well with that?

cheers
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
  #160 (permalink)  
Old 03-06-2009, 06:45 PM
Junior Member
 
Join Date: Apr 2007
Posts: 1
Rulabs is on a distinguished road
Exclamation Fisher_Yur4ik_2.mq4 is repainting

Quote:
Originally Posted by xtremfx View Post
i need some help, could somebody set Fisher_Yur4ik_2.mq4 as bars in separate window... plss
Be careful, Fisher_Yur4ik_2.mq4 is repainting. You can check it with visualization mode in MT4 tester.http://www.forex-tsd.com/images/smilies/omg_smile.gif
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

Tags
dynamic zone rsi, fisher, fisher forex, fisher indicator, fisher indicators, fisher transform, Fisher Yur4ik, fisher yur4ik indicator, Fisher Yurik, Fisher _ Yur4ik, forex, forex fisher, forex fisher indicator, FX Fish, fx fish indicator, fx_fish, indicator fisher, mtf fisher, MTF fisher yur4ik, ravi fisher, ravi fx fisher, yur4ik


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
Better Fisher EA? Is possible? mrb1234 Expert Advisors - Metatrader 4 6 06-20-2009 05:32 PM
Fisher newdigital Indicators - Metatrader 4 25 12-27-2007 03:52 PM
fisher t-rex mazmaz Indicators - Metatrader 4 0 12-17-2006 12:54 AM


All times are GMT. The time now is 06:58 AM.



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