Team up on Binary Options Autotrading

Posted By: Smon

Team up on Binary Options Autotrading - 07/13/15 14:36

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
Posted By: Notch

Re: Team up on Binary Options Autotrading - 09/04/15 10:32

Why don't you make it available to all in the spirit of Zorro?
Posted By: Smon

Re: Team up on Binary Options Autotrading - 10/10/15 13:43

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);
}
Posted By: Thirstywolf

Re: Team up on Binary Options Autotrading - 10/10/15 15:30

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.
Posted By: Smon

Re: Team up on Binary Options Autotrading - 10/10/15 17:14

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.
© 2024 lite-C Forums