International
United Kingdom
no
yes
no
no
yes
no
yes
yes
yes
no
yesNew comments will be added within a few minutes...
Hey Dan,found some new information about BSP lay bet mimnium here, so I thought that I also should give something back.Concerning the size of back bets. During development for my automated betting software, I found some information which led to the following values. Can’t proof its correctness, though!public static decimal GetStakeMinimum(string currency){ switch (currency) { case ( EUR ): case ( GBP ): case ( ZAR ): case ( JPY ): case ( DZD ): case ( ARP ): case ( ATS ): case ( BSD ): case ( BBD ): case ( BEF ): case ( BMD ): case ( BRR ): case ( BGL ): case ( CLP ): return 2.0m; case ( USD ): return 4.0m; case ( AUD ): case ( CAS ): case ( SGD ): return 6.0m; case ( HKD ): return 25.0m; case ( DKK ): case ( NOK ): case ( SEK ): return 30.0m; default: return 2.0m; }}