[ 3 / biz / cgl / ck / diy / fa / ic / jp / lit / sci / vr / vt ] [ index / top / reports ] [ become a patron ] [ status ]
2023-11: Warosu is now out of extended maintenance.

/biz/ - Business & Finance


View post   

File: 146 KB, 671x519, 1502688372540.png [View same] [iqdb] [saucenao] [google]
14104034 No.14104034 [Reply] [Original]

How do I sell a trading bot I made?

It's not a super l33t advanced automated quant trading algo or anything, but it has a nice slick GUI and I'm building it out to tie together info from all your exchanges, allowing you to trade from all of them.

Also adding my own personal touches with useful features like a limit chaser, automatic stop placements, stuff like that.

But how do I sell it? I'm in a few discords with tons of traders, but how exactly should I present it without sounding desperate, or like it wouldn't be worth it for them to try?

>> No.14104060

oh god anon
it was a meme, you weren't supposed to take the meme 'learn to code' literally

>> No.14104062

Hire me as a consultant and I'll help you sell it

>> No.14104071

>>14104062
>>14104034
On second thoughts we wouldn't want you to be unhappy with your choice of consultant, so in the interests of the free market you should hire another consultant to decide which consultant you hire to help you sell your bot.

I suggest this guy

>>14104062

>> No.14104080
File: 54 KB, 640x853, 114.jpg [View same] [iqdb] [saucenao] [google]
14104080

>>14104034
No one is going to risk losing all their cryptocurrency to your RAT

>> No.14104112

build a website

>> No.14104447

async function checkPairForHighVolatility(pair, interval, candlesToGoBack){
var candles = await client.candles({ symbol: pair, interval: interval, limit: candlesToGoBack });

var totalChange = 0;
var count = 0;
for(var i = 0; i < candlesToGoBack - 2; i++){
if(candles[i] == null){
return;
}

var change = Math.abs(candles[i].high/candles[i].low);
totalChange += change;
count++;
}

var avgVolatility = 100*((totalChange/count)-1);
var retObj = {
avgVolatility:avgVolatility,
pair:pair
};
return retObj;
}

>> No.14104690

>>14104112
I was thinking about that, that's probably definitely in the cards, but I want to just do a few personal face-to-face (in discord?) sales to carve out my clientele, assess what traders actually want, and get feedback. What would traders listen to as far as potentially pitching them the idea of a bot/trading terminal-type program, for a relatively cheap price, if it looks good and convenient?


>>14104080
Hm I was going to ignore you but now that I think about it that's a very fair point. I'll have to give that some thought

>>14104447
Is this just something you hacked together while writing that post, or do you actually use something like this? How often would that function be looped

>> No.14104868
File: 102 KB, 680x680, 1560305230269.png [View same] [iqdb] [saucenao] [google]
14104868

>>14104071
>>14104062
kek

>> No.14105024

>>14104690
Most people will have that mentality which is why you will need a really professional looking website and you should give people visiting the website that there are already thousands of people using your software.
No one visiting the website will know its all bullshit just fake it till you make it.

>> No.14105038

>>14105024
give people visiting the website the impression that there are already thousands of people using your software*

>> No.14105110

>>14105024
Ok good point thankz anon.

But I'm still just not sure what I'm selling yet...? I mean I'd much rather literally, just sell beta copies for like $50, and work with early buyers to implement whatever they want, and update it for them. Kind of "exclusive"

>> No.14105265

>>14105110
You must not be very smart. There are already good programs out there for less than $50 and why would someone pay you $50 to waste their time. You have obviously done very little research into this and you will never make it.

>> No.14105307
File: 37 KB, 657x527, 1523130718151.png [View same] [iqdb] [saucenao] [google]
14105307

>>14104034
Can I test it out for you OP

>> No.14105337

>>14104034
>download this program and give it your trading api keys
>trust me bro its free

>> No.14105846

>>14105265
Yeah? What programs?

>>14105307
What's your main exchange?

>>14105337
>implying this isn't what all trading apps out there literally do
It would be nice to find some way around that though