AI Crypto BotsteemCreated with Sketch.

in utopian-io •  7 years ago  (edited)

brainfuck.jpg

This is going to be a open source project using BrainFuck coding to create a bot that will trade on some of the most popular crypto exchanges like Bittrex. It is in the very early stages and I hope to get support from the community for creating this exciting project.

Coding with BrainFuck looks like a mess but it has shown to be the best programming language for AI (Artificial Intelligence) scripts. Recently a simple AI was written using BrainFuck to write out "Hi!"

As an example the code **+[>+<+++]+>------------.+<+++++++++++++++++++++++++++++++.>+++++++++++++++++++++++++ +++++++++.+++.+++++++.-----------------.--<.>--.+++++++++++..---<.>-.+++++++++++++.- -------.------------.+++++++++++++.+++++.**

Will write out: "I love all humans"

The Brainfuck programming language consists of eight commands, each of which is represented as a single character.

>   Increment the pointer.
<   Decrement the pointer.
+   Increment the byte at the pointer.
-   Decrement the byte at the pointer.
.   Output the byte at the pointer.
,   Input a byte and store it in the byte at the pointer.
[   Jump forward past the matching ] if the byte at the pointer is zero.
]   Jump backward to the matching [ unless the byte at the pointer is zero.

The semantics of the Brainfuck commands can also be succinctly expressed in terms of C, as follows (assuming that p has been previously defined as a char*):

>   becomes     ++p;
<   becomes     --p;
+   becomes     ++*p;
-   becomes     --*p;
.   becomes     putchar(*p);
,   becomes     *p = getchar();
[   becomes     while (*p) {
]   becomes     }

The first step it to get the full history of Bitcoin price data and run the AI bot on the data to find patterns that not noticed by humans that can predict price action on a chart and give signals via API to Bittrex to handle those trades.

Authors get paid when people like you upvote their post.
If you enjoyed what you read here, create your account today and start earning FREE STEEM!
Sort Order:  

Hey @cheapproperty I am @utopian-io. I have just super-voted you at 20% Power!

Suggestions https://utopian.io/rules

-You are writing less than average for this category. Next time write a bit more.
-In this post you are using less images than average for this category. Put some more next time!

Achievements

-Seems like you contribute quite often. AMAZING!
Up-vote this comment to grow my power and help Open Source contributions like this one.

Thanks for information I new to steem so hope to improve in the future. As am coder not graphics guy so why I need to learn to create images.

Hello @cheapproperty I have just reviewed and accepted your contribution. In order to be voted please edit it and put more information about your project, how other people should contribute, what you are looking for etc. After that reply to this comment and I will make sure to reward you if the contribution looks good enough ;)

Thanks elear I have updated with further information on the project. Thanks for the tips.