Search content
Sort by

Showing 14 of 14 results by laszend
Post
Topic
Board Micro Earnings
Re: StarCoins - NEW GAME - Crypto MMORPG | + NEW Monero + Zcash !
by
laszend
on 11/07/2018, 16:52:41 UTC
Username: pedroserves
Post
Topic
Board Off-topic
ARBITRAGE - Powerfull & OpenSource
by
laszend
on 13/04/2018, 11:05:42 UTC
Advanced Arbitrage Software
Open Source

Author :
László (me)
Contact :
laszend@gmail.com
 
Szerkeszt
Utca
Kolcsey u. 7
Ország:
Magyarország
Irányítószám:
3571
Helység
Alsózsolca

https://github.com/arbitragesoftware/Arbitrage

What is Arbitrage?

Arbitrage is to obtain risk-free profit by selling at the same time low price market and selling in high price market in case the same securities which are traded in different markets are different in price of money or precious metal. These products can be securities such as gold or precious metals or stocks. The aim here is to make a profit without risk. One of the most asked questions in our day is Arbitrage, that is, how to make a profit without risk? " Many large and globally recognized companies are looking for answers to this question by creating arbitrage pricing models. However, in today's capital markets and currency markets, it is more difficult than it is supposed. Because now almost all the markets are intertwined and information sharing has reached incredible speeds. In this respect, it has become increasingly difficult to manually capture the wrong prices in any market and to make profits by arbitraging in this market. As such, arbitrage operations have become possible with algorithmic software. These software make arbitrary arbitrage transactions by sending orders to both stocks at the same time when arbitrage opportunities for the same securities traded in different markets are created.

Screenshot:
https://github.com/arbitragesoftware/Arbitrage/blob/master/screenshot.png

Source Code :
https://github.com/arbitragesoftware/Arbitrage

Download:
https://github.com/arbitragesoftware/Arbitrage/raw/master/Arbitrage.rar

Donate Address :
3QLriVfbCZryxq7KkACjuWEipLQFWuZnme

Operation System:
Windows XP
Windows Vista
Windows7  
Windows8
Windows 10


If you donate me, i will make Linux and MaOS versions too.

Best Regards
Thank you.

Post
Topic
Board Service Announcements (Altcoins)
Re: █ █ █ █【BOT】 BTCTradeBot.Com - Automatic Bitcoin & Altcoins Trading Bot █ █ █ █
by
laszend
on 04/11/2017, 19:02:50 UTC
What is the new "loop" option in Bittrex bot parameters ?
Post
Topic
Board Gambling
Re: HeyYouGuys - DiceBot Script MasterThread - New Videos + Charts + New Scripts!
by
laszend
on 25/06/2017, 09:30:50 UTC
What script setting use with burstcoin Bitsler dice ?
Post
Topic
Board Mining (Altcoins)
Re: Gridseed setup and configuration help!
by
laszend
on 16/10/2015, 19:13:13 UTC
Very nice heatsink ! Handmade or buying ? I would to bought gridseed board. Where to get a heatsink ?
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
laszend
on 16/10/2015, 07:44:47 UTC
Sometimes the bot suddenly stop. It's just running and suddenly got a message the the program is stopped. I am using Dicebot 3.1.2. Beta on Windows 10.

I don't get a error code just a message it's stopped. Is there an other way to see what went wrong? Is there a kind of error log?

In 3.1.2 beta, it should provide a reason for stopping. Can you give me the exact message please (or a screenshot thereof). Also, where are you betting. Unfortunately there is no log (yet, it's in the works).

I am betting on Magical Dice. Will make a printscreen the next time it happens. Sometimes it's within 10 minutes and an other time after a few hours.

With the Windows 10 to be careful !! On my machines bound into the network, windows 10 "automatically" !!??  DELETED some exe files of the bfgminer, dicebots, utorrent, flashplayer etc. I hope so your Windows 10 is legal :-D !
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
laszend
on 21/09/2015, 10:50:50 UTC
I want to make a preset list from the streak table ? Is possible ? Convert to excel ? copy-paste method not aviable !!
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
laszend
on 20/09/2015, 13:14:16 UTC
OK ! Thank you  Wink
Post
Topic
Board Gambling discussion
Re: Seuntjie' Dice bot programmers mode discussion.
by
laszend
on 20/09/2015, 09:46:45 UTC
Legion of BOOM.....

   New version of the 39.6% script.  Several changes.  Same warnings apply, this can and will bust.  Your just hoping not to bust till you've made back your bankroll plus some profit.  

   This one is setup to bet based on your balance.  It's a martingale/reverse martingale.  The starting bet is set up to cover a 20 lose streak. (20 bets).  Randomly it will bet based on a 10 lose streak.  That's the BOOM part.  It's currently setup to try this about 5% of the time.  

       R = math.random(1,20)  

  This statement assigns R a random value between 1 and 20.        

       if(R == 17) then
           nextbet = balance / boomrisk
           print("BOOM")
        end

17 is my lucky number so it R equals 17 try the higher bet.  This is only done in the section of code where we calculate a new base bet.  

This does all of the same investments as the other bots.  

  It also randomly switches hi/lo 10% of the times on loses.  

I started out trying the Boom at 1% (random number 1-100).  But it didn't hit enough for my liking.  I changed it to 5%.  The first run ended with a 10 lose streak  on the BOOM cycle.  This was after about 60% win back.  So I lost about 40% of my initial bankroll (2 Clams) (ended with 1.2).  

   Next run is still going, Same setup, started with 2 clams.  Current profit is 2.1 clams.  Current balance is 2.05  So this run I'm now playing with the houses clams.  
I'll update once this run finishes.  EDIT: Run busted on a Boom cycle.  profit was 1.1 clams. 


Code:
chance = 39.6
martimulti = 1.85
streak = 20
risk = (martimulti ^ streak) * (streak/(streak *(martimulti - 1)))
print(risk)
boomstreak = 10
boomrisk = (martimulti ^ boomstreak) * (boomstreak/(boomstreak *(martimulti - 1)))


startbalance = balance
nextbet = balance / risk
basebet = balance / risk

savefactor = 1.25
target = .01
targetbalance = balance + target
bethigh = true
low = 0
high = 0
losecount = 0
stopnow = false
totallose = 0
wincount = 0
nextwinbet = basebet * martimulti


function dobet()


if (win) then
   wincount += 1
   totallose = 0
   newbalance = balance
   nextbet = balance / risk
    base = true
      if (stopnow) then stop() end
   if (wincount > 2 ) then
     nextbet = previousbet + (lastBet.profit /2)
     base = false
   else
       R = math.random(1,20)  
       if(R == 17) then
           nextbet = balance / boomrisk
           print("BOOM")
        end
     end
       losecount = 0
      if (balance > targetbalance) then
         invest((balance - targetbalance)+target)
         targetbalance = targetbalance + target
         newbalance = targetbalance
      end
      if (newbalance > startbalance * savefactor) then
          invest(balance-startbalance)
          targetbalance = startbalance + target
          startbalance = startbalance * savefactor
      end
  else
      if (losecount == 0 and !base) then
          nextbet = balance / risk
          base = true
      else
          nextbet = previousbet * martimulti
          base = false
       end
      losecount += 1
      print(losecount)
 if (math.random() < .1) then bethigh = !bethigh end  
   wincount = 0
 end
  
end
Dear Chilly2k ! The script work perfect !! But i have a little problem, Safedice XMR bet and boom balance is wrong the bot take without a balance to 0.000001 x balance. Could you modify the boom script,  some that the bot work with a basis stake (base) instead of the balance ?



    


Good method, will test it out with a few dollars.
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
laszend
on 20/09/2015, 09:16:14 UTC
Hello Seuntjies !
 I test and see there is something wrong with bet amounts on Safedice XMR. Preset bet amount 0.00000001   versus bot bet amount : 0.00000000001 !! ??
 Please check it ! Thanks

Still problem with 304 beta too  Huh
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
laszend
on 19/09/2015, 22:00:40 UTC
Thank you  Grin
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
laszend
on 19/09/2015, 20:09:32 UTC
Betterbets login password: API token What is this ? How can i get it ?
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
laszend
on 18/09/2015, 10:26:34 UTC
Hello Seuntjies !
 I test and see there is something wrong with bet amounts on Safedice XMR. Preset bet amount 0.00000001   versus bot bet amount : 0.00000000001 !! ??
 Please check it ! Thanks
Post
Topic
Board Gambling
Re: Seuntjies DiceBot -Multi-Site, multi-strategy betting bot for dice. With Charts!
by
laszend
on 12/09/2015, 19:59:21 UTC
Hello  Where find, or what is the good-best-better setting parameter, in the D'lambert betting system ?
Increment bet by ? Stretch by ? :  on win and lose parameters ?