This is my own and real profit graph.

A profitable dice script.

By Robert R Davis | My_crypto_Journey | 4 Oct 2023


Today I am going to share a LUA script for bitvest.io.

I scripted it my self and is being used from the last two days continuously. 

This this the profit graph for recent 6000 bets.

Profit graph.

And the script is. 

 

basebet = 1
chance = 75
enablezz = true
enablesrc = true
nextbet = basebet


function dobet()
if balance >10000 then
stop()
end

if profit > 0 then
resetstats()
nextbet = basebet


end


if currentstreak < 0 and profit < 0.0000000001 then

nextbet = basebet
end


if currentstreak > 0 and profit < 0.0000000001 then

nextbet = -1*profit* 3.5


end
if currentstreak > 1 and profit < 0.0000000001 then

resetstats()
nextbet = basebet

end

if nextbet < basebet then
nextbet = basebet
end

-- Stop loss at 10% of the total balance.
if balance <= (balance + profit) * 0.9 then
stop()
end
end

I opted base bet 1 for 1000 tokens. 

Means base bet = balance /10000

 

It is my own scripted and it is not any financial advice. I shared the information only. 

 

Members should take your own responsibility to use it properly.

I  will continue to share such more strategies.

 

Your feed back matters us. 

 

 

 

How do you rate this article?

8



My_crypto_Journey
My_crypto_Journey

In this blog, I will share My crypto Journey

Publish0x

Send a $0.01 microtip in crypto to the author, and earn yourself as you read!

20% to author / 80% to me.
We pay the tips from our rewards pool.