{"id":9700,"date":"2017-11-14T17:30:38","date_gmt":"2017-11-14T17:30:38","guid":{"rendered":"https:\/\/forumarchives.tmsites.net\/index.php\/2017\/11\/14\/my-come-betting-strategy-in-pseudo-code\/"},"modified":"2017-11-14T17:30:38","modified_gmt":"2017-11-14T17:30:38","slug":"my-come-betting-strategy-in-pseudo-code","status":"publish","type":"post","link":"https:\/\/forumarchives.tmsites.net\/index.php\/2017\/11\/14\/my-come-betting-strategy-in-pseudo-code\/","title":{"rendered":"My come betting strategy in pseudo code"},"content":{"rendered":"<p><!-- Original Post Content --><br \/>\nI am working on my come bet risk strategy. Since I use to code software for years I put the process in pseudo code form. I am still working out the code for when all the bets are covered and when its time to increment the flat bet by a unit of +5 .  This builds on the TBS concepts (At least from my understanding  \ud83d\ude09 ) .  <br \/>\n\tI am doing physical simulations at home, I haven&#8217;t converted this into smart craps yet. <br \/>\n\tIf you can understand it, any input would be helpful<\/p>\n<p>\tResults:<\/p>\n<p>\tThanks. <br \/>\n\tMr. PiP<\/p>\n<p>\t1)\tSet Hand Counter to 0 <br \/>\n\t2)\tIf Hand Counter = 10 then<br \/>\n\ta.\t End Session<br \/>\n\tb.\tColor Out <br \/>\n\t3)\tHit Counter  = 0<br \/>\n\t4)\tHand Begins <br \/>\n\t        a) Add 1 to Hand Counter (Use chips to keep track of  your Hand Counter) <br \/>\n\t5)\tMy spread is 3 working bets  (Spread Count = 3) <br \/>\n\tFor $500 buy in it would be $10 PL\/Come and $25 odds <br \/>\n\tor<br \/>\n\tFor $1000 buy in it would be $10 PL\/Come and $50 odds <br \/>\n\tNote I use the top chip rail to line up 3 green-chips (My spread Count)<br \/>\n\t6)\tRoll <br \/>\n\t7)\tIf 2,3,12 shows up &#8211; Curse in your head and replace your base bet on the PL or Come bet (if it was lost) <br \/>\n\t8)\ta) If on the come-out a 7\/11 shows bump (press) the odds on the top rail by $5<br \/>\n\t        b) If on the come-out and an 11 shows press the PL odds + $5 and if max is reached I will +$5 on the next come out odds bet (one of the green chips odds bet)<br \/>\n\t        c) If on the come-out roll you hit a number that was a previous come-bet then press the PL odds + $5 and if max is reached I will +$5 on the next come out odds bet (one of the green chips odds bet)<br \/>\n\t        d) If on the come out Cycle a 7 shows Go to 3<br \/>\n\t        e) if on the point cycle a 7 shows Go to 2<br \/>\n\t        f) if you hit an empty box number 3 times      <br \/>\n\t                Put out a new come bet (Add + 1 to Spread Count)<br \/>\n\t9)\tIf No Hit Go to 6<br \/>\n\t10)\tWhen I have a hit I increment my hit counter differently than just increment by +1        <br \/>\n\t     a.\t  If the hit is (6\/8)   ADD +1    To  the hit counter<br \/>\n\t     b.\t  If the hit is (5\/9)   ADD +1.5 To  the hit counter. I use a Quarter to represent a .5 <br \/>\n\t                   (If the counter contains the quarter, remove the quarter (put it to the side) and <br \/>\n\t                     add 2  to the Hit Counter)<br \/>\n\t     c.\tif the hit is (4\/10) ADD + 2   To the Hit Counter<br \/>\n\t     d.\tIf the Odds for the bet is not at max press +$5 or +$6 for even odds on the (5\/9)<br \/>\n\t11)\tDecision to increment spread count to +1 (Putting out another Come Bet)<br \/>\n\tDepends on my risk strategy that I decide on <\/p>\n<p>\tBase_Line:   \/\/ This is what is taught in class<br \/>\n\t    When Hit Count  &gt;= 3 and  Spread Count = 3 then <br \/>\n\t\t\t\tPut out a new come bet (Add + 1 to Spread Count)<br \/>\n\t   When Hit Count  &gt;= 4 and  Spread Count = 4 then<br \/>\n\t                 \t\tPut out a new come bet (Add + 1 to Spread Count)<br \/>\n\t   When Hit Count  &gt;= 5 and  Spread Count =54 then <br \/>\n\t              \t\t\tPut out a new come bet (Add + 1 to Spread Count)<br \/>\n\tConservative: <br \/>\n\t                     When Hit Counter  &gt;= (Spread Count + 2) then<br \/>\n\t                                     Put out a new come bet (Add + 1 to Spread Count)<br \/>\n\t              Intermediate: <br \/>\n\t    When Hit Count  &gt;= 1 and  Spread Count = 3 then <br \/>\n\t\t\t\tPut out a new come bet (Add + 1 to Spread Count)<br \/>\n\t   When Hit Count  &gt;= 3 and  Spread Count = 4 then<br \/>\n\t                 \t\tPut out a new come bet (Add + 1 to Spread Count)<br \/>\n\t   When Hit Count  &gt;= 6 and  Spread Count = 5 then <br \/>\n\t               \t\t\tPut out a new come bet (Add + 1 to Spread Count)<br \/>\n\t               Aggressive:  \t<br \/>\n\tWhen Hit Count &gt;= 1 and Spread Count = 3 then<br \/>\n\t                               \t\t\tPut out a new come bet (Add + 1 to Spread Count)<br \/>\n\tWhen Hit Count &gt;= 2 and Spread Count = 4 then<br \/>\n\tPut out a new come bet (Add + 1 to Spread Count)<br \/>\n\t                                When Hit Count &gt;=3 and Spread Count = 5 then <br \/>\n\tPut out a new come bet  (Add + 1 to Spread Count)<br \/>\n\t                 *********** <br \/>\n\t                               **** Code to decide to increment flat bet ***<br \/>\n\t                 ***********<br \/>\n\t12)  Go to   6<\/p>\n<p>\tChange Log:<br \/>\n\t11\/15\/2017 Will update the code as I find logic bugs<br \/>\n\t11\/16\/2017 added base_line and fixed conservative:<\/p>\n<fieldset class=\"gc-fieldset\">\n<legend> Attached files <\/legend>\n<p> <a href=\"https:\/\/crapsclub.goldentouchcraps.com\/wp-content\/uploads\/wpforo\/default_attachments\/32609=166-results.png\"><img decoding=\"async\" src=\"https:\/\/crapsclub.goldentouchcraps.com\/wp-content\/uploads\/wpforo\/default_attachments\/32609=166-results.png\" class=\"gc-images\" title=\"results.png\" style=\"max-width:300px\" \/><\/a> <\/fieldset>\n<hr>\n<h3>Replies:<\/h3>\n<p>No replies were posted for this topic.<\/p>\n","protected":false},"excerpt":{"rendered":"<p>I am working on my come bet risk strategy. Since I use to code software for years I put the process in pseudo code form. I am still working out the code for when all the bets are covered and&#8230;<\/p>\n","protected":false},"author":197,"featured_media":0,"comment_status":"closed","ping_status":"closed","sticky":false,"template":"","format":"standard","meta":{"footnotes":""},"categories":[9],"tags":[],"class_list":["post-9700","post","type-post","status-publish","format-standard","hentry","category-craps"],"_links":{"self":[{"href":"https:\/\/forumarchives.tmsites.net\/index.php\/wp-json\/wp\/v2\/posts\/9700","targetHints":{"allow":["GET"]}}],"collection":[{"href":"https:\/\/forumarchives.tmsites.net\/index.php\/wp-json\/wp\/v2\/posts"}],"about":[{"href":"https:\/\/forumarchives.tmsites.net\/index.php\/wp-json\/wp\/v2\/types\/post"}],"author":[{"embeddable":true,"href":"https:\/\/forumarchives.tmsites.net\/index.php\/wp-json\/wp\/v2\/users\/197"}],"replies":[{"embeddable":true,"href":"https:\/\/forumarchives.tmsites.net\/index.php\/wp-json\/wp\/v2\/comments?post=9700"}],"version-history":[{"count":0,"href":"https:\/\/forumarchives.tmsites.net\/index.php\/wp-json\/wp\/v2\/posts\/9700\/revisions"}],"wp:attachment":[{"href":"https:\/\/forumarchives.tmsites.net\/index.php\/wp-json\/wp\/v2\/media?parent=9700"}],"wp:term":[{"taxonomy":"category","embeddable":true,"href":"https:\/\/forumarchives.tmsites.net\/index.php\/wp-json\/wp\/v2\/categories?post=9700"},{"taxonomy":"post_tag","embeddable":true,"href":"https:\/\/forumarchives.tmsites.net\/index.php\/wp-json\/wp\/v2\/tags?post=9700"}],"curies":[{"name":"wp","href":"https:\/\/api.w.org\/{rel}","templated":true}]}}