Gamestudio Links
Zorro Links
Newest Posts
Data from CSV not parsed correctly
by EternallyCurious. 04/18/24 10:45
StartWeek not working as it should
by Zheka. 04/18/24 10:11
folder management functions
by VoroneTZ. 04/17/24 06:52
lookback setting performance issue
by 7th_zorro. 04/16/24 03:08
zorro 64bit command line support
by 7th_zorro. 04/15/24 09:36
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:48
Zorro FIX plugin - Experimental
by flink. 04/14/24 07:46
AUM Magazine
Latest Screens
The Bible Game
A psychological thriller game
SHADOW (2014)
DEAD TASTE
Who's Online Now
1 registered members (SBGuy), 712 guests, and 3 spiders.
Key: Admin, Global Mod, Mod
Newest Members
EternallyCurious, howardR, 11honza11, ccorrea, sakolin
19047 Registered Users
Previous Thread
Next Thread
Print Thread
Rate Thread
adviseLong() with binaries? #468039
09/14/17 14:16
09/14/17 14:16
Joined: Aug 2016
Posts: 27
M
MaskOfZorro Offline OP
Newbie
MaskOfZorro  Offline OP
Newbie
M

Joined: Aug 2016
Posts: 27
If I train (Decision tree or Perceptron) with Spread = RollLong = RollShort = Commission = Slippage = 0 and then train with set(BINARY), LossPayout=0, WinPayout = 80, I get the same test results. In this case with the 0 spread and 0 commission version a "profitable" strategy with a 42% win rate, and with the binary version a shitshow because of the 42% win rate. I'm using some combination of distance from the mean, a stochastic oscillator, and the average true range, and I'd at expect it to at least be able to spit out a 54-55% win rate.

Does Zorro not take the binary setting into consideration? Is there a way to target highest win rates in training? or am I just not doing this right?

Re: adviseLong() with binaries? [Re: MaskOfZorro] #468043
09/14/17 16:16
09/14/17 16:16
Joined: Aug 2017
Posts: 40
J
johnnyp Offline
Newbie
johnnyp  Offline
Newbie
J

Joined: Aug 2017
Posts: 40
You can define a custom objective as follows.

Code:
var objective()
{
	return ((var)(NumWinLong+NumWinShort))/(NumLossLong+NumLossShort);
}



Source: http://www.financial-hacker.com/binary-options-scam-or-opportunity/

Re: adviseLong() with binaries? [Re: johnnyp] #468048
09/14/17 18:06
09/14/17 18:06
Joined: Aug 2016
Posts: 27
M
MaskOfZorro Offline OP
Newbie
MaskOfZorro  Offline OP
Newbie
M

Joined: Aug 2016
Posts: 27
Many thanks!


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