Walter`s Forex "Trend Trades" - Page 23 - Traders Laboratory

Go Back   Traders Laboratory > Equities, FX, and Options > Forex Laboratory

Forex Laboratory Discussion forum for Forex traders.


Reply
 
LinkBack (34) Thread Tools Search this Thread Display Modes
  #221 (permalink)  
Old 09-15-2007, 11:59 AM
PYenner's Avatar
PYenner has no status.

 
Join Date: May 2007
Location: New Zealand
Posts: 511
Thanks: 0
Thanked 1 Time in 1 Post
Re: Walter`s Forex "Trend Trades"

Hi Walter

A picture of a first attempt at a turbo version.
Not sure if it will be too extreme.

Black is Fantail1
Yellow is turbo
Ignore Red, its just the switching signal to the VMA so I can see whats happening.

Try not to keep you waiting much longer but need some sleep.
Cheers
Attached Images
File Type: png Turbo1.PNG (146.5 KB, 72 views)

Reply With Quote
  #222 (permalink)  
Old 09-15-2007, 12:14 PM
walterw's Avatar
walterw is The Trader Chimp

Trader Specs
 
Join Date: Nov 2006
Location: Argentina
Posts: 2,155
Thanks: 0
Thanked 39 Times in 29 Posts
Re: Walter`s Forex "Trend Trades"

Quote:
View Post
Hi Walter

A picture of a first attempt at a turbo version.
Not sure if it will be too extreme.

Black is Fantail1
Yellow is turbo
Ignore Red, its just the switching signal to the VMA so I can see whats happening.

Try not to keep you waiting much longer but need some sleep.
Cheers
Pyenner, you rock man ¡¡ that relationship looks very clean and leading at the same time... I believe we will get to the point of getting to an "almost" perfect timing... great stuff ¡¡ cheers Walter.

__________________
you can check my site on my profile contact info...
Reply With Quote
  #223 (permalink)  
Old 09-15-2007, 12:21 PM
PYenner's Avatar
PYenner has no status.

 
Join Date: May 2007
Location: New Zealand
Posts: 511
Thanks: 0
Thanked 1 Time in 1 Post
Re: Walter`s Forex "Trend Trades"

Quote:
View Post
Pyenner, you rock man ¡¡ that relationship looks very clean and leading at the same time... I believe we will get to the point of getting to an "almost" perfect timing... great stuff ¡¡ cheers Walter.
Yes sharper but also the HE's tend to be shorter, it may need different lines in the fantail for timing. May be confusing at first. But 1-4 bars faster so worth a try...

Reply With Quote
  #224 (permalink)  
Old 09-15-2007, 12:31 PM
walterw's Avatar
walterw is The Trader Chimp

Trader Specs
 
Join Date: Nov 2006
Location: Argentina
Posts: 2,155
Thanks: 0
Thanked 39 Times in 29 Posts
Re: Walter`s Forex "Trend Trades"

Quote:
View Post
Yes sharper but also the HE's tend to be shorter, it may need different lines in the fantail for timing. May be confusing at first. But 1-4 bars faster so worth a try...
well about HE`s ... if this particular version would be used for timing only we should be ok... the idea actually on this optimization is to get clean and leading entries... so let the HE from the previous version keep working for us in terms of settuping... I believe we will get to the point of using diferent versions for diferent definitions... cheers Walter.

__________________
you can check my site on my profile contact info...
Reply With Quote
  #225 (permalink)  
Old 09-15-2007, 12:36 PM
walterw's Avatar
walterw is The Trader Chimp

Trader Specs
 
Join Date: Nov 2006
Location: Argentina
Posts: 2,155
Thanks: 0
Thanked 39 Times in 29 Posts
Re: Walter`s Forex "Trend Trades"

Here I attach the template of the 1 min chart for my last possible timing optimization... (blue and white lines)

Now I believe that what Pyenner is programming will mostly outperform this one... so stay tunned... cheers Walter.
Attached Files
File Type: tpl last 1 min timing.tpl (15.3 KB, 51 views)

__________________
you can check my site on my profile contact info...
Reply With Quote
  #226 (permalink)  
Old 09-16-2007, 02:06 AM
PYenner's Avatar
PYenner has no status.

 
Join Date: May 2007
Location: New Zealand
Posts: 511
Thanks: 0
Thanked 1 Time in 1 Post
Re: Walter`s Forex "Trend Trades"

Quote:
View Post
I have attached my attempt to duplicate the rainbow in MS excel in hopes that someone who has a complete understanding of the formulas may be able to see where I off and help me get it working correctly. I would like to get a full understanding of the calculations.
I worked from Walters post (Bemac's code for VT platform)
Clym
Clym
That is amazing.
Had no idea Excel was up to that sort of effort.
The black line of the fantail should be hugging the Close price.
It looks like the final formula has to be wrong for so much distance to accumulate between the black VMA line and the Close price.

This is the MT4 code for the Chande VMA.
VarMA[i]=((2-Const)*VarMA[i+1]+Const*Close[i])/2;
In MT4 [i] is the current bar and [i+1] the previous older bar.

The ADXR option can be deleted.
The 100*Wilder (3 locations) serves no purpose, delete the 100* or leave it, makes no difference.

EmaIndex and VarMAPr are counterproductive, they tend to put a slope on the flat area, delete them.

VT Wilder function uses a 15 bar ema when 8 bars are called.

Diff=HHV(_ADX,8)-LLV(_ADX,8) and
Const=(_ADX-LLV(_ADX,8))/Diff
are all important, make sure the conditional rubbish is not interrupting data flow from _ADX to Chande. Where division by zero must be avoided, the default should be zero, no funny numbers.

This should probably be on a programming thread somewhere but I don't know where that might be. Good Luck.

Reply With Quote
  #227 (permalink)  
Old 09-16-2007, 02:17 AM
PYenner's Avatar
PYenner has no status.

 
Join Date: May 2007
Location: New Zealand
Posts: 511
Thanks: 0
Thanked 1 Time in 1 Post
Re: Walter`s Forex "Trend Trades"

Clym
Maybe try the "Playing with the VMAR`s open research" thread if you need me.
PY

Reply With Quote
  #228 (permalink)  
Old 09-16-2007, 02:25 AM
PYenner's Avatar
PYenner has no status.

 
Join Date: May 2007
Location: New Zealand
Posts: 511
Thanks: 0
Thanked 1 Time in 1 Post
Re: Walter`s Forex "Trend Trades"

Clym
Const should resemble the main output from an ADX.
The Plus and Minus things should mimic the ADX component signals.
If you can monitor those signals inside Excel it will make life easier.
I use a spare indicator line to display signals in chart, offset from the Close price, eg
Indicator[i]=Close[i] + signal[i]

Reply With Quote
  #229 (permalink)  
Old 09-16-2007, 03:13 AM
PYenner's Avatar
PYenner has no status.

 
Join Date: May 2007
Location: New Zealand
Posts: 511
Thanks: 0
Thanked 1 Time in 1 Post
Re: Walter`s Forex "Trend Trades"

Clym
DL FantailVMA2.mq4 from the VMAR research thread and open it with Notepad, its a txt file. Its a faster version than Bemac but it may give some clues about signal flow.

Reply With Quote
  #230 (permalink)  
Old 09-16-2007, 06:54 AM
PYenner's Avatar
PYenner has no status.

 
Join Date: May 2007
Location: New Zealand
Posts: 511
Thanks: 0
Thanked 1 Time in 1 Post
Re: Walter`s Forex "Trend Trades"

Clym
I don't understand Excel well enough.
Your Diff should not be stuck on 100.
But your ADX final has enough 100's in it to be causing the problem.
Your DM's and DI's look to have way too many zeroes in them.
It may be that your IF AND stuff is faulty.
Plus logic attempts to find rising trend and rising trend within increasing volatility.
Minus logic looks for falls and falls within rising volatility.
It is abnormal for both to be low at the same time.
In fact they should tend to stay above zero quite consistently.

TH and TL need to be displaying their decimals, need to see the pips.
TH TL and TR look okay but note how TR is rarely zero?
The DM DI stuff should look the same way, normally above zero.
---------
Maybe this will help [i+1] is older than [i] ok?

TR=TH-TL;//2 bar unnormalized price difference, comprehensive volatility measure of current bar, always positive.
//Includes any gap data between bars, and price jumps caused by missing bars.

//ADX looks for trends in Highs, and in Lows.
if(High[i]>High[i+1] && Low[i]>=Low[i+1]) PDM=High[i]-High[i+1];//2 bar unnormalized price difference, both High and Low rose.
else
if(High[i]>High[i+1] && Low[i]<Low[i+1] && High[i]-High[i+1]>Low[i+1]-Low[i]) PDM=High[i]-High[i+1];//Rise within a volatility increase.
else PDM=0;//Zero or positive result, zero case includes volatility decrease options.

if(Low[i]<Low[i+1] && High[i]<=High[i+1]) MDM=Low[i+1]-Low[i];//2 bar unnormalized price difference, both fell.
else
if(High[i]>High[i+1] && Low[i]<Low[i+1] && High[i]-High[i+1]<Low[i+1]-Low[i]) MDM=Low[i+1]-Low[i];//Fall within a volatility increase.
else MDM=0;//Note, zero or positive result,zero case includes volatility decrease options.

Reply With Quote
Reply



LinkBacks (?)
LinkBack to this Thread: http://www.traderslaboratory.com/forums/f24/walter-s-forex-trend-trades-2364.html
Posted By For Type Date
GMMA in Color This thread Refback 12-17-2007 06:18 AM
GMMA in Color This thread Refback 12-16-2007 12:12 PM
GMMA in Color This thread Refback 12-16-2007 11:40 AM
GMMA in Color This thread Refback 12-16-2007 11:16 AM
GMMA in Color This thread Refback 12-16-2007 08:30 AM
GMMA in Color This thread Refback 12-16-2007 07:34 AM
GMMA in Color This thread Refback 12-16-2007 06:15 AM
GMMA in Color This thread Refback 12-16-2007 05:21 AM
GMMA in Color This thread Refback 12-16-2007 02:18 AM
GMMA in Color This thread Refback 12-16-2007 12:57 AM
GMMA in Color This thread Refback 12-15-2007 10:35 PM
informacje nowosci » Blog Archive » Forex - systemy i strategie :: RE: GMMA in Color This thread Pingback 12-15-2007 09:11 PM
GMMA in Color This thread Refback 12-15-2007 07:33 PM
GMMA in Color This thread Refback 12-15-2007 07:32 PM
Forex - systemy i strategie :: RE: GMMA in Color This thread Refback 11-27-2007 12:17 PM
GMMA in Color This thread Refback 11-10-2007 09:11 AM
Fantail VMAs - NinjaTrader Support Forum This thread Refback 10-30-2007 04:44 AM
Fantail VMAs - NinjaTrader Support Forum This thread Refback 10-29-2007 10:54 PM
GMMA in Color This thread Refback 10-10-2007 03:53 PM
FOREX - kilka pytañ This thread Refback 10-03-2007 06:49 PM
FOREX - kilka pytañ This thread Refback 10-02-2007 04:29 PM
UFO - 27.09.2007 - ¶wiêto, ¶wiêto - kto zgadnie jakie? This thread Refback 09-27-2007 05:36 AM
GMMA in Color This thread Refback 09-16-2007 12:09 PM
GMMA in Color This thread Refback 09-16-2007 07:09 AM
GMMA in Color This thread Refback 09-15-2007 09:09 AM