Bitcoin Forum
May 27, 2024, 11:40:16 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
  Home Help Search Login Register More  
  Show Posts
Pages: [1]
1  Economy / Service Announcements / Re: BitcoinWisdom.com - Live Bitcoin/LiteCoin Charts on: April 05, 2017, 02:46:29 PM
Could you add XRP from Bitstamp to the portfolio? Thanks  Wink
2  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: September 01, 2014, 02:26:16 AM
 Grin
Wouldn't it be great if you can use the API from Cryptotrader.org in Qt Bitcoin Trader to have trend indicators like Moving Averages inside Trader?
Then you could build some really intelligent Bots with the Trader.
https://cryptotrader.org/topics/498149/multi-condition-check-bot-free
3  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: August 25, 2014, 11:04:01 AM
Sorry for this. But new version does not supports old rules.
Here is old app https[Suspicious link removed]
Run it, you will see old rules in readable format, then make the same rules in new app by looking on old app.

Oh, crap.
It's about 40 rules.
It will take a good half a day to retype those.

I tried also to create a new rule with new client, so that I can see the format and if I could transfer old rules by text only, but all I receive is "Values you entered is invalid. Please check amount and price".
For example this one I tried to create:

"When Last Price (BTC/USD) < Last my Sell Price (BTC/USD) (Realtime comparation) then Sell BTC (BTC/USD) ฿3.0% + fee at Last Price"
var baseVariable = calcBaseVariable();
function calcBaseVariable()
{
 baseVariable = trader.get("BTCUSD" , "LastMySellPrice");
 return baseVariable;
}

trader.on("LastPrice").changed()
{
 if(symbol != "BTCUSD")return;
 calcBaseVariable();
 if(value < baseVariable)
 {
 var amount = trader.get("Balance","BTC");
 amount *= 0.03;
 amount *= (1.0 + trader.get("Fee") / 100.0);

 var price = trader.get("BTCUSD" , "LastPrice");

 trader.sell("BTCUSD" , amount , price);
 trader.groupDone();
 }
}
4  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: August 24, 2014, 08:30:41 PM
I didn't quite catch what you mean by transfer. I'm now with the latest version.
I have the my_bitstamp.ini file and inside I can see the lines for rules. However, the GUI doesn't load any rule groups. When I try to load the rule group from a file, it is asking a .JLR file, but I never had those.
So what to do here?

here's a copy of one of the rule groups inside the ini-file:
[Rules]
001="16|0|0|-10.0|1|-1.0|0.0|0.0|0.0|100.0|0|QmVlcA==|0@16|0|0|-8.0|1|-2.0|0.0|0.0|0.0|100.0|2||0@16|0|0|-9.0|1|-1.0|0.0|0.0|0.0|100.0|9||0@3|0|0|-5.0|-1|-1.0|646.27|3.5|0.0|100.0|0||0@16|0|0|-10.0|1|-1.0|0.0|0.0|0.0|100.0|0|QmVlcA==|0@16|0|0|-1.0|1|-3.0|0.0|0.0|0.0|100.0|0||0@16|0|0|-9.0|1|-1.0|0.0|0.0|0.0|100.0|2||0@16|0|0|-9.0|1|-1.0|0.0|0.0|0.0|100.0|3||0@16|0|0|-9.0|1|-1.0|0.0|0.0|0.0|100.0|4||0@16|0|0|-9.0|1|-1.0|0.0|0.0|0.0|100.0|5||0@16|0|0|-9.0|1|-1.0|0.0|0.0|0.0|100.0|6||0@16|0|0|-9.0|1|-1.0|0.0|0.0|0.0|100.0|11||0@3|0|0|-8.0|-1|-1.0|646.27|3.75|0.0|100.0|4||0@16|0|0|-10.0|1|-1.0|0.0|0.0|0.0|100.0|0|QmVlcA==|0:0:start"
5  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: August 24, 2014, 07:11:41 PM
How do I convert all my old rule groups to new ones?
Profile is still in place, but it doesn't pick up the rules to the client..

 Huh
6  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: April 25, 2014, 06:49:18 PM
I downloaded this(awesome) bot an hour ago but i can't really understand how i should set the rules for my strategy Huh, i want to set a fixed price that always remains the same, for example, if my buyorder is set at 450 and i want it to instantly setup a sellorder once it has bought(at 450), the sellorder should be 470.. and when it has sold i want my first buyorder to be set at once(450 again) Smiley

Simple solution would be to do it with Rule Groups:
Group#1: If price <=450 : Buy 450 : Enable Group#2
Group#2: If price >=470 : Sell 470 : Enable Group#1
7  Bitcoin / Project Development / Re: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] on: April 02, 2014, 09:42:54 AM
I have doubts that exchanges are going to pay you to have their exchange added to the bot. Most expect it the other way around. I think if this doesn't work out, a better method would be to implement a separate auto trade fee so that any successful trade that happens (buy or sell) would include a small 0.1%-0.5% fee added to whatever the exchanges fee is. So in other words when the trade successfully goes through (the open order is closed), the exchange gets it's fee as usual and the bot also sends a separate 0.1%-0.5% to your btc address. I think this would please everyone and here's why:
1) The bot would remain free.
2) All exchanges could be included (eventually)
3) The more people using and making trades with the bot the more money you and your company would make.
4) The users don't have to deal with switching between "supported exchanges" and "unsupported exchanges".
5) It all happens in the backend and would be auto calculated within the rule set so the user still makes a profit.

just my 2 cents. I know I'd personally stop using the bot if BTCe was no longer supported mainly because I don't want to move my btc around again.

I have to disagree to your proposed fee %. I've been trading on 1 minute algorithm since December (mainly Cryptotrader.org) and that I support with Qt Bitcoin Trader (e.g. stop loss). This means tens, even a hundred trades per day. BTC price volatility in this time frame is usually 0.5%, on good days 1% and on extreme days it can be more than 10%. Exchanges take 0.4% or 0.2% of each trade already, so from usual 0.5% this leaves maximum of 0.3% for relative profit (and here I say relative, because you sometimes can't get profit for days or get negative price development for longer times). 0.1% would therefore mean 1/3 of my best profits. This would automatically mean that I would reject this service.

Cryptotrader has been for long time now using a user license policy where different features are available at different monthly fees. I have some difficulties that sometimes this is for me 100% of my monthly profits, sometimes even 200%. However, there seems to be several other customers on the service so the license policy works. As the trading bot doesn't have very high intelligence inside (e.g. logic patterns, algorithms for trend analysis, auto-tuning trade patterns) I would recommend a Basic fee of e.g. $5 / month / exchange (substantially lower fee than CryptoTrader). Unlimited exchanges would be inside Pro feature and that would cost e.g. 5x Basic. As the next versions are coming with new features (like 3EMA trend tracking and Decision models that support parallel rules) these would be included to Medium and Pro accounts that have much higher fee.
Pages: [1]
Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!