Author Topic: Draw Vs Correct Score  (Read 6892 times)

Tags:
  • All members
  • Posts: 31
Draw Vs Correct Score
« on: 25 Nov 2013, 02:05 »
Good evening,

I'm trying to make a trigger that makes a dutching bet between the draw and the 0-0 of the same soccer game.

Well it goes wrong when it has to make a bet (having more than one game starting at the same time), cause it puts the valeu from different soccer games. How can i make it doing just from one match?

Imagine having ten games starting at the same time, how can i make it doing the dutching with the correct values from the different games. 0-0 of tha game 1 and the draw value from the game 1, 0-0 of the game 2 and the draw value from the game 2.

Thank you for any help.

Best regards.

  • Élite
  • Posts: 3698
  • Gender: Male
*
Re: Draw Vs Correct Score
« Reply #1 on: 25 Nov 2013, 06:18 »
hi
i have added a new trigger to zero the variables at the start of every match.
this way every matche will start with 0, then the new value will be recorded.


mcbee
Please read the following  disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 31
Re: Draw Vs Correct Score
« Reply #2 on: 25 Nov 2013, 07:47 »
Mcbee thank you very much for your reply.

i already tested the trigger but it doesnt work properly. It makes the same mistakes. It doesn't make the dutching properly.

I thought that it could be possible to make some expression that consolidate the values of a certain market. For example:

value of 0-0: 17 @ market _parent_id
value of draw: 3.5 @ market_parent_id

And then make a dutching formula only with the values that have the same market_parent_id.

I send you this trigger cause i made some adjustments.

best regards.

  • Élite
  • Posts: 3698
  • Gender: Male
*
Re: Draw Vs Correct Score
« Reply #3 on: 25 Nov 2013, 08:24 »
hi
i have made more alterations to your trigger
you had no condition to stop multiple betting in your correct score trigger.
and your condition for the selections name containg 0-0 , made bets on every selection with 0 in it because you used contains, it should have been equals.
ALSO you had "0-0" in your condition, it should have been "0 - 0" ,ALWAYS use the spaces between letters/words and numbers , if there are any.


mcbee
Please read the following  disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 31
Re: Draw Vs Correct Score
« Reply #4 on: 25 Nov 2013, 12:59 »
Thank you for the alterations, i made some of them but i didnt save..

I tested the trigger on the games, Ajax Vs Barcelona and Arsenal Vs Marselha, and it does the following dutching:

Ajax Vs Barcelona cs @ 17 - stake of 0.4 €
Ajax Vs Barcelona mo @ 4.3 - stake of 1.6 €

(perfect dutching)

Arsenal Vs Marselha cs @ 17 - stake of 0.4 €
Arsenal Vs Marselha mo @ 6.8 - stake of 1.43 €

(wrong dutching)

I didnt made any alterations on the last trigger that you sent me.

Best regards.

  • Élite
  • Posts: 3698
  • Gender: Male
*
Re: Draw Vs Correct Score
« Reply #5 on: 25 Nov 2013, 13:35 »
hi
your calculation for the dutching was totaly wrong.
i have altered your mistake.

mcbee
Please read the following  disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 31
Re: Draw Vs Correct Score
« Reply #6 on: 25 Nov 2013, 13:52 »
Thank you for your help mcbee.. :)

I tested the trigger, and it does the following dutching:

Ajax Vs Barcelona cs @ 17 - stake of 1.52 €
Ajax Vs Barcelona mo @ 4.3 - stake of 0.33 €

(wrong dutching)

Arsenal Vs Marselha cs @ 22 - stake of 1.67 €
Arsenal Vs Marselha mo @ 7 - stake of 0.48 €

(wrong dutching)

With this stakes i see that the trigger is making bets on the wrong markets. For example, the stake of 1.52 € on the cs should have a bet of 0.48 € on the MO of the same game. The trigger it applying the bets to the worng markets.

Best regards.

  • Élite
  • Posts: 3698
  • Gender: Male
*
Re: Draw Vs Correct Score
« Reply #7 on: 25 Nov 2013, 14:33 »
hi
that was the oder that you had in your triggers, all i did was corect the fomulas in the triggers.
i have reversed the order


mcbee
Please read the following  disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 31
Re: Draw Vs Correct Score
« Reply #8 on: 25 Nov 2013, 14:52 »
Thank you for your update mcbee.

The results were:

Ajax Vs Barcelona cs @ 17 - stake of 0.4 €
Ajax Vs Barcelona mo @ 4.3 - stake of 1.6 €

(perfect dutching)

Arsenal Vs Marselha cs @ 22 - stake of 0.58 € ((7)/((7+17))*2)
Arsenal Vs Marselha mo @ 7 - stake of 1.42 € ((17)/((17+7))*2)

(wrong dutching)

Teh secound game is doing the calculations with the wrong game. I dont know how to solve it..

Best regards

  • Élite
  • Posts: 3698
  • Gender: Male
*
Re: Draw Vs Correct Score
« Reply #9 on: 25 Nov 2013, 15:05 »
hi
i am still working/testing the triggers.
i will post the new one when i have fully tested it.


mcbee
Please read the following  disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 31
Re: Draw Vs Correct Score
« Reply #10 on: 25 Nov 2013, 15:07 »
Thank you very much for your help mcbee..

Best regards

  • Élite
  • Posts: 3698
  • Gender: Male
*
Re: Draw Vs Correct Score
« Reply #11 on: 25 Nov 2013, 17:11 »
hi
i hope that i have got it correct.
in the constants you can set
bet amount
time to place the bet before the stat time in minutes
minimum draw price
maximum draw price

the triggers will place the dutch bet on the draw first then on the correct score, if this is not what you wanted then let me know what you need.

please use test mode until you are happy with your settings

mcbee

download the trigger below
Please read the following  disclaimer with regards to the information you may request and obtain on our forum. This specifically concerns trigger files and various instructions as to how to implement a strategy.

  • All members
  • Posts: 31
Re: Draw Vs Correct Score
« Reply #12 on: 02 Dec 2013, 22:31 »
Thank you very much mcbee..

Best regards.

 

Please note, BetFair is seems to be currently OFFLINE