Forex
Google
New signals service!

Go Back   Forex Trading > Trading systems > Digital Filters


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 (7) Thread Tools Display Modes
  #201 (permalink)  
Old 02-13-2008, 05:42 AM
forex_for_life's Avatar
Senior Member
 
Join Date: Mar 2007
Posts: 251
forex_for_life is on a distinguished road
Quote:
Originally Posted by clahn04 View Post
Forex For Life,

That's funny. :-) I promise i didn't steal it! lol
Of course you didn't. Just kidding.

I want to thank you, deeforex, dvarrin, robertinno, and Simba for reviving this thread and thus resparking the fire in me to research this area w/ more gravity.

You guys rock!!!
__________________
"A successful speculator bases no moves on what supposedly will happen but reacts instead to what does happen."

Max Gunther
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #202 (permalink)  
Old 02-13-2008, 09:43 AM
SIMBA's Avatar
Senior Member
 
Join Date: May 2006
Posts: 1,070
SIMBA is on a distinguished road
Quote:
Originally Posted by deeforex View Post
Thanks for the EA Simba.

I just kept everything as default, with the exception of changing the names of the indicator. I loaded it with the indies that I created last week.

I've got 1 order on it so we'll see how it does. Since I took the pic, the order is down 10 pips to +5pips.

dee
deeforex:Thanks a lot,I presume what I mention in point 2 is what you did,please be so kind to confirm

1-This is not an EA for trading..it is an EA for testing strategies,so,if you want to test the rstl standard change of slope strategy,better to do it on enough historical data..suppose you make money the first trade,so what?Statistically you need several years of testing to support or disprove the concept.

2-The interesting strategy to test,historically since 12 of December and forward live for this week,would be to use the customized SATL and RSTL,we created from short term optimization,I presume this is what you did,can you confirm?...since I am not at my pc,I don`t have them...so,I would like you or anybody else,to please substitute them in the EA and test them Live...if you don`t mind

3-The idea,at least my idea,is to optimize on past 200 bars of data,then test live(with demo) next week..reoptimize at the end of week and then retest again the next week again,etc,etc...AND to compare several different entries and exits from the strategy menu..NOT to just put an EA with standard indicators and see what happens,because we are not going to learn anything from it,if it makes money or not in the first 2 or 3 trades(that would take around a week per trade) is statistically irrelevant,so ,after 3 weeks we won`t know anything new about it.

4-Basically,I don`t intend to discover the Holy Grail,my aim is just for everybody to use the following mindsetiscover optimized settings or customized digital filters,test them with the test EA I provided to show which of the trading strategies shows more promise,use this trading strategy forward test(on demo)with frequent reoptimizations...and learn..so,that when we think we have discovered the Holy Grail,before jumping headfirst,at least we cool down a little by some reality check,which only testing with an Ea ,or several years of experience,can provide...

Of course this is just my aim,so,anybody do what you wish
__________________
Somos mortales hasta el primer beso..y la segunda copa de vino
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #203 (permalink)  
Old 02-13-2008, 10:00 AM
SIMBA's Avatar
Senior Member
 
Join Date: May 2006
Posts: 1,070
SIMBA is on a distinguished road
Quote:
Originally Posted by clahn04 View Post
Forex For Life,

That's funny. :-) I promise i didn't steal it! lol

Simba,

Thanks for the response. Last night i did something similar in excel, to test the SATL slope. I found that filtering out the slope when it's close to level and not moving much kept you out of a lot of choppy trades. I think for my purposes i found the 2 period slope at each point in time. I then averaged the past 2 periods of that. If it was >.025, we have a Long trade. If it's < -.025,we have a short. Anything in between represented "No trade". Attached is the word file ( i can't post excel files, so i pasted it into word). The only thing i'm wondering is when the entry should be. Should it be at the beginning of the bar, so the slope is referencing the previous SATL for slope or not......not too sure. The SATL will always recalculate with new data....

I think there is some great power to be found in these slope strategies.

Comments always welcomed. I'll be back around later.

Safe trades,

cl
clahn,entry should be at open of next bar..same for exit or exit and reverse,the way it is coded in the EA for example,once rstl is higher than previous rstl(both calculated at close)it opens a buy order at the open of the next bar..you can check visually with the strategy tester..anything else would be lying to ourselves.
I believe it is possible to code the minimum required slope into the EA,just by adding a new ext internal "slopefactor=x" and changing the code of buy and sell triggers BUY 1_1>(BUY 1_2+SLOPEFACTOR)..FOR BUY 1_1 being actual SATL and BUY 1_2 previous one,this is much better for testing since we can check for several alternatives,currency pairs,etc...will try to modify the posted EA to be able to do so.
__________________
Somos mortales hasta el primer beso..y la segunda copa de vino
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #204 (permalink)  
Old 02-13-2008, 10:07 AM
SIMBA's Avatar
Senior Member
 
Join Date: May 2006
Posts: 1,070
SIMBA is on a distinguished road
EA with slope

The EA is coded to buy or sell by change of slope in the satl of a minimum defined by slopefactor,coded at 0.25,but easily testable and modifiable..exit has been coded by just a change of slope of the satl from positive to negative,etc,obviously,you can modify it to suit your (testing) needs
Attached Files
File Type: mq4 EAtestdigfilterswslope.mq4 (10.4 KB, 48 views)
__________________
Somos mortales hasta el primer beso..y la segunda copa de vino
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #205 (permalink)  
Old 02-13-2008, 01:52 PM
deeforex's Avatar
Member
 
Join Date: Oct 2005
Posts: 91
deeforex is on a distinguished road
Quote:
Originally Posted by SIMBA View Post
deeforex:Thanks a lot,I presume what I mention in point 2 is what you did,please be so kind to confirm
was your point 2 this...
Quote:
And you leave this code as it is

if (Buy1_3 > Buy1_4 ) Order = SIGNAL_BUY;

if (Sell1_3 < Sell1_4 ) Order = SIGNAL_SELL;

if (CloseSell1_3 > CloseSell1_4 ) Order = SIGNAL_CLOSESELL;

if (CloseBuy1_3 < CloseBuy1_4 ) Order = SIGNAL_CLOSEBUY;
if so, yes, I left this the same.

Thanks for your clarification of your intentions for sharing the EA. I threw the EA on for forward testing just to see how it would do with the "fresh" indies that I created last week. I will work on the aspect of optimizing this coming week.

Last edited by deeforex; 02-13-2008 at 01:57 PM.
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #206 (permalink)  
Old 02-13-2008, 03:49 PM
Member
 
Join Date: Mar 2007
Posts: 44
moha00 is on a distinguished road
Hi !
I am a newbia on Digital Filters .
What I must read ? can any body help me?(for knowing them)
Thanks

Last edited by moha00; 02-13-2008 at 04:00 PM. Reason: at=>on
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #207 (permalink)  
Old 02-13-2008, 03:58 PM
Linuxser's Avatar
Moderator
 
Join Date: May 2006
Location: Helliconia (Spring)
Posts: 3,299
Blog Entries: 46
Linuxser has disabled reputation
Quote:
Originally Posted by moha00 View Post
Hi !
I am a newbia at Digital Filters .
What I must read ? can any body help me?(for knowing them)
Thanks
By reading this section plus some material of John Ehlers (just do some search in the forum) and books like Mesa and Trding Markets Cycles, Rocket Science For Traders and Cybernetic Analysis for Stock and Futures you should be fine.

www.mesasoftware.com is good place to start also.
__________________
Elite Manual Trading | Portfolio | Calendar | Suggestions to improve the forum | My Blog

Remember: Signatures must have three lines as maximum
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #208 (permalink)  
Old 02-13-2008, 11:05 PM
clahn04's Avatar
Senior Member
 
Join Date: Oct 2007
Location: Illinois
Posts: 128
clahn04 is on a distinguished road
I would add Hurst to that list...

Sorry i've been MIA...i've been crazy busy at work... i hope to be back contributing to this board tonight....i wanted to throw a question out there thought right now....it somewhat pertains to this line of thinking...

The new Futures magazine (Feb 08 edition) has an article in it by Matt Reynolds entitled "Pinpointing entries accross time frames". In it he gives the basic talk about confirming on MTframes an entry. Now i'm not talking about a MTF stochastic strategy or anything like that, but for our purposes, would something like this make sense?..

Example - RSTL on 1 Hour chart is a postive slope, signaling an uptrend. Go down to a 15 minute chart for your entry and exit, and have another qualifier - perhaps the RSTL on the 15 is positive, or SATL ( which is less delayed). Obviously the essense of digital filters is filtering out noise, making our signals more "accurate". I'm wondering if MTF would be disadvantageous because the RSTL basically tells you the direction already. Anyways, just a thought. Feel free to comment.

We have a great discussion going here. Let's keep it going.

Safe trades,

cl
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #209 (permalink)  
Old 02-13-2008, 11:24 PM
clahn04's Avatar
Senior Member
 
Join Date: Oct 2007
Location: Illinois
Posts: 128
clahn04 is on a distinguished road
Quote:
Originally Posted by SIMBA View Post
deeforex:Thanks a lot,I presume what I mention in point 2 is what you did,please be so kind to confirm

1-This is not an EA for trading..it is an EA for testing strategies,so,if you want to test the rstl standard change of slope strategy,better to do it on enough historical data..suppose you make money the first trade,so what?Statistically you need several years of testing to support or disprove the concept.

2-The interesting strategy to test,historically since 12 of December and forward live for this week,would be to use the customized SATL and RSTL,we created from short term optimization,I presume this is what you did,can you confirm?...since I am not at my pc,I don`t have them...so,I would like you or anybody else,to please substitute them in the EA and test them Live...if you don`t mind

3-The idea,at least my idea,is to optimize on past 200 bars of data,then test live(with demo) next week..reoptimize at the end of week and then retest again the next week again,etc,etc...AND to compare several different entries and exits from the strategy menu..NOT to just put an EA with standard indicators and see what happens,because we are not going to learn anything from it,if it makes money or not in the first 2 or 3 trades(that would take around a week per trade) is statistically irrelevant,so ,after 3 weeks we won`t know anything new about it.

4-Basically,I don`t intend to discover the Holy Grail,my aim is just for everybody to use the following mindsetiscover optimized settings or customized digital filters,test them with the test EA I provided to show which of the trading strategies shows more promise,use this trading strategy forward test(on demo)with frequent reoptimizations...and learn..so,that when we think we have discovered the Holy Grail,before jumping headfirst,at least we cool down a little by some reality check,which only testing with an Ea ,or several years of experience,can provide...

Of course this is just my aim,so,anybody do what you wish

Simba,

I completley agree with you. It may be of some use to discuss as a group what types of strategies we should test (i.e., Slope SATL change, SATL slope beyond a certain factor change, RSTL, etc). It may feel a bit like school, but if we break it up so that as a group we are testing multiple currencies during the week ( each person testing one), we may begin to gain some ground. Just my $.02.

cl
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
  #210 (permalink)  
Old 02-14-2008, 03:16 AM
forex_for_life's Avatar
Senior Member
 
Join Date: Mar 2007
Posts: 251
forex_for_life is on a distinguished road
Quote:
Originally Posted by clahn04 View Post
Simba,

I completley agree with you. It may be of some use to discuss as a group what types of strategies we should test (i.e., Slope SATL change, SATL slope beyond a certain factor change, RSTL, etc). It may feel a bit like school, but if we break it up so that as a group we are testing multiple currencies during the week ( each person testing one), we may begin to gain some ground. Just my $.02.

cl
Yo clahn and other interested parties,

You may have seen this already. It's a smoothed version of FTLM called FTLM_KG (the KG being the initials of the coder who added the smoothing). I use it is to give me the short-term cycle since traditional FTLM is too "leading" for my taste. It, of course, exhibits added lag which is the consequence for smoothing, but it is still damn quick. Screenshot provided for initial visual comparision. This is before any optimizing. Don't know how much room for improvement and I'm still learning how to do it w/ FTLM/STLM/RBCI-type digital filters. I digress.......enjoy.

Peace,

F.F.L.
Attached Images
File Type: gif ftlm comparision.gif (36.8 KB, 358 views)
Attached Files
File Type: mq4 FTLM_KG_hist.mq4 (9.8 KB, 60 views)
__________________
"A successful speculator bases no moves on what supposedly will happen but reacts instead to what does happen."

Max Gunther
Digg this Post!Add Post to del.icio.usBookmark Post in TechnoratiFurl this Post!
Reply With Quote
Reply

Bookmarks

Tags
trading, goertzel, digital

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

LinkBacks (?)
LinkBack to this Thread: http://www.forex-tsd.com/digital-filters/300-trading-strategies-based-digital-filters.html
Posted By For Type Date
KantorFX.com • View topic - I forgget to say :( all about Fourier Transform This thread Refback 08-09-2008 01:19 PM
KantorFX.com • View topic - I forgget to say :( all about Fourier Transform This thread Refback 08-08-2008 03:23 PM
KantorFX.com • View topic - I forgget to say :( all about Fourier Transform This thread Refback 08-08-2008 07:35 AM
Optimised Trend Trading - Page 4 This thread Refback 05-13-2008 05:23 PM
Optimised Trend Trading - Page 4 This thread Refback 04-17-2008 01:32 PM
Optimised Trend Trading - Page 4 This thread Refback 03-25-2008 06:24 AM
Optimised Trend Trading - Page 4 This thread Refback 03-18-2008 10:02 AM

Similar Threads
Thread Thread Starter Forum Replies Last Post
Digital Filters (basic explanation) newdigital Digital Filters 33 03-26-2008 03:29 PM
digital filters newdigital Indicators - Metatrader 3 3 12-07-2005 08:18 AM
Digital filters newdigital Documentation 4 12-02-2005 07:04 PM


All times are GMT. The time now is 03:49 AM.



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