Skip to main content

Posts

Showing posts with the label Large Programs

Predicting Stock Prices using Machine Learning (XGBoost)

  Today, I'll show you how to create a machine learning program to predict stock prices. Machine learning is used in a variety of fields, and we can utilize its ability to learn and predict from data to predict useful variables, with minimal error. Therefore in theory, we can apply the same on stocks to predict the next closing price, so that we can make a killing gain. However, stock markets are highly unstable. Their price movement often depends on decisions taken by the company, favor and reaction of investors, social impact, human emotions, and price movements of some other related stocks. These types of data cannot be made available to a program. The prediction can be close only if the market remains relatively stable. You don't actually need to learn machine learning using python to understand how this program works, if not minimal. I'll describe each machine learning process. And don't forget to download the source code of this program, link provided at the end. ...

English Dictionary With Python And Tkinter!

English Dictionary on Python Have you ever tried to read from the small Oxford Dictionaries? Those small yet bulky books have thousands of words cramped on a page the length of your finger! And on top of that, not to forget the hassle of flipping across the pages, searching for your word, God knows where is hiding on which page! Nowadays though, hardly does anyone ever use the classic dictionaries. With the access of technology on our fingertips, one tap on Google, and you would be on with your way.  But how about making a program of your own which can do the same for you? Sounds interesting? Such a program can enable you to run it and keep it opened, while you are reading a book, so that you can search the definition of a new word you encountered. What if you are writing a book, perhaps a report? You know what you are supposed to write, but you choose to get a word for it, so that you sound professional. So you just search for a short definition and the program find the word with ...

Stock Market Recorder: Stock Market Data collection using Python

  Stock Market Data Collecting Program You must have heard of stocks here and there, sometimes its on the television, some day a stock crashes, or a stock surges, it has become a star of the show when it comes to finance in recent times. Huge companies involving small investors like you and me who are willing to invest our money in their company for a tiny, tiny, tiny share in return for hopeful profits is very common nowadays. If you are one of those people who have a keen interest in stocks, then you must have certainly used one of the apps on your phone which tells you the price of the stock on that day, the company's market capital, trading value, trading quantity and what not. Apart from the financial point of view, its fun when you invest a fraction of your pocket money on these and see them up by 0.01 the next day. It makes you feel like you are destined to be the next Warren Buffet. Some people actually make a living out of it. They watch the stocks wherever it goes. But th...

Hang Man Game using Python with Tkinter

  Hang Man At some point of your childhood, you must have played this silly game. For those who are unfamiliar, this game involves guessing a random word letter-by-letter. For every wrong guess the player makes, the picture proceeds to make the set to hang the man. For example, on the first wrong guess, the poles appear, on the second, the rope appears, or somewhat to this effect. Upon making enough mistakes, the full picture is complete and it is assumed the Man is HANGED. I present to you the Hangman Game on Python. I have used Tkinter for the User Interface (I mean, come on, who likes the command prompt? At least not me...). You get to add your desired words in the python list   words in the code and you can play this game to your heart's wish, knowing you have done something new. Some of you may be having projects,  So just look at the steps below and skip the code to the end, where you will get the download link to the entire code! The First Step Before you...