NexusFi: Find Your Edge


Home Menu

 





Fisher for NT7


Discussion in NinjaTrader

Updated
      Top Posters
    1. looks_one Fat Tails with 13 posts (36 thanks)
    2. looks_two emini_Holy_Grail with 7 posts (0 thanks)
    3. looks_3 trendisyourfriend with 6 posts (1 thanks)
    4. looks_4 zt379 with 4 posts (1 thanks)
      Best Posters
    1. looks_one Fat Tails with 2.8 thanks per post
    2. looks_two tellytub with 1.3 thanks per post
    3. looks_3 gordo with 1 thanks per post
    4. looks_4 zt379 with 0.3 thanks per post
    1. trending_up 19,928 views
    2. thumb_up 43 thanks given
    3. group 10 followers
    1. forum 39 posts
    2. attach_file 9 attachments




 
Search this Thread

Fisher for NT7

  #11 (permalink)
 zt379 
UK London
 
Platform: NT
Posts: 2,031 since Sep 2009
Thanks Given: 1,544
Thanks Received: 1,924


Fat Tails View Post
I have made some changes, and the indicator should plot now, but I will continue to review the rest of the indicator as well. Not yet tested for repainting or other issues.

Is plotting.
I'm most grateful...(and not the first time .thx)

Mant thxs.

Started this thread Reply With Quote

Can you help answer these questions
from other members on NexusFi?
Better Renko Gaps
The Elite Circle
My NT8 Volume Profile Split by Asian/Euro/Open
NinjaTrader
The space time continuum and the dynamics of a financial …
Emini and Emicro Index
ZombieSqueeze
Platforms and Indicators
New Micros: Ultra 10-Year & Ultra T-Bond -- Live Now
Treasury Notes and Bonds
 
Best Threads (Most Thanked)
in the last 7 days on NexusFi
Get funded firms 2023/2024 - Any recommendations or word …
59 thanks
Funded Trader platforms
37 thanks
NexusFi site changelog and issues/problem reporting
24 thanks
GFIs1 1 DAX trade per day journal
22 thanks
The Program
19 thanks
  #12 (permalink)
 emini_Holy_Grail 
Dallas,TX
 
Experience: Intermediate
Platform: NinjaTrader, OpenQuant
Broker: Zaner/Zen Fire
Trading: ES,6E,6B,GC,CL
Posts: 597 since Nov 2009
Thanks Given: 176
Thanks Received: 126

thks for the work
so the one in post # 9 by fat Tails,, does it repaint or not repaint?

Reply With Quote
  #13 (permalink)
 
trendisyourfriend's Avatar
 trendisyourfriend 
Quebec Canada
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG
Trading: ES, NQ, YM
Frequency: Daily
Duration: Minutes
Posts: 4,527 since Oct 2009
Thanks Given: 4,171
Thanks Received: 6,018



cory View Post
without repainting feature the indicator won't look so good.

Yeah i think you have a valid point Cory. When i was trading the FX market i was using it and was not particularly bothered by the fact it was repainting. Just can't wait to test the version made by FT to see how it behaves. I find the Fisher quite usefull to gauge a developing trend specially at the beginning. It's a good complement to a moving average. As usual thanks FT for the conversion. I just realised lately that all the indicators i was using were indicators you modified or created. I promise i'll be kind to you

Reply With Quote
  #14 (permalink)
 emini_Holy_Grail 
Dallas,TX
 
Experience: Intermediate
Platform: NinjaTrader, OpenQuant
Broker: Zaner/Zen Fire
Trading: ES,6E,6B,GC,CL
Posts: 597 since Nov 2009
Thanks Given: 176
Thanks Received: 126

why would the repaint be good? if you consider a bar on a setup thats green now,but if it turns red or yellow, on next bar, wouldnt entry be wrong?

Reply With Quote
  #15 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102


emini_Holy_Grail View Post
thks for the work
so the one in post # 9 by fat Tails,, does it repaint or not repaint?

If I look at the code

 
Code
for( int i = bars - 1; i >= 0; i-- )
{
	if( vals[ i ] >= 0 )
	{
		Up.Set(i, vals[i]);
		Down.Set(i, 0);
	}
	else
	{
		Down.Set(i, vals[i]);
		Up.Set(i, 0);
	}
}
I would say that the indicator repaints close to everything. With default settings this indicator recalculates the last 200 bars.

 
Code
bars= Period * recalculateBars = 100 * 2 = 200;
So if your default chart is a 15 min chart, you can now enter your position for Wednesday afternoon of last week, because that is where you will find the last bar that has not been repainted. So let us carefully conclude that this indicator is a fake, as it tells you the truth after the fact, and the truth for Thursday and Friday last week is not yet known.

From the MetaTrader forum I understood that there is a version of the indicator that does not repaint, I will have to look at the .mq4 file above.

Reply With Quote
  #16 (permalink)
 emini_Holy_Grail 
Dallas,TX
 
Experience: Intermediate
Platform: NinjaTrader, OpenQuant
Broker: Zaner/Zen Fire
Trading: ES,6E,6B,GC,CL
Posts: 597 since Nov 2009
Thanks Given: 176
Thanks Received: 126

Thks Fat tails. yeh, you can not even do a setup that repaints this way,. Thks for the warning and details

Reply With Quote
  #17 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102

Had a look at the MetaTrader indicator and tried to translate it to NT 7. The result is attached.

The only problem seems to be that little of the original code is left. Also I have no idea, how the MetaTrader language should be interpreted. So let us call this a best guess.

I guarantee that this one does not repaint.

Attached Thumbnails
Click image for larger version

Name:	GC 04-11 (15 Min) 28_01_2011 FisherYur5ik.jpg
Views:	434
Size:	90.0 KB
ID:	29671  
Attached Files
Elite Membership required to download: FisherYur5ik.zip
Reply With Quote
  #18 (permalink)
 emini_Holy_Grail 
Dallas,TX
 
Experience: Intermediate
Platform: NinjaTrader, OpenQuant
Broker: Zaner/Zen Fire
Trading: ES,6E,6B,GC,CL
Posts: 597 since Nov 2009
Thanks Given: 176
Thanks Received: 126

Thks Fat Tails but have a request could you add an arrow on v4 when it triggers color change 1st so can catch when it really repaints.

Reply With Quote
  #19 (permalink)
 
Fat Tails's Avatar
 Fat Tails 
Berlin, Europe
Market Wizard
 
Experience: Advanced
Platform: NinjaTrader, MultiCharts
Broker: Interactive Brokers
Trading: Keyboard
Posts: 9,888 since Mar 2010
Thanks Given: 4,242
Thanks Received: 27,102


emini_Holy_Grail View Post
Thks Fat Tails but have a request could you add an arrow on v4 when it triggers color change 1st so can catch when it really repaints.

Sorry v4 is a fake. I will not investing any time to make it a super-fake.

You should definitely scrap it. It displays information that was not available, when plotted.

Reply With Quote
Thanked by:
  #20 (permalink)
 
trendisyourfriend's Avatar
 trendisyourfriend 
Quebec Canada
Market Wizard
 
Experience: Intermediate
Platform: NinjaTrader
Broker: AMP/CQG
Trading: ES, NQ, YM
Frequency: Daily
Duration: Minutes
Posts: 4,527 since Oct 2009
Thanks Given: 4,171
Thanks Received: 6,018



Fat Tails View Post
Had a look at the MetaTrader indicator and tried to translate it to NT 7. The result is attached.

The only problem seems to be that little of the original code is left. Also I have no idea, how the MetaTrader language should be interpreted. So let us call this a best guess.

I guarantee that this one does not repaint.

Fat, if you don't know the MetaTrader language then how can we tell if this indicator does what it is supposed to do ? What have you translated exactly ? Is it based on the Fisher algo or something else ?

Reply With Quote




Last Updated on September 15, 2015


© 2024 NexusFi™, s.a., All Rights Reserved.
Av Ricardo J. Alfaro, Century Tower, Panama City, Panama, Ph: +507 833-9432 (Panama and Intl), +1 888-312-3001 (USA and Canada)
All information is for educational use only and is not investment advice. There is a substantial risk of loss in trading commodity futures, stocks, options and foreign exchange products. Past performance is not indicative of future results.
About Us - Contact Us - Site Rules, Acceptable Use, and Terms and Conditions - Privacy Policy - Downloads - Top
no new posts