Looking for a developer for a successful strategy

#1
Hi

I daytrade FX. I have been using 3 strategies, and I want to automate it. I use a vareity of tools from tradestation and metatrader. I am good at trading but poor at programming. I am looking for somone to create a partnership for automating my strategys.

My results are:
DECEMBER 2006 WIN 14 LOSS 2
JANUARY 2007 WIN 13 LOSS 6
FEBRUARY 2007 WIN 10 LOSS 4
MARCH 2007 WIN 14 LOSS 4
APRIL 2007 WIN 9 LOSS 4
MAY 2007 WIN 11 LOSS 3
June 07 WIN 7 LOSS 5
July 07 Win 7 Loss 1 (so far)

(I have not included the trades which i didnt enter)

Anyone interested ?
 
#2
Hi Simple

I was looking at Amibroker today actually, the AFL code looks interesting - almost readable - lol

Do you have msn ?

Pm your msn
 
#3
Simple

Sorry to hear that - maybe you can help me on the AFl

Im looking for a sample code that provides:

a) For the highest and lowest bars between 00:00(midnight) and 07:00 am

- Buy if EMA(20) is rising and current price is higher than a)
- Sellif EMA(20) is falling and current price is lower than a)

Question: Is there trailing profit in AFL ?

Do you have a sample script ?

thanks
 

oxusmorouz

Well-Known Member
#5
SimpleStuff

And EMA rising code in MS mov(c,20,e)>ref(mov(c,20,e),-1)
@ Sikandar,
A simpler and a more workable solution to make the same formula easier.

a:= Mov(C,20,E);
a > Ref(a,-1);

Reducing duplication of work and clutter of formula assist when you code bigger formulas.

Sincerely yours.
 

Similar threads