Gamestudio Links
Zorro Links
Newest Posts
Help with plotting multiple ZigZag
by degenerate_762. 04/30/24 23:23
M1 Oversampling
by 11honza11. 04/30/24 08:16
Trading Journey
by howardR. 04/28/24 09:55
Zorro Trader GPT
by TipmyPip. 04/27/24 13:50
Data from CSV not parsed correctly
by jcl. 04/26/24 11:18
Why Zorro supports up to 72 cores?
by jcl. 04/26/24 11:09
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
3 registered members (7th_zorro, TipmyPip, RealSerious3D), 892 guests, and 4 spiders.
Key: Admin, Global Mod, Mod
Newest Members
firatv, wandaluciaia, Mega_Rod, EternallyCurious, howardR
19050 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
Team up on Binary Options Autotrading #453241
07/13/15 14:36
07/13/15 14:36
Joined: Dec 2014
Posts: 206
Germany
Smon Offline OP
Member
Smon  Offline OP
Member

Joined: Dec 2014
Posts: 206
Germany
I have created an interface script with winautomation that can adapt to any binary broker directly through the webinterface. At the moment it's bound to 60s bets, but I could easily evolve that if nessessary.

I'm excited about the new feature that brings Binary Options to Zorro, unfortunately I wasn't able to get my head around coding with C.

So if you got a profitable strategy, step up and contact me at skype: gofornmd

Re: Team up on Binary Options Autotrading [Re: Smon] #454325
09/04/15 10:32
09/04/15 10:32
Joined: Sep 2015
Posts: 3
N
Notch Offline
Guest
Notch  Offline
Guest
N

Joined: Sep 2015
Posts: 3
Why don't you make it available to all in the spirit of Zorro?

Re: Team up on Binary Options Autotrading [Re: Notch] #455119
10/10/15 13:43
10/10/15 13:43
Joined: Dec 2014
Posts: 206
Germany
Smon Offline OP
Member
Smon  Offline OP
Member

Joined: Dec 2014
Posts: 206
Germany
Yes, why not? I will really consider this. The only reason against is, that these Brokers are all scammers more or less (they work exactly like casinos), and even with a profitable strategy, you will hardly get away with your profit as you can see here: http://www.cogbay.com/stockpair-scam/ Stockpair is one of the biggest players in this industry and istn't mentioned among the scammers on forexpeacearmy.com (they are all mentioned there!) Anyway, if I'm able to rip 20.000 out of this industry, I'd have enough to spend 3000 for some fundamental trading course that I want to take and have some serious trading capital to switch back to the real markets.

I really started learning lite-C today (again...! *g*), and having completed my lession today, I decided to play around with the binary flag a little. I just took Workshop 5_3, the Binary Flag, WinPayout 70 (percent?), set BarPeriod to 1min and expiry to 5min, trained the strategy and got a jaw dropping 6434% annual performance, BUT: And this is a big one: Winning ratio is only 52% which is not enough for break even with 70% payout (59% needed!). So there must be something wrong. I guess train is automatically aiming for the highest winning percentage in binary mode, because this is the only thing that counts, right? Here is my (jcl's ;-)) code:




// Workshop 5: Counter trend trading, optimized ////////////////

function run()
{
set(PARAMETERS+BINARY); // generate and use optimized parameters
ExitTime = 6;
WinPayout = 70;
BarPeriod = 1; // 4 hour bars
LookBack = 500;
StartDate = 2014;
EndDate = 2015; // fixed simulation period
NumWFOCycles = 1^0; // activate WFO

if(ReTrain) {
UpdateDays = -1; // update price data from the server
SelectWFO = -1; // select the last cycle for re-optimization
}

// calculate the buy/sell signal
vars Price = series(price());
vars Filtered = series(BandPass(Price,optimize(30,20,40),0.5));
vars Signal = series(FisherN(Filtered,500));
var Threshold = optimize(1,0.5,1.5,0.1);

// buy and sell
// Stop = 100 * ATR(100);
// Trail = 100*ATR(100);

if(crossUnder(Signal,-Threshold))
enterLong();
else if(crossOver(Signal,Threshold))
enterShort();

PlotWidth = 600;
PlotHeight1 = 300;
set(TESTNOW);
}

Re: Team up on Binary Options Autotrading [Re: Smon] #455122
10/10/15 15:30
10/10/15 15:30
Joined: Dec 2013
Posts: 82
Sydney, NSW
T
Thirstywolf Offline
Junior Member
Thirstywolf  Offline
Junior Member
T

Joined: Dec 2013
Posts: 82
Sydney, NSW
Not trying to be critical, but it kind of sounds like you are planning to make enough money gambling to trade "real markets". I don't know too much about it, but if binary options is such a dodgy area, why waste any time at all?

Also, don't waste time and money on a trading course. I've never met a profitable trader who learnt how to do it at a seminar.

Re: Team up on Binary Options Autotrading [Re: Thirstywolf] #455126
10/10/15 17:14
10/10/15 17:14
Joined: Dec 2014
Posts: 206
Germany
Smon Offline OP
Member
Smon  Offline OP
Member

Joined: Dec 2014
Posts: 206
Germany
1rst, it's partially a personal thing between me, some buddys and some brokers...

2nd, I do believe, that there is a strategy that will really exploit this instrument like no one has ever done before and that Zorro is the right toolkit to find this strategy.

By the way, the 6434% gain I mentioned earlier is due to a false implementation in Zorro. If you risk 1$, you loose 1$ if you bet on the wrong direction and win 0.70$ if you where right for example. Zorro assumes that you win 1.70 when you are right... I already reported this behaviour to jcl.


I know that many coaches out there offer seminars because they make more money via coaching than they are doing via trading. However the coach I'm interested in helped me realizing some nice profits just with his free information. It's Jarrat Davis (check him out on forexpeacearmy.com, he has a superb reputation there and this site is really trustworthy). He is different in that he is trading almost on fundamental indicators only rather than technical indicators. A little market technics, support and resistance, that's pretty much it from the technical side.


Moderated by  Petra 

Powered by UBB.threads™ PHP Forum Software 7.7.1