Author Topic: TRIGGER PROJECT - ALL WELCOME  (Read 6643 times)

Tags:
  • All members
  • Posts: 87
  • "Good luck in your Gaming"
TRIGGER PROJECT - ALL WELCOME
« on: 11 Sep 2014, 03:59 »
Hi id like to introduce a staking plan that ive been working out on paper trade, playing live casino games. Seems to work quite well.

I could realy do with converting this into a trigger set, would you be able to help please? Also i thought this would be a good group project we could all work on, and post back results and tweeks. Please help if youd like, it would be greatly appreciated

::: HERES THE STAKING PROJECT :::


Bank targets to reach are +50% ...
Once achieve increase stake by 5% of new bank total
All bets are level betting back stakes, unless loss

>Example ~ Stakes increase as bank does:
Bank100+50%=150 target reached, 150/5%=£5 stake back bets
Bank150+50%=225 target reached, 225/5%=£7.5 stake back bets
Bank225+50%=337 target reached, 337/5%=£16.85 stake back bets
Bank337+50%=505 target reached, 505/5%=£25.25 stake back bets
Bank505+50%=757 target reached, 757/5%=£37.85 stake back bets

###

Refinement could be ~ "Incease on win, or continue level stake on loss"
... If W increase stake by +10% of present bank
... If L just repeat previous 5% bet calculation
Stop loss betting set to 100 original start up bank

###

Refinement could be ~ "Recoup loss as % of previous loss before the win"

If W, keep level stake 5% betting
If L ... increase
So next bet is level stake 5%+(20% ect) of previous loss
Reset if previous loss before the win target is reached

>Example increase by 20% of previous loss before the win
Bank is 350/5%=£17.5 stakes
... If W keep betting £17.5
... If L (Bank now is 332.5) so increase
next bet would be (17.5+20%=3.5) 17.5+3.5 = 21 stake
... If W Reset now because over 353.5 (previous bank)
... If L repeat with current previous loss before the win
Reset to level betting if previous loss before the win reached (ie 350)

... im going to work on it tonight and see what i can come up with, please join in :o)

  • All members
  • Posts: 87
  • "Good luck in your Gaming"
Re: TRIGGER PROJECT - ALL WELCOME
« Reply #1 on: 11 Sep 2014, 06:50 »
3.30hrs later... still no joy on the first part

  • All members
  • Posts: 87
  • "Good luck in your Gaming"
Re: TRIGGER PROJECT - ALL WELCOME
« Reply #2 on: 11 Sep 2014, 16:35 »
Currently testing

add to default back amount ... test_balance*0.05

this seems to add 5% of current bank to back bet

or

add to default back amount ... previous P/L*1.15

this seems to add last loss + 15% more

  • All members
  • Posts: 87
  • "Good luck in your Gaming"
Re: TRIGGER PROJECT - ALL WELCOME
« Reply #3 on: 11 Sep 2014, 23:21 »
Found this, thanks Oxa


> 1. liability 10% of your bank

10% is 0.1 of a number. The size of available funds is returned by a variable test_funds if you are betting in Test Mode.
Or total_funds if you are betting in real money mode. Therefore 10% of the bank would be either:

test_funds*0.1
or
total_funds*0.1

To make it universal, you can write:

IF(test_mode=1, test_funds, total_funds)*0.1

The liability is calculated as amount*(price-1), therefore amount of your stake can be expressed as liability/(price - 1). The formula for liability is above. Thus the amount of the bet is:

IF(test_mode=1, test_funds, total_funds)*0.1/(lay_price - 1)

 

Please note, BetFair is seems to be currently OFFLINE