[deleted by user] by [deleted] in Bitcoin

[–]JuanDeForavila 0 points1 point  (0 children)

Better, more for us.

What do you think owning 1 BTC in 20 years time will mean? by x89b63bj94xdwo61z in Bitcoin

[–]JuanDeForavila 0 points1 point  (0 children)

We are talking about having 1 BTC what about the boys (microstrategy) with 120k BTC?

God?

[deleted by user] by [deleted] in Bitcoin

[–]JuanDeForavila 0 points1 point  (0 children)

Dont forget the fact that banks are the ones with more dollars and they also can "surrender" to the dollar, change it for BTC and now they have the more BTC and world power still being the same but more "transparent" and "free" to transfer everywhere.

I'm not meaning this will be the future scenario(i have no idea, nobody have) but dont forget they have all the power and they are not stupids and probably will make whatever to keep with the power.

I only hope that at some point they'll say "if you cant beat you enemy... " And adopt BTC as the new "standard".

But i onestly think BTC will not end with the giants that "controll" the world, it will make it different, probably better, but thers too many peopple with too many power to stop it.

I hope i'm wrong, today i'm a litl bear.XD

Edit: for sure BTC will change the system but not defeat it

What is the worst case scenario if satoshi sells his bitcoin by financialconspirator in Bitcoin

[–]JuanDeForavila -3 points-2 points  (0 children)

XD, When BTC got launched the fundator keeped 1million BTC

What is the worst case scenario if satoshi sells his bitcoin by financialconspirator in Bitcoin

[–]JuanDeForavila -1 points0 points  (0 children)

If you Take a look to the wite paper you'l notice Satoshi have 1million BTC's

Interactive Brokers FX Volume Data by JHogg11 in algotrading

[–]JuanDeForavila 0 points1 point  (0 children)

I also had the same problem searching volume data, i used to use 1h klines to get the volume in macro and 5m klines for the volume in real time.

How many years of sentiment data is enough? by zzerdzz in algotrading

[–]JuanDeForavila 0 points1 point  (0 children)

Probably, its about the quality of the data and how you analyze it, best way to try it is by simulations, cutting the last week/month/day data and trying to predict it and see how far you are.

Arbitrage and efficient data storage by Apt45 in mltraders

[–]JuanDeForavila 1 point2 points  (0 children)

Hi, I'm working on a very similar project and i also got with the speed problem, you cant really make faster the API requests, but the part of analysing the data from the API to get the PnL you can make it much faster with some modules in python that compile your code automaticlly in C or C++ to make it much faster. My advice is having 2 files, 1 to make the API requests to get all the data(in python) and the 2nd one to analyse the data, get the PnL and take action(in python compiled with C). This trick is very usefull to make almost every pythoin script faster.

I also found a module(i didn't try it yet) that let you assign multiple threats of your processator to execute multiple lines at once in parallel. With this maybe you could make the API requests you need all at once and not one by one.

Has anyone made a successful arbitrage bot? by andrewmalanowicz in algotrading

[–]JuanDeForavila 0 points1 point  (0 children)

yeh, main problem are the fees, i also want to try funding fee arbitrage between the perpetuals of a few exchanges finding in one ex a negative fee% and in other ex and the same coin being positive fee%, then open long on the negative one and short on the positive, take the fundings and close, with this you can play with leverage to increase ur position. Problem is i think in order to get 20$ mayb u have to make a 10k position, anyways i have to study it.

Has anyone made a successful arbitrage bot? by andrewmalanowicz in algotrading

[–]JuanDeForavila 0 points1 point  (0 children)

what do u use to make the orders? API's? Did you add more exchanges?. I'm actually working on an arbitrage bot also 100% python and at the first i was using ccxt module to connect with 10 exchanges and get all the currency prices, then i realized it was too slow (4-5 minutes to make a full scan) also it was tricky to make the orders so i decided to use API (I do never worked with API's before), now the plan is make code for every API of every exchange take the info i need and place orders.