[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y ] [Search | Free Show | Home]

machine learning for predicting currency exchange rates

This is a blue board which means that it's for everybody (Safe For Work content only). If you see any adult content, please report it.

Thread replies: 46
Thread images: 5

File: Euro_coins_and_banknotes.jpg (1MB, 2272x1704px) Image search: [Google]
Euro_coins_and_banknotes.jpg
1MB, 2272x1704px
www.btcpredictions.com

I run this website that uses artificial intelligence to try to predict future bitcoin prices (and now, after a major upgrade, eur/usd and aud/usd exchange rates). I will soon be adding more currency pairs as well. The predictions are displayed on simple charts. Starting tomorrow, you'll also be able to see charts showing its performance by showing predicted vs actual prices.

Any feedback or suggestions would be much appreciated! That being said, I recognize that this is 4chan and finding constructive feedback might be a longshot lol...
>>
File: 1452116825548.jpg (8KB, 253x250px) Image search: [Google]
1452116825548.jpg
8KB, 253x250px
charts arent working
>>
>>1037761
make the charts work
>>
File: hummeri-muikuilee.jpg (68KB, 630x668px) Image search: [Google]
hummeri-muikuilee.jpg
68KB, 630x668px
other than that, nice launch.
>>
>>1037761
I don't really want to give you my email
>>
>>1037764
You have to sign up

>>1037816
That's okay if you don't want to. I don't send you any emails other than a verification email and another email if you ever need to reset your password.
>>
>>1037761
been watching your site before. inspired from it to do some of my own projects.
However neural nets only gets so good at predicting, but there are way too many factors which the NN can't take into account (news, forum sentiment, core devs not reaching consensus, etc)
>>
>>1037842
It's true that it is very difficult to take into account everything. Arguably impossible. I guess the key is to incorporate all of the important factors into the inputs.

You can use sentiment/news data as input to a neural network, and I am planning on doing that. As long as you can quantify something, it can be used as an input. Sentiment can be quantified, and there are a bunch of ways that key words and other aspects of news data can be converted into numeric values that can be used as inputs. I am hoping on doing this in the future, and I think it will greatly improve accuracy. We will see how it goes!
>>
Buy ethereum
>>
>>1037761
You iz wizard?
>>
>>1037761
So what's the price gonna be tomorrow senpai? You gonna put your own money on it?
>>
How well has your algorithm performed in backtesting? How did you backtest it?
>>
I signed up and will test it today.
>>
>>1038158
Testing it on EUR/USD. It gets the sentiment of the market right, but it is a little bit off. I think it is not adjusting accordingly to a real time. Also I think the chart freezes after hour or so, thus it's not possible to refresh it and you must log off/on again to make it work, which is a little annoying.
>>
>>1038304

Yeah I actually haven't tested the eur/usd or aud/usd ones at all yet. I just created those yesterday. All of the algorithms are still being tweaked.

>>1038143
So I haven't done much testing at all yet, just testing on historic data. I use the past ~1 year's worth of price data to train the neural networks, but I allocate 20% of it randomly for testing. I test it on that 20% and the average error of each point in each prediction tends to be between 0.2 to 0.5% for the 24 hour charts. That sounds low but it doesn't necessarily mean it will perform in real life so we'll see.
>>
Tell us smth about your NN models. How many layers, how many neurons per layer, what activation functions are being used, what error measure are you using? Atm sounds pretty vanilla to me m8
>>
it's really smart of you to publish this and not to trade on it yourself.
>>
>>1038410

I don't trade at all actually, although I might in the future. I don't recommend trading based on these predictions because they have not been tested yet at all. When I am convinced that they are somewhat reliable, I may incorporate the data into a trading strategy and simulate trading. If that proves to be reliably successful, I will start trading.
>>
>>1037828
So why do you need us to register? Just make it available for everyone. I'd imagine that more page views would be beneficial.
>>
>>1038366
Most of them are 4 or 5 layers, but the architecture of each one is different. Activation functions are all sigmoid. I measure the error by allocating 20% of the training data as test data (randomly) and test how far off predictions are from actual prices (by percentage). Results tend to be between 0.3 and 0.5% ish. Still need to do a lot more testing.

Gonna start working on JSON recurrent nets soon, maybe with LSTM layers. Also gonna pull in more news data as inputs.
>>
>>1038430
*recurrent nets
>>
>>1038429

Sorry about that :/

There are a couple reasons I require registration. One is that it gives me more information about site usage. Another is that in the future, if I manage to get this to be reliably accurate and I can add more valuable features, I may need to start charging a small fee. I don't like to do that but I'm already spending a lot of money on hosting and API subscriptions to have this site up, and I spend quite a bit of time working on it too.
>>
>>1038430
I recommend using leave-one-out-crossvalidation. U need more time to estime the error but you get a new proxy for estimating the out of sample error. Ein ~ Eval ~ Eout
>>
>>1038488
Thanks for the suggestion! I will look into that. It sounds expensive but I have to do a bit more reading.
>>
This is pretty interesting OP, how can I learn more about machine learning and stuff like this? How hard is it to learn if I just know programming, logic, and basic stats? What do I need to know beforehand?
>>
>>1039091
Knowing programming, logic, and basic stats will definitely put you in the right kind of frame of mind. If you are interested and enjoy that type of thinking then you can definitely learn this stuff! It's also definitely not easy, but it's super interesting and rewarding! I find machine learning to be incredibly fascinating.

So I learned about this stuff in college, and then continued learning by reading research papers and articles online. One book that we used in college that was really helpful was called "Artificial Intelligence: A Modern Approach". I would highly recommend it - it goes over much more than just neural networks. It's a bit pricey I think (maybe ~$150) but you could probably pirate a pdf of it if you wanted.

Other than that, I would start by learning about feed forward neural networks. You could try implementing some simple ones on your own, there are probably tutorials for doing that out there. From there you can move on to recurrent neural nets and other more complicated structures.

I hope this helps. Good luck!
>>
>>1039482
Thanks for the tips!
>>
>>1039010
You are welcome good sir. Isnt that time consuming after you understood how it works.
Off-topic: how exactly are you planning to redirect web traffic to your site?
>>
>>1040002
What do you mean by redirect traffic?
>>
>>1040008
How do you intend to get clicks/potential customers?
>>
So you're telling me that you will be able to predict exchange rates for two of the major currency pairs? That seems pretty unbelievable desu, this would kind of defeat the whole forex market wouldn't it?
>>
>>1040037
Maybe not as acurate as it should be for basing a profitable strategy on it but yes, learning an unknown function, in this case the underlying function of the market, is the whole purpose of an ANN.
>>
>>1040034
Posting on forums haha... I managed to get a couple thousand members in a previous iteration of this project and this version is better. Maybe I'd get some ads too at some point, but probably not unless it started actually bringing in revenue
>>
>>1040037
I'm not claiming that I am able to predict the prices. I am trying to do that though. Obviously it won't have 100% accuracy but hopefully it will be accurate enough to be profitable. It definitely wouldn't break any markets.
>>
File: 20151223_105227.gif (871KB, 245x230px) Image search: [Google]
20151223_105227.gif
871KB, 245x230px
>>1040175
Have to admit umade me laugh and impressed me at the same time. So many members with forum posts.... damn. While i'm so dumb to try myself on SEO to gain some clicks for my business
>>
>>1040205
Haha yeah I was doing seo stuff early on when I first created the site. It was pretty easy to get it to the top of most google searches related to Bitcoin prediction or future prices. It's a pretty niche market. Also posting in forums (especially popular ones) will boost your Rank in google searches up by a lot. Basically you want a lot of links to your site on other sites, and especially on other sites that get a lot of visitors. I took a class in college where we learned about the google page rank algorithm, and it's actually not that complex. Understanding it helps a lot.

What is your business?
>>
>>1040230
Thanks a lot anon! Appreciating the forum advice

IT-Security, started a few months ago. Finishing all the lawyer stuff and then going live with the website. I guess searching for high traffic related forums is now one of the top priorities.
>>
>>1040272
No problem, good luck with your release! Sounds exciting!
>>
OP if you are using a sliding window for your network, which I assume you are, this will not work.
>>
>>1040739
I'm curious why you say that? There are dozens of research papers out there where people use sliding windows for stock price prediction or other very similar tasks and have a lot of success. I've already had a lot of success with this too.
>>
>>1040751
Are there? I'd love to read them...

You can do mean reversion analysis and more complicated shit like that with a neural network, but pure time series prediction they way you are trying does not work. I've explained this to you before when you posted on /sci/ (or was it /g/?, regardless i've seen your site before).
>>
>>1040751
Also your error calculation method is outright misleading, and useless when it comes to relevance to a trading strategy. Flipping a coin on 1 step ahead time series prediction will produce similar error rates to what you get.

>>The average error is the average amount off that each prediction is for the neural network that made this prediction. It calculates this by having it make predictions at a few tens of thousands of points throughout the historic price data and compares its predictions to what the actual prices were. The average % off for all of these predictions is the average error, so basically it is the average error of the neural network used to make the predictions seen on these charts.
>>
>>1040756
http://www.cs.berkeley.edu/~akar/IITK_website/EE671/report_stock.pdf

That's just the first hit on Google. There are dozens more, just search around on Google. It's pretty common. I don't know why you think it doesn't work. Everything in my experience points to the exact contrary.

>>1040791
I'm not sure what you mean by flipping a coin, since that is binary and predicting a price is not a binary task. If you meant that keeping a flat output would create a lower average error, then that is false. Well actually it depends on the data set, but it's definitely false with bitcoin. I've had neural networks that have this problem (they only predict flat prices) and the average error measure is higher for those nns than for the ones I have in production now.

That being said, I agree that it is misleading. I am working on coming up with more meaningful measures of accuracy, but the only true measure is testing against actual future prices, which is time consuming. This is why I no longer display the error measures over the charts, and instead provide charts showing actual performance over the past 24 hours.
>>
>>1040863
Take the average price deviation per time period. Flip a coin. Heads predict the price goes up by the average, tails it goes down. This will perform just as well as your network.
>>
>>1040890
It absolutely will not. In fact, predicting flat 100% of the time would do better than that. Basically what you are saying is that the average price deviation is less than my error values, which is just flat out false. That would mean that the average deviation for the price of bitcoin over 24 hours would have to be less than 0.5%. And for euro and aud it would have to be less than like 0.2-0.3%.

What are you basing this on?
>>
File: 1418449555160.png (1MB, 2138x1590px) Image search: [Google]
1418449555160.png
1MB, 2138x1590px
>Machine Learning
>...artificial intelligence
Thread posts: 46
Thread images: 5


[Boards: 3 / a / aco / adv / an / asp / b / bant / biz / c / can / cgl / ck / cm / co / cock / d / diy / e / fa / fap / fit / fitlit / g / gd / gif / h / hc / his / hm / hr / i / ic / int / jp / k / lgbt / lit / m / mlp / mlpol / mo / mtv / mu / n / news / o / out / outsoc / p / po / pol / qa / qst / r / r9k / s / s4s / sci / soc / sp / spa / t / tg / toy / trash / trv / tv / u / v / vg / vint / vip / vp / vr / w / wg / wsg / wsr / x / y] [Search | Top | Home]

I'm aware that Imgur.com will stop allowing adult images since 15th of May. I'm taking actions to backup as much data as possible.
Read more on this topic here - https://archived.moe/talk/thread/1694/


If you need a post removed click on it's [Report] button and follow the instruction.
DMCA Content Takedown via dmca.com
All images are hosted on imgur.com.
If you like this website please support us by donating with Bitcoins at 16mKtbZiwW52BLkibtCr8jUg2KVUMTxVQ5
All trademarks and copyrights on this page are owned by their respective parties.
Images uploaded are the responsibility of the Poster. Comments are owned by the Poster.
This is a 4chan archive - all of the content originated from that site.
This means that RandomArchive shows their content, archived.
If you need information for a Poster - contact them.