HERE IT IS - The Finest Trading System Ever Offered on this Forum

Wishing you feel better soon. We just got a 6" rain here in AZ. Six inches between each drops. Made everyone crazy…can’t imagine how people are who live where there is actually moisture and bugs.

Do get well.

Dollie


By tymen1 at 2009-05-19

wow. So simple yet so effective!!!

Awesome =), I’ll go and try out the method and reply on whether it works or not.

Which method? We are all still waiting,…Hope you are well these days Tymen…or is it that “horrible” Perth weather that has got you down…?:stuck_out_tongue:

ps: (I miss Perth)

OK, just having a little gliche with the code.

A [U]master programmer [/U]is looking at it as I type here. :slight_smile: :slight_smile:

Remember, this is a top system from the days of old.

We are for the first time putting it to a computer program.
As you well know, one dot or bracket or colon out of place and the program does not load, let alone work.

Since I am not a programmer, and I am again recovering from sickness, I have had to rush to bring in a programmer. (he is very good, I must say!!)

But all is well.
We have found the error!! :slight_smile:
It should be ready in about 12 hours.

[B]Sorry for the delay[/B]. :o

I second the test …

as soon as Tymen1 is releasing it :smiley:

Don’t forget Patience is a virtue
after all he is giving it for free.

Oskar

lol.

I was being sarcastic. Cos I thought Tymen’s “code” was that picture of the big smiley.

Hehe. My bad.

BTW, Tymen, I was reading your thread about the candlesticks to about page 30 plus when I gave up. But it was so informative and everything =) . Thanks for sharing all your knowledge.

[quote=tymen1;107413]
A [U]master programmer [/U]is looking at it as I type here. :slight_smile: :slight_smile:

Remember, this is a top system from the days of old.

Oh Tymen - really!!!
I think you have strung this out too long and even some of the naive watchers from earlier have rumbled you

One would think that proper scientific/mathematician/teaching procedure would have laboratory tested something before springing a “finest trading system ever” announcement in a forum.

Just my poor observation. d.

I think all this is wonderful!

It’s like a real drama, filled with sniggering, anticipation, irony and what not.

Tymen, you’ve done a great job creating this in something so dull as a forum thread!

Can’t wait to see what the expert programmer will come up with! :smiley:

I needed a good laugh today, lol.

But you are watching quite keenly with the rest of them aren’t you Tony?!! :stuck_out_tongue: :smiley:

You will be rewarded!! :smiley: :smiley:

Hee Hee - I just like your style!

Glad Tymen is still monitoring his posts after all, with 80+, you never know, he may take the whoooooole thing with him and he will have a last chuckle on his face. :slight_smile: ( :stuck_out_tongue: )

[B]OK, as promised, the code is now here!! [/B] :smiley:

We have been busy trying to solve the equations…

�Z(n) = X + jY = rej(nt + j)
�Z(n)Z(n-1) = rej(wn+ j)
re-j(w(n-1) + j) = r2ejw

It took a while, but we have come up with a solution.
And the result is the code in the following posts.

[B]The code comes in 3 parts.[/B]

Wait for it!! :smiley: :smiley: :smiley:

As you can see, there are 3 equations.

The solution to each allows us to set 3 separate computer codes, which, together make up the whole trading strategy.

I will now present the code.

3 posts - 3 parts.

The code must be downloaded into your indicator section.

A window will appear requiring you to fill in certain data - which is easy.

I will explain that in detail after the code. :smiley:

lolololololololol

I am having a lot of trouble with Image Shack.

That site is starting to get quite useless.

So I have switched to Photobucket - much better, and much more up to date too!.

I have stored the code, however, in Microsoft Word.
So that will not be a problem.

So here, at long last, is the code.

[B]The computer code - 1st part…[/B]

Note - it is written in CTL language for GFT Dealbook.

MT4 users will need to translate it into their own specific language.

For Dealbook…

copy/paste the code into Chart Studio
Then open a new file in My Documents - name it as you please.
Click Build/instal module.
save the module in the new file in My Documents.

Do this with all 3 modules.

The indicator is called Stategy D - it will appear in your indicator window.

[B]Here is the code part 1[/B]

indicator Strategy_D;
input length = 10;
draw line(“CGOscillator”);
vars Num(series), Denom(series), Med(series), i(number);
begin
Med := (high + low) / 2;
Num := Med;
for i := 1 to (length-1) do begin
Num:= Num + ((i+1) * Displace(Med, -i));
end;
Denom:= Med;
for i := 1 to (length-1) do begin
Denom:= Denom + Displace(Med, -i);
end;

{CG:= (Div(Num,Denom)) * -1;}
line := (Num / Denom) * -1;
line := displace(line, length-1);
end.
draw sky(“Chaos Blue BL”), cloud(“Chaos Red BL”), temp(“Chaos Green BL”);
begin
sky := displace(smma((high + low)/2, 13), ShJw);
cloud := displace(smma((high + low)/2, 8), ShTth);
temp := displace(smma((high + low)/2, 5), ShLp);
Calc := cosine*2(98-smma)>2 (high +low)