Gamestudio Links
Zorro Links
Newest Posts
Trading Journey
by howardR. 04/28/24 09:55
basik85278
by basik85278. 04/28/24 08:56
Zorro Trader GPT
by TipmyPip. 04/27/24 13:50
Help with plotting multiple ZigZag
by M_D. 04/26/24 20:03
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
M1 Oversampling
by jcl. 04/26/24 11:12
Why Zorro supports up to 72 cores?
by jcl. 04/26/24 11:09
Eigenwerbung
by jcl. 04/26/24 11:08
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
2 registered members (SBGuy, Quad), 768 guests, and 5 spiders.
Key: Admin, Global Mod, Mod
Newest Members
wandaluciaia, Mega_Rod, EternallyCurious, howardR, 11honza11
19049 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Page 4 of 5 1 2 3 4 5
Re: Luxor system - Jaekle and Tomasini [Re: SFF] #422764
05/16/13 11:15
05/16/13 11:15
Joined: Apr 2013
Posts: 107
UK
G
Geek Offline
Member
Geek  Offline
Member
G

Joined: Apr 2013
Posts: 107
UK
Hi SFF,

I would say it's imperative to having a successful strategy..

The last thing you want is for a trade to become negative from the volatility of the forex markets so narrowing this down will go some way to helping your result. There are many mm methods are we know from the manual.

I guess the possibilities are endless, but having lost money from trading in the past due to emotions I find that having moving into algorithmic trading is maybe the answer to actually making money rather than loosing it..

That's why I have been observing the markets for the past 12 months without actually trading and looking into BOTS because I knew if i traded again my emotions would most likely end to losses in the end.

Now we have Zorro so the average man now take it upon himself to work on a strategy that will profit from the markets and there are no emotions involved.

Kind regards.

Re: Luxor system - Jaekle and Tomasini [Re: SFF] #423430
05/29/13 16:27
05/29/13 16:27
Joined: Nov 2012
Posts: 209
S
SFF Offline
Member
SFF  Offline
Member
S

Joined: Nov 2012
Posts: 209
Hi,

>>How to do that is explained in the Zorro tutorial.

I am looking for a tut for Spectrum.
Where can I find it?

Are spectral analysis effective for a lower TF like 1 min?

Last edited by SFF; 05/29/13 16:28.
Re: Luxor system - Jaekle and Tomasini [Re: SFF] #423459
05/30/13 10:17
05/30/13 10:17
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
There is no tutorial, only the function description under "Filters" and the example script spectrum.c.

With low time frames the spectrum becomes flat and loses its peaks. Spectral analysis works best with time frames in the hour or day range.

Re: Luxor system - Jaekle and Tomasini [Re: jcl] #423471
05/30/13 13:06
05/30/13 13:06
Joined: Nov 2012
Posts: 209
S
SFF Offline
Member
SFF  Offline
Member
S

Joined: Nov 2012
Posts: 209
You said "How to do that is explained in the Zorro tutorial." in this page.
http://zorro-trader.com/manual/en/strategy.htm

Last edited by SFF; 05/30/13 13:07.
Re: Luxor system - Jaekle and Tomasini [Re: SFF] #423481
05/30/13 15:00
05/30/13 15:00
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
That refers to workshop 5 that uses the dominant cycle for trading. The dominant cycle is the main peak of the spectrum.

Re: Luxor system - Jaekle and Tomasini [Re: jcl] #425872
07/12/13 07:21
07/12/13 07:21
Joined: Nov 2012
Posts: 209
S
SFF Offline
Member
SFF  Offline
Member
S

Joined: Nov 2012
Posts: 209
Hi,

I have been able to see some manual traders making over 10,000% in short priod but
not automated traders?

Why this happens? I am sure I can make such % with robots too.

Re: Luxor system - Jaekle and Tomasini [Re: SFF] #425877
07/12/13 08:05
07/12/13 08:05
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
You need no robot for this. For making over 10,000%, just go to Las Vegas and bet twice on Roulette. For this you need not as much luck as that manual trader.

Re: Luxor system - Jaekle and Tomasini [Re: jcl] #426395
07/22/13 18:42
07/22/13 18:42
Joined: Jun 2013
Posts: 41
Ohio, USA
P
Pork Offline
Newbie
Pork  Offline
Newbie
P

Joined: Jun 2013
Posts: 41
Ohio, USA
I'm working my way thru the Jackal and Tomansini book and I understand that the strategy is not profitable.
After they present the strategy as you have written above, the next step in the book is to "optimize" the "profitabe" strategy by adding a timefilter.
in the book's example they study a 4 hour trading time window shifting the starting time 30 minutes thoughout the day.
I was going to try var starttime = optimize() but some of the values can't be zero. When you use var endtime = optimize() the clock isn't linear so that won't work.
I found the hour() time variable and can make that work for a specific time period, but I'm having trouble trying to shift the starting times as they do. in the book. The only idea I have is an array with each start time and end time defined and then go thru the array 1 time period at a time. Any other ideas?

Thanks

P

Re: Luxor system - Jaekle and Tomasini [Re: Pork] #426429
07/23/13 06:35
07/23/13 06:35
Joined: Jul 2000
Posts: 27,986
Frankfurt
jcl Offline

Chief Engineer
jcl  Offline

Chief Engineer

Joined: Jul 2000
Posts: 27,986
Frankfurt
Multiple time filtering with an array would likely lead to an overfitted and unusable strategy.

Optimizing a start time and a time window is better, but I would use time filters with extreme caution - they can let any losing system appear profitable in the backtest. Anyway, for optimizing something that can be 0 or negative, just subtract a constant value like this:

int start_hour = optimize(1,1,24,1)-1;

Re: Luxor system - Jaekle and Tomasini [Re: jcl] #439635
04/06/14 10:49
04/06/14 10:49
Joined: Feb 2014
Posts: 181
R
RTG Offline
Member
RTG  Offline
Member
R

Joined: Feb 2014
Posts: 181
Following on from the book, how does one then optimize the paramaters 'Fast' and 'Slow'?

My attempts fail big time. After setting the Paramaters flag, I attempted to insert the optimize function for the Fast moving average like so.

vars Price = series(priceClose());
vars Fast = ptimize((1,1,20,1)series(SMA(Price,3));
vars Slow = series(SMA(Price,30));

The error message is as follows.

Luxor compiling.............
Error in 'line 23: syntax error
< vars Fast = optimize((1,1,20,1)series(SMA(Price,3));
>.

Page 4 of 5 1 2 3 4 5

Moderated by  Petra 

Gamestudio download | chip programmers | Zorro platform | shop | Data Protection Policy

oP group Germany GmbH | Birkenstr. 25-27 | 63549 Ronneburg / Germany | info (at) opgroup.de

Powered by UBB.threads™ PHP Forum Software 7.7.1