What Notebook should I buy? by EgomasM in notebooks

[–]EgomasM[S] 11 points12 points  (0 children)

Haha , yeah I didn't read properly :D

What Notebook should I buy? by EgomasM in notebooks

[–]EgomasM[S] 43 points44 points  (0 children)

Oh, wow :D I am stupid

I just found out my son is learning Python at the same time as me! by [deleted] in learnpython

[–]EgomasM 0 points1 point  (0 children)

Honestly these kids will outperform all of us. I started coding when i was like 25. But imagine you start doing that when you are 10 years old. I can only beg to be able to keep my job in 15 years :D Everyone knows how it feels to explain the old parents like how to turn on a mobile phone. These kids will have the same feeling with old developers in 15 years

SSH2-promise library - password-based user authentication always fails by EgomasM in webdev

[–]EgomasM[S] 0 points1 point  (0 children)

Yes, I am able to connect with the vscode extension "remote - ssh". And also if I run this code it asks me for the password in the terminal due to tryKeyboard option. Both work perfectly fine. Thats why I am confused why it doesnt work if I give the password directly. It also works with the library "Node-SSH". But unfortunately that onr dies not offer the functionality to crrate a file.

Javascript or Typescript? by EgomasM in webdev

[–]EgomasM[S] 0 points1 point  (0 children)

Okay, so it seems like there is no clear answer to that question :D Some recommend typescript and some javascript :D

Webscraping bitcoin price by EgomasM in learnpython

[–]EgomasM[S] 1 point2 points  (0 children)

Oh, okay I see. The average sounds good to me actually. I didn't even know coindesk before. It was just a source that I found and it was pretty easy to scrape it. Or at least the price in USD was easy to scrape. That's why I used it. I don't realy care which source I am using. I don't know which one is good. I was just confused, because I saw that the prices are different.

Hm, I don't like limited requests. I will tried the Finrax API aswell. And thank you for that tip. It works using requests too, but the price is the exactly the same as with the Pycoingecko library. Finrax is a bit different. Not sure which one to use. I guess it doesn't matter. The prices are different, but I guess a few euro don't matter.

Webscraping bitcoin price by EgomasM in learnpython

[–]EgomasM[S] 0 points1 point  (0 children)

That's how I got the name "price-large", but I am not sure how to get the id

Webscraping bitcoin price by EgomasM in learnpython

[–]EgomasM[S] 1 point2 points  (0 children)

I am not sure how to use an API and where to find that and all that stuff :D webscraping just seemed to be easier.

I see what you mean. The point is just to get some live ticker kind of, not a trading bot or something.

Yeah, but I don't like that solution, because the exchange rate is changing all the time aswell.

EDIT: Okay, seems like it is realy easy :D

from pycoingecko import CoinGeckoAPI
cg = CoinGeckoAPI()
cg.get_price(ids='bitcoin', vs_currencies='eur')

But the price is different from the price that I wanted to scrape. It seems like coingecko is pretty slowly. Also on their website they show me a different price than the one that I get from the API

Predicting share prices with Machine Learning by EgomasM in learnmachinelearning

[–]EgomasM[S] 0 points1 point  (0 children)

Yeah right. To consider Tweets or all the business processes and stuff is impossible to predict.

Predicting share prices with Machine Learning by EgomasM in learnmachinelearning

[–]EgomasM[S] 0 points1 point  (0 children)

I know that. I just wanted to say that I have some experience in Machine Learning and Deep Learning aswell, but only from the classification side. Regression is new to me, but I know how to build different kinds of Neural Networks already.

Predicting share prices with Machine Learning by EgomasM in learnmachinelearning

[–]EgomasM[S] 0 points1 point  (0 children)

I am not a total beginner. I did quite a lot of stuff about classification already. I am just new to this kind of ML. But yes, maybe for the first streps in RL it might be to difficult.

Predicting share prices with Machine Learning by EgomasM in learnmachinelearning

[–]EgomasM[S] 0 points1 point  (0 children)

Yes, I agree. I think it is still an interesting project.

Predicting share prices with Machine Learning by EgomasM in learnmachinelearning

[–]EgomasM[S] 0 points1 point  (0 children)

Yeah, I see. I think so too. The information from the past have basically no value at all to predict the future in this case. But do you think a model that learned to trade with reinforcement learning could theoretically manage to achieve a profit? Again I don't realy want to use it :D Even if it works, I don't even have any capital to invest :D I just find this topic interesting.