Rank: Member
Groups: Registered, Registered Users, Subscribers Joined: 1/27/2009(UTC) Posts: 11
|
My first crack at the formulas. There are some errors that I wasn't able to fix and hence couldn't test it on the Expert Advisor. Any help appreciated:
My attempt to convert the Bianchi Approach Systems tester to an Explorer or Expert Advisor
Buy:
When(Mov( Mid(C, 15, E), > ,Mov(Mid(C, 15, E)) AND
When(Ref(Mov(Mid(C, 15,E),-1), <= ,(Ref(Mov((Mid(C, 15, E),-1) AND
When(Mov(Abs((Mo(10))), E), > ,Ref(Mov(Abs((Mo(10))),E,-1))
Sell:
When(Mov( Mid(C, 15), E) , < ,Mov(Mid(C, 15), E)) AND
When(Ref(Mov(Mid(C, 15), E),-1), >= ,(Ref(Mov((Mid(C, 15)), E),-1))) AND
When(Mov(Abs((Mo(10))), E), > ,Ref(Mov(Abs((Mo(10))),E),-1))
---
The original code is:
Bianchi Approach
Enter Long:
When(Mov( Mid(C,opt1),opt1,E), > ,Mov(Mid(C,opt1),opt2,E)) AND
When(Ref(Mov(Mid(C,opt1),opt1,E),-1), <= ,(Ref(Mov((Mid(C,opt1)),opt2,E),-1))) AND
When(Mov(Abs((Mo(opt3))),opt4,E), > ,Ref(Mov(Abs((Mo(opt3))),opt4,E),-1))
Enter Short:
When(Mov( Mid(C,opt1),opt1,E) , < ,Mov(Mid(C,opt1),opt2,E)) AND
When(Ref(Mov(Mid(C,opt1),opt1,E),-1), >= ,(Ref(Mov((Mid(C,opt1)),opt2,E),-1))) AND
When(Mov(Abs((Mo(opt3))),opt4,E), > ,Ref(Mov(Abs((Mo(opt3))),opt4,E),-1))
OPT1: 5 to 20 step 1
OPT2: 10 to 16 step 1
OPT3: 5 to 15 step 1
OPT4: 20 to 29 step 1
and can be found here:
http://trader.online.pl/...st-Bianchi_Approach.html
Thanks.
|