Jump to content
FORUM · BOTBEETLE

Admin

Administrators
  • Content Count

    488
  • Joined

  • Last visited

  • Days Won

    39

Everything posted by Admin

  1. After copy just clicks on the button:
  2. Your buffer must be as Don't show your token anyone.
  3. Copy to buffer: And press button: Result:
  4. All previous versions have the ability to log in through: a browser using a Tokin. I will not be able to change the old version.
  5. Admin

    Can not log in

    Please, read here
  6. Attention! betfair.com has changed the login protocol. Now at the entrance to the program, you will see such an error In the next update, I will try to fix the authorization protocol. Until I make corrections, for authorization using the input through the browser!
  7. Admin

    5.32 bugs

    Hi, Are you using only the "API Streaming" mode? And in this mode, you do not have data? I can not repeat your error on my computer. (Error missing data) Is there such a problem in the mode API NG? I will check how the bets are displayed again. You have been using the program since June 2016 and you have bought the program version 5.20 - 5.21 You can use any old version. Download them here.
  8. Planned to improve: Opening some markets in Scripts for soccer; Watching window; Trading chart window. ( transferred to 5.34 ) Planned to fix: Error in green system; Error in stream mode; Error authorization.
  9. Perhaps. I once again redid the calculation system. I simplified the code so that it uses fewer system resources. I will check the calculations again. Thank.
  10. Admin

    Watch List

    Hi, I will make this window in the next update.
  11. Hi, yes. This can be done. But now you can not access to the market "First Half Goals 0.5" in scripts I will add this feature in the next update.
  12. Also added two parameters allowing you to specify the exact entry score For example, 0 -15 (when the outsider leads). The coefficient on the favorite rises, but he still has great chances to win
  13. If the opponent has 5 points and the favorite loses the serve, this leads to a big loss. Therefore, I entered the parameter: "Rival Game, less"
  14. Botbeetle.Script.5.32.zip
  15. The algorithm in Visio 2013 Tennis.vsdx
  16. 3.10.2 Check and Cancel green bet By the order id (helper.GreenId) get an order var order = Api.GetOrder(runner, helper.GreenId); If the order exists and its status is "EXECUTABLE" if (order?.Status == OrderStatus.EXECUTABLE) if order side is Lay: We get the best price Lay var back = Api.GetBestBack(runner); If the current Back is greater than the order price if (back > order.Price) We cancel order and set order id (helper.GreenId) to Empty; helper.GreenId = string.Empty; if order side is Back: We get the best price Lay var lay = Api.GetBestLay(runner); If the current Lay is less than the order price if (lay < order.Price) We cancel order and set order id (helper.GreenId) to Empty; helper.GreenId = string.Empty;
  17. 3.10.1 Creat green bet if green order ID is Empty: We get the best price Back var back = Api.GetBestBack(runner); Increases price by one point var price = Api.GetPrice(back, 1); We get the SIZE of the hedging and SIDE Side side; var size = Api.GetGreenSize(runner, price, out side); If the size more than 0.01 if (size >= 0.01M) create a unique green order ID helper.CurrentId = Api.CreateGreenOrderId(); place a green bet Api.PlaceLimitOrder(runner, side, price, size, helper.GreenId);
  18. 3.9.1 Update bet To update a bet: By the order id (helper.CurrentId) get an order If the order exists and its status is "EXECUTABLE" if (order?.Status == OrderStatus.EXECUTABLE) We get the best price Lay var lay = Api.GetBestLay(runner); If the order price is greater than the current LAY if (order.Price > lay) Reduce the price by one point var price = Api.GetPrice(lay, -1); Update bet Api.UpdatePrice(runner, order, price);
  19. 3.9.1 Place bet To make a bet: We get the best price Lay var lay = Api.GetBestLay(runner); Using the function var price = Api.Get Price (lay, -1); reduce the price by one point If the price is in the specified range if (PriceLow < lay && lay < PriceHight) create a unique order ID helper.CurrentId = Api.CreateBetOrderId(); place a bet Api.PlaceLimitOrder(runner, Side.BACK, price, OrderSize, helper.CurrentId);
  20. 3.9 Place, update bets How do we bet: - if the bet ID (helper.CurrentId) is empty, then we make a bet, no, we get an order and change it.
  21. 3.8 Execution bet if favorite is on the tennis serve - we make a bet, if the outsider is on the serve - we make a hedging market.
×
×
  • Create New...