Football Betting Odds

フリーミアム
よって betodds | 更新済み vor 22 Tagen | Sports
人気

9.7 / 10

レイテンシー

49ms

サービスレベル

100%

Health Check

N/A

すべてのディスカッションに戻る

odds explain

Rapid account: Cbr 1000 Rrvsgsx
cbr1000rrvsgsx
vor einem Jahr

Hello,can you explain what is 1-hcap-1–1,1-hcap-0–1,…

Rapid account: Kingemkurdam
kingemkurdam Commented vor 6 Monaten

They are handicap odds.

hcap - ( Handicap Team ) - ( Handicap value )

hcap-1-–1 = Home Team Win , Handicap Value is -1
hcap-2-+1 = Away Team Win, Handicap Value is +1

hcap-0-+1 = Draw , Handicap Value is +1

I am sharing some php code to help you to understand calculation of the bet.

     // self::$bet can be like this : 1-hcap-1-+1
     // self::$result=['fthome'=>3,'ftaway'=>3]
     // function result should be true because we will add handicap value to home team goals.
     // and than score will be 4-3 
     
     function calculate_hcap(){
     preg_match('@1-hcap-(1|0|2)-((-|\+)\d)@', self::$bet, $s);
											if (count($s) != 4) {
													return false;
											}
											$handicap = $s[1];
											$handicapValue = $s[2];

											if ($handicap == 1) {
													self::$result['fthome'] = self::$result['fthome'] + $handicapValue;
													if (self::$result['fthome'] > self::$result['ftaway']) {
															return true;
													}
											}

											if ($handicap == 0) {
													self::$result['fthome'] = self::$result['fthome'] + $handicapValue;

													if (self::$result['fthome'] == self::$result['ftaway']) {
															return true;
													}
											}

											if ($handicap == 2) {
													self::$result['ftaway'] = self::$result['ftaway'] + $handicapValue;
													if (self::$result['fthome'] < self::$result['ftaway']) {
															return true;
													}
											}
					}

ディスカッションに参加しましょう-以下にコメントを追加してください:

ログイン/サインアップして新しいコメントを投稿