Not a clue what this thread is about any more

RockyJ
Trader
Posts: 84
Joined: Sun Dec 18, 2011 3:44 am
Location: Denver Colorado

Re: A little helper for Evaluator's SAFT trading system

Post by RockyJ »

Don't know about that.
TrueTL is on version 1.06 now. They use a server that verifies your password and the trend lines are generated by their server.. Who knows, maybe they would help out.. but I have never seen a auto TL generator that always does what I would do.. and I have the latest TrueTL indicator. But for consistency it would probably work .
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Re: A little helper for Evaluator's SAFT trading system

Post by SteveHopwood »

tex wrote:Hey Steve,

I think unless we find an indicator which draws the same trendlines for all of us ( something like http://www.truetl.com/) , we are unable to learn from each other and furthermore we are unable to compare our trades with this system, because everyone of us will draw some other trend lines.
That is the easy bit. All a coder needs to do is code so that a trendline is only drawn when x Fractals are all higher than each other. Suppose x = 5, then the indi would look back through the swings, and draw, say, a downtrend line when if has found five fractals of increasing height. There might be lots of intervening fractals that are lower, but those would be ignored.

I could code that, and indi code usually baffles me. Whether it would draw the trendlines than another experienced trader would draw is a different matter.

Coincidentally, one of our members and I are working on an ea that draws the lines in exactly the same way as the De Mark indi, then trades the break of either. It is one he has paid me for, but wants to share it once we have finalised the details.

Bernard's EA has Slope built in, although it is not part of his trading strategy (Slope is omnipresent these days :lol: ). It would be simple to extend this as I described earlier and then to combine it with our little helper code.

I initially thought that SAFT cannot be fully automated because of the need for drawing a trendline on the OBV indi as well, and Fractals cannot be added to this. After thinking about it, I realise that this is actually possible by using the Time[x] points of the trendline.

Incidentally, any of you guys have the code to read which window is hosting the OBV indi? It will save me some time and screaming if I do not have to dig it out for myself.

So, automation of SAFT is possible. Whether it would be profitable is another matter. First thing to do is to make sure the little helper is bug-free.

:D
Read the effing manual, ok?

Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.

I still suffer from OCCD. Good thing, really.

Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.

To see The Weekly Roundup of stuff you guys might have missed Click here

My special thanks to Thomas (tomele) for all the incredible work he does here.
roger-write
Trader
Posts: 63
Joined: Sat May 19, 2012 10:34 am

Re: A little helper for Evaluator's SAFT trading system

Post by roger-write »

SteveHopwood wrote:
tex wrote:Hey Steve,

Incidentally, any of you guys have the code to read which window is hosting the OBV indi? It will save me some time and screaming if I do not have to dig it out for myself.

:D
You should be able to just do:

int window_index = WindowFind("OBV");
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Re: A little helper for Evaluator's SAFT trading system

Post by SteveHopwood »

roger-write wrote:
SteveHopwood wrote:
tex wrote:Hey Steve,

Incidentally, any of you guys have the code to read which window is hosting the OBV indi? It will save me some time and screaming if I do not have to dig it out for myself.

:D
You should be able to just do:

int window_index = WindowFind("OBV");
Fantastic. Worked first time. Thanks.

:D
Read the effing manual, ok?

Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.

I still suffer from OCCD. Good thing, really.

Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.

To see The Weekly Roundup of stuff you guys might have missed Click here

My special thanks to Thomas (tomele) for all the incredible work he does here.
Evaluator

Re: A little helper for Evaluator's SAFT trading system

Post by Evaluator »

This is totally Kool!!! :shock:

I hope I can contribute even with me beng a programming novice.(i.e. dummy) :oops: I certainly wish you all much success!!!

Evalautor. :geek:
User avatar
SteveHopwood
Owner
Posts: 9904
Joined: Tue Nov 15, 2011 8:43 am
Location: Misterton - an insignificant village in England. Very pleasant to live in.

Re: A little helper for Evaluator's SAFT trading system

Post by SteveHopwood »

V 1c is in post 1.

The ea was sending a tp of sl * 3, not 2. I have no idea why. To make sure the take profit is exactly correct, the ea first sends the trade without sl/tp, then first inserts the sl, calculates the tp and inserts it.

I have just manufactured a trade, and these functions appear to be working correctly.

:D
Read the effing manual, ok?

Afterprime is the official SHF broker. Read about them at https://www.stevehopwoodforex.com/phpBB3/viewtopic.php?p=175790#p175790.

I still suffer from OCCD. Good thing, really.

Anyone here feeling generous? My paypal account is always in the market for a tiny donation. pianodoodler@hotmail.com is the account.

To see The Weekly Roundup of stuff you guys might have missed Click here

My special thanks to Thomas (tomele) for all the incredible work he does here.
User avatar
lhDT
Trader
Posts: 198
Joined: Tue Nov 15, 2011 9:52 pm
Location: Brussels/Belgium

Re: A little helper for Evaluator's SAFT trading system

Post by lhDT »

Hi guys,

I was working a bit on the SAFT system with Eval lately.
Here is what I found.

In the past I was working on CCI+MA (applied to CCI data). I decided yesterday to give a shot to OBV+WMA (on OBV data).
Here is a screenshot.

We can see that the 21 period WMA on the OBV gives "almost" same result than drawing a trendline.
On the main window (price bars), I added a 50MA.

Idea is to go long when MA is trading below the price (so trending up) + an OBV/WMA cross up.
Opposite for short.

Same SL & TP. Risk:Reward 2:1 at least.
I was working today on a EA and the results are slightly positive on backtest (which is still a good sign for an Empty4 backtest).

Feel free to post your ideas and thoughts about it.

Cheers,
LhDT
You do not have the required permissions to view the files attached to this post.
harry45
Trader
Posts: 158
Joined: Fri Nov 18, 2011 11:36 am
Location: Russia,St.Petersburg

Re: A little helper for Evaluator's SAFT trading system

Post by harry45 »

lhDT wrote:Hi guys,

I was working a bit on the SAFT system with Eval lately.
Here is what I found.

In the past I was working on CCI+MA (applied to CCI data). I decided yesterday to give a shot to OBV+WMA (on OBV data).
Here is a screenshot.

We can see that the 21 period WMA on the OBV gives "almost" same result than drawing a trendline.
On the main window (price bars), I added a 50MA.

Idea is to go long when MA is trading below the price (so trending up) + an OBV/WMA cross up.
Opposite for short.

Same SL & TP. Risk:Reward 2:1 at least.
I was working today on a EA and the results are slightly positive on backtest (which is still a good sign for an Empty4 backtest).

Feel free to post your ideas and thoughts about it.

Cheers,
LhDT
Right you are.Have a great sense.
Regards
You do not have the required permissions to view the files attached to this post.
User avatar
lhDT
Trader
Posts: 198
Joined: Tue Nov 15, 2011 9:52 pm
Location: Brussels/Belgium

Re: A little helper for Evaluator's SAFT trading system

Post by lhDT »

Hi Harry,

What is the third indicator you have ? TL are drawn automatically ?

Cheers,
LhDT
harry45
Trader
Posts: 158
Joined: Fri Nov 18, 2011 11:36 am
Location: Russia,St.Petersburg

Re: A little helper for Evaluator's SAFT trading system

Post by harry45 »

lhDT wrote:Hi Harry,

What is the third indicator you have ? TL are drawn automatically ?

Cheers,
LhDT
our Russian coder "diver" has made this great indi, hope it helps who likes diver. and conver.
IMO you are in right road.
Regards
P.S. Another indi by "diver" after Andrews Pitchfork see pic.
You do not have the required permissions to view the files attached to this post.
Last edited by harry45 on Thu Aug 16, 2012 9:44 pm, edited 2 times in total.
Post Reply

Return to “Automated trading systems”