[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]

TRADING BOTS

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: 86
Thread images: 6

File: images.jpg (6KB, 201x251px) Image search: [Google]
images.jpg
6KB, 201x251px
TRADING BOTS

Who here uses trading bots,
how much do you pay?

are there any free alternatives ?
>>
>>2483344
I wrote my own and I'm not going to sell or share it.
Why would anyone give away a working money machine?
>>
>>2483344
>implying that people would be willing to sell/give out literal money machines
>>
Can someone explain how they work? Is it a neural network witch calculates small changes in price during the day or just some basic "buy low--sell a little higher" shit which looks at the volume change?
>>
>>2483581
> which
Fucking phone swipe function.
>>
is this even allowed?
>>
>>2483581
Google meta trader expert advisor, figure out away to translate it to crypto (python). Good luck
>>
File: datass.jpg (45KB, 444x464px) Image search: [Google]
datass.jpg
45KB, 444x464px
sheev conquered the galactic republic with robots.
>>
>>2483403
Why? What do you have to lose?
>>
>>2485287
Found the retard.
>>
>>2485287
Are...are you actually this retarded?
>>
>>2485287
what do you have to gain is also a valid question
>>
>>2483618
of course it is. the exchanges make 0.15 to 0.25% of each trade, so they as many trades as possible.
>>
>>2483618
No it's not allowed. Anyone who admits to using bots here better be behind at least 7 proxies because the crypto police are going to come after them.
>>
>>2485306
You will know exactly what everyone else will be doing, especially if you tweak the bot slightly o that it's results are a bit different from your original copy.
>>
>>2485697
watch out! The cryptocops are coooomiiiing!!!
>>
>>2483344
gunbot
leonardo
>>
>>2485287
.....money?
>>
>>2483403
>Why would anyone give away a working money machine?

exactly this

>>2485287
>Why? What do you have to lose?

Well money, obviously!

seriously how stupid are people that they buy into this stuff... do you also believe in tipster services in sports betting?
>>
>>2485729
that makes little sense, assuming you had a working bot it is a retarded idea

assuming you deliberately made a bot that was of no use and wanted to market it to chumps then that, in itself, might earn you money from fees... but you're unlikely to sell it to enough people for it to make any tradable difference to the markets

the other poster seemed to be posting from the perspective of having a bot that works - the best thing to do with that is to use it to trade with...
>>
>>2485287
if everyone does exactly what you do, then you lose. Having to know how to program a decent trading bot is a reasonable bar of entry.
>>
>>2485729
at that point your bot will stop working, and people will stop using it.
>>
>>2483403

My feelings exactly. Yes, I use a trading bot that I wrote myself. No, I'm not handing out free copies, selling it, or explaining it. As soon as the neets learn that the rest of us aren't going to carry them through life, the better off they will be in the long run.
>>
Working on a python bot that can theoretically make about $2 every 2 minutes. I've been running it without the trades executing. Seems to actually be possible. Now I just have to handle every possible error imaginable. If one call to the API doesn't go through, everything goes wrong. Thinking of buying a gigabit VPS in the same city as the exchange for low latency access to the API. Don't bother asking for the source code, or the strategy.. because you're fucking dreaming if you think I want any competition.
>>
>>2483344
>counting on anyone sharing their working bots
HAHAHAHA
>>
File: J7hrygW.gif (161KB, 415x477px) Image search: [Google]
J7hrygW.gif
161KB, 415x477px
>>2486392
Not asking for the strategy specifically but the education needed,
I know Python from my course atm but what else is good for trading to learn which you can apply to bots?
Like Logistic/linear regression, SVM, boltzmann, statistics that kind of thing??
>>
>>2488414
Personally I do very simple arbitrage,
exploiting price differences. You'd be surprised how inefficient some markets still are.

The work is 95% technical, not mathematical, i.e. minimizing latency, maximizing reliability.
>>
>>2486392
>Thinking of buying a gigabit VPS in the same city as the exchange for low latency access to the API
I recently needed this for a different project, where I need to be as close as possible to a server. Turns out their data center was ridiculously expensive, so I look for the next fastest link. This may be helpful to narrow down your search:
https://wondernetwork.com/pings/
= Average pings between cities
>>
>>2489382
>Arb
Dont you get fucked with transaction fees?
>>
>>2486341
Yep mines better than yours though. 1000% returns a day.
>>
>>2489382

Interesting stuff. I've done a little bit of work in this area, but haven't gotten around to implementing it in my trading system. I have a cool functioning prototype for identifying the arbitrage opportunities, though.
>>
>>2486193
>but you're unlikely to sell it to enough people for it to make any tradable difference to the markets

a literal botnet
>>
What programming language do you people use for your bots?
>>
>>2489807
C# is best for this type of apps, hands down. anyone telling you otherwise is either a dinosaur or a script-kiddie.
>>
>>2490276
I don't run bots but if I did I'd use elexir-lang.org.
>>
>>2490424
*elixir-lang.org
>>
>>2490276

I guess I'm a dinosaur. I mostly work with C++ and Python for this application.
>>
>>2490276
why C# ?
>>
>>2490276
Care to provide any actual reasons? I am pretty sure Python would be the best due to how fast you could write the code. The only reason i see language being super important is if you're doing high frequency trading and you need to squeeze out milliseconds in optimizations, but no one does that as far as i know.
>>
anyone got experience with tradderdaddy?
>>
>>2490496
just download VS 2017 (community, not the early preview version) and try it.

>>2490775
because, for example, gui comes very handy with these applications, and C# is far more suited for gui programming (both winforms and wpf) than python.
i think for most applications > 10,000 loc, you gain more from strict(er) typing than you pay by having to type a little bit more

>language being super important
it's not super important at all, but it comes handy.

and if you need to optimize to the fullest for some reason, you'll have to use assembly anyways. but it's also super fast to call assembly (compiled to a dll) from C#, a simple direct register load, then a jmp. it's faster than from C++, due to the fact that C++ uses an indirect jmp for dll calls, but as C# is JITed, it's trivial for the compiler to directly compile the address of the method into the code. Only works on the new .NET Core though.

but if you're now getting familiar with languages, you probably won't need to squeeze out everything from the hardware for a long time.
>>
>>2491103
forgot url

https://www.visualstudio.com/downloads/
>>
>>2490276
>>2490496

As someone who used to be a C# maximalist... I have to say that there are lots of other fun languages that can do similar easily.

Go, F#, even Python would be decent choices.

Just don't code in JavaScript, we need to let it die.
>>
>>2483403
Sell your real time trades, your followers are only going to push the price in your favour
>>
>>2491103

You lost me at VS 2017. Linux only here, breh. I live in a microsoft-free zone.
>>
>>2491164
well in my experience, while F# has a lot of cool things about it, it's absolutely horrible for prototyping.

e.g. restricted ordering of definitions. literally made that way, because it's far easier to write the compiler in a functional way if they don't allow unrestricted ordering, but it fucks up any application of considerable size.

any example of a _serious_ _money making_ software written in F#?
>>
>>2491188
java (or kotlin) + javafx

static typed languages > dynamic shit like python
>>
>>2491103
>https://www.visualstudio.com/downloads/


thanks i did. but ...
i use typescript with angular 2 (and html canvas) and run all my applications on g cloud computing ( more than enough in house resources and API's) and its a wet dream for Gui programing

sorry whatever lol . i just love gushing about my tech stack , but

isn't c#/.net basically redundant outside of enterprise infrastructural maintenance ?
>>
>>2491188
yeah then don't use C#.
While .NET Core ( https://github.com/dotnet/coreclr ) runs on linux, and it's actually really nice, by far the biggest advantage of C# is that it has been co-evolving with Visual Studio since its birth.
Pretty senseless to use it without it, and nothing (mono, or the jetbrains ide) come close.
i suppose python is probs your best choice then.
>>
File: html.png (178KB, 602x330px) Image search: [Google]
html.png
178KB, 602x330px
>>2491210
forgot my cheeky png
>>
>>2491210
if you use typescript why would you use Visual Studio? you should be using VS code.
and i just like C# much more for applications that don't have the restriction of having to run in the browser.

Nah C# wasn't at all designed for Enterprise, that's Java.
>>
>>2491188

Then use VS Code + OmniSharp plugins that run .NET Core.

I mean shit, MS SQL Server runs natively on Linux now.

Microsoft might be a big ship, but they've turned it around over the last few years.

Visual Studio for Mac is pretty damn good too.
>>
>>2491210
but seriously, angular 2 doesn't come close to WPF if you need a good looking UI, or WinForms if you need an easy-to-throw-together functional one.
>>
>>2491249
VS for Mac is actually just rebranded Mono. Not saying it's bad, but..
>>
>>2491257

As much as I dislike JavaScript, the React and React Native frameworks are pretty good.

I really wish they'd make a WPF (XAML) UI system that would be cross platform and utilize .NET Core.
>>
>>2491207

Hey, I'm a java fan. Writing java code made me a lot of money at one time. I like python for playing with the data and I use C++ for the heavy lifting, like model building and managing the gpu-related activities.
>>
>>2491265

Oh for sure, I used Xamarin Studio for mobile dev a bit before MS bought them up.

Very obvious what happened there but I have to give MS props for really going hard on the project. I mean, Xamarin pretty much was the IDE you wish you had on Mac anyways.

Still hilarious to me that MS came up with a better Android emulator than Google. Like what the fuck?
>>
>>2491164
Not sure how much I can trust your opinion if you don't like JavaScript. Have you even tried it since ES6? The new syntax is sexy, especially the fat arrows.
>>
>>2491257
i use googles Material Design for that stuff.

https://material.io/

its so slick.
i have never used wpf , but i have a feeling compared to material it looks and feel extremely dated
>>
>>2491249

I get your point, but I don't see what I need any of that stuff for, for what I'm doing. mysql works great for me. I don't give a fuck about a creating a gui because I don't need one for this. I use C++ because, well, I've been using it for my machine learning work for the past nearly 20 years and I have a lot of useful stuff already written.
>>
>>2491245
The thing with C# and .NET in general is that it’s considered to be an Enterprise level programming platform. As such they are usually used to build software that is used by corporate clients. This software is usually massive and cost ranging from 10 of thousands to 100s of thousands dollars.

>Nah C# wasn't at all designed for Enterprise, that's Java.

not sure why C# was "designed" but....

yea.

i'm not convinced that it , like java , is basically redundant outside of enterprise codebase maintenance
>>
>>2491113
fucked around with this a little bit.

feels like netbeans.

i prefer xcode for this sort of thing.
>>
>>2490276
like every api is for python kek
>>
I've written some Python code to scrape data from the Bittrex API and do some basic sorting/plotting, moving averages, highest and lowest percentage changers or volumes, that sort of thing. I'm considering making it into a bot, though I'm only really a hobbyist programmer.
>>
>>2491692
pretty much same thing I have done but in Node.js. Got it to access various exchanges Public APIs for market prices and have it so it loops ever 20sec and some scripts written for 2 exchanges on Private API. Currently wanting to connect to bittrex private, and then open a second account so I can toy around with it as a bot.
>>
>>2491753
how do you get moving average etc? which python library
>>
>>2490496
Lol you only need a script. If anyone says you need to compile a binary, they're just being an autist. Theres no significant performance increase when scripting as opposed to compiling software for the purpose of calling json APIs. Python is perfectly fine. But use whatever you're fluent in. Whatever is easiest for you is the best call.
>>
>>2491765
cant you just make all that shit yourself with a math module
>>
>>2491765
pandas
>>
>>2491765

If you can't calculate a moving average without resorting to a library, you're in over your head.
>>
>>2491282
MS bought Xamarin. It wasn't developed by MS.
>>
Can someone give me details on what the bot will do? I'm willing to program a bot and open source it.

I'm the guy behind this btw:
https://github.com/r7cky/BizCryptoScanner
>>
>>2486392
Let me guess. Trading one crypto to another, then back to crypto #1 on a different exchange. Dismissed.
>>
>>2489382
Just out of curiosity what's your average $ gain per day?
>>
>>2494142
>https://github.com/r7cky/BizCryptoScanner

im interested in learning more about java's practical web applications.

how do you install/run this code ?
>>
>>2494470
Download project and select open existing project
>>
>>2494475
This is in eclipse btw
>>
>>2494493
ok thanks ill chek it out.
>>
>>2494475
can it be opened in netbeans ?
>>
File: 1473360715522.gif (363KB, 500x498px) Image search: [Google]
1473360715522.gif
363KB, 500x498px
>>2494475
>https://github.com/r7cky/BizCryptoScanner

Fetching replies from thread: >>2492950
Fetching replies from thread: >>2492648

==RESULTS==

Bitcoin (BTC): 209 [Latest post: https://boards.4chan.org/biz/thread/2492516#p2492593]
Ethereum (ETH): 119 [Latest post: https://boards.4chan.org/biz/thread/2492895#p2492938]
Litecoin (LTC): 76 [Latest post: https://boards.4chan.org/biz/thread/2490793#p2491592]
Golem (GNT): 28 [Latest post: >>248


thats cool .
>>
>>2494142
could you run this code in the browser somehow?

perhaps with html gui
>>
>>2491692
just have your bot play with fake money (IE, don't actually send the trade orders) and see how it works. Find a system that works well on paper then once you're confident give it a little bit of money to play with and see what happens.
>>
Can someone recommed some free available phyton trading bots, only for the purpose to know how they work?

I do not intend to use them for trading.
I simply want to read the technical stuff and algorithms to get an idea how they work.
>>
How much money do your bots make a day?
>>
This thread is so stupid. People expecting other people to give so many hard worked hours away for free, always make me chuckle.
>>
>>2495418

That's why I'm just asking for an open source bot that is not totaly retarded just to get an idea how they work.

I'm gonna put in a lot of my own time to build one suited for me.
Yes I can google fo them but it would be better if someone knows a few that are good for learning.
Thread posts: 86
Thread images: 6


[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.