This is quite fun, where do I cash out my six figure winnings?
i know a secret place. DMs open
Show HN: RandomCoin – A cryptocurrency that changes its price every second
21–30 of 33 posts
Re: Show HN: RandomCoin – A cryptocurrency that changes its price every second
#22allow users to save their holdings to a "wallet". then ability to sell/transfer coins and we have ourselves a working crypto note. how about a total supply so limit number of coins in circulation and a coin burn mechanism to reduce supply slowly, maybe with each transaction, transfer
Re: Show HN: RandomCoin – A cryptocurrency that changes its price every second
#23allow users to save their holdings to a "wallet". then ability to sell/transfer coins and we have ourselves a working crypto note. how about a total supply so limit number of coins in circulation and a coin burn mechanism to reduce supply slowly, maybe with each transaction, transfer
omg yes. adding this to my list of ideas: https://eugenekudashev.com/randomcoin/ideas.txt
Re: Show HN: RandomCoin – A cryptocurrency that changes its price every second
#24Re: Show HN: RandomCoin – A cryptocurrency that changes its price every second
#25Add shorting on margin, borrowing against other users that currently hold Rand and being force liquidated if the other users sell Make this a disaster lol
Re: Show HN: RandomCoin – A cryptocurrency that changes its price every second
#26Related story: I was almost kicked out of a fintech interview in the late 1980's, when I mentioned that there was room to question Black-Sholes. I was thinking of an article I had read about "variance noise" in a scientific publication. VIX is now a how many billion dollar industry? (Not that that defeats Black-Sholes.)
Re: Show HN: RandomCoin – A cryptocurrency that changes its price every second
#27Something that I didn't expect is that is not that easy as "buy low" and "sell high". I had to cap the buying price for the bot to make money at all, else the "bought at" will get so high, that you won't have a chance to buy much.
let bougthAt = 0;
let fn = { click: () => {} };
let buy = document.querySelector("#buy");
let sell = document.querySelector("#sell");
(function work() {
let founds = +document.querySelector("#funds-fiat").innerText;
let coins = +document.querySelector("#funds-coin").innerText;
let price = +document.querySelector("#price").innerText;
if (founds > price && price bougthAt && coins > 0) {
fn = sell;
console.log("sellingAt", price);
}
fn.click();
requestAnimationFrame(work);
})();Re: Show HN: RandomCoin – A cryptocurrency that changes its price every second
#28Wrote a bot for it, very constructive experience. Something that I didn't expect is that is not that easy as "buy low" and "sell high". I had to cap the buying price for the bot to make money at all, else the "bought at" will get so high, that you won't have a chance to buy much. let bougthAt = 0; let fn = { click: () => {} }; let buy = document.querySelector("#buy"); let sell = document.querySelector("#sell"); (func…
Re: Show HN: RandomCoin – A cryptocurrency that changes its price every second
#29Wrote a bot for it, very constructive experience. Something that I didn't expect is that is not that easy as "buy low" and "sell high". I had to cap the buying price for the bot to make money at all, else the "bought at" will get so high, that you won't have a chance to buy much. let bougthAt = 0; let fn = { click: () => {} }; let buy = document.querySelector("#buy"); let sell = document.querySelector("#sell"); (func…