Bitcoin Forum

Bitcoin => Project Development => Topic started by: Stultiloquy on January 17, 2014, 02:42:37 PM



Title: [ANN] jCryptoTrader BETA - open source trading client
Post by: Stultiloquy on January 17, 2014, 02:42:37 PM
http://s1.directupload.net/images/140117/byogn2vf.png

Description
Java-based crypto-currency exchanges trading client.
Please donate to BTC1M4SKfh83ZxsCSDmfaXvfCfMonFxMa5vvh (bitcoin:1M4SKfh83ZxsCSDmfaXvfCfMonFxMa5vvh) if you like it and want to help me.
Program currently on beta version, so post all found issues and defects.

Features
* Real time charts
* Multi-market unified interface
* Trading rules
* Real time capitalization info from http://coinmarketcap.com/
* Languages: English, Russian (edit locale.properties and send it to me, and i add your language to program)

Supported exchanges
jCryptoTrader currently supports Cryptsy, BTC-E and partially MtGox (only public api).

Todo
* Add more exchanges
* Add more complicated rules (groups, MACD/RSI/Stochastic signals, etc)
* Port to Android (only gui required, because it's Java)

Known issues
* BTC-e returns extremely insufficient history data
* Skins "System", "Motif" and "GTK" doesn't work properly

Links
Download from SourceForge (https://sourceforge.net/projects/jcryptotrader)
BitBucket repository (https://bitbucket.org/Yodacloud/jcryptotrader)


Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: Stultiloquy on January 18, 2014, 09:45:54 AM
Bump


Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: TheWARLoK on March 03, 2014, 12:12:41 AM
Marketcap tab not displaying anything.
Documentation would be nice. Especially regarding rules.
Would like to tie frames in chart tab. (5min, 15min,1hr, 1day, 7day, 30day)
Trends like Moving Averages and such also would be a plus.
Estimated values would be a cool plus.
Otherwise, a lot of potential. Keep up the good work.



Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: timboslice on March 12, 2014, 07:09:57 PM
Could I bother someone to give me some very basic rules? Mine disappeared after they were executed. Thanks


Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: E.exchanger on March 12, 2014, 08:09:59 PM
I can't download it tried with both firefox and chrome. Has anyone tried it so far i will appreciate the feedbacks as iam unable to download this maybe there is a problem with my network or laptop but i just want to make sure its not a malicious software maybe this could be the reason its not downloading iam sorry if iam wrong but anyone who's using it please post its would be a great help. thanks


Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: Fungraphic on March 29, 2014, 04:59:36 PM
I'm on ubuntu 12.04 and it does not work.

http://img11.hostingpics.net/pics/997402java.png


Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: UberNifty on April 16, 2014, 07:37:35 AM
Any updates?


Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: daybyter on April 16, 2014, 03:50:34 PM
I'm on ubuntu 12.04 and it does not work.

http://img11.hostingpics.net/pics/997402java.png

I have nothing to do with this project, but it seems to me, that you are using an older java version than the developer. I.e. project was compiled with java 7, but you are trying to run it with java 6.


Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: UberNifty on April 26, 2014, 06:23:59 AM
Is this project dead?


Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: UberNifty on April 26, 2014, 06:29:45 AM
I can't download it tried with both firefox and chrome. Has anyone tried it so far i will appreciate the feedbacks as iam unable to download this maybe there is a problem with my network or laptop but i just want to make sure its not a malicious software maybe this could be the reason its not downloading iam sorry if iam wrong but anyone who's using it please post its would be a great help. thanks

Downloaded fine from SourceForge; albeit I had to temporarily allow the page with the NoScripts addon (FireFox).


Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: TheWARLoK on May 04, 2014, 08:55:21 PM
Is this project dead?

kinda like to know that myself...


Title: Re: [ANN] jCryptoTrader BETA - open source trading client
Post by: efc17 on July 11, 2014, 12:51:17 PM
Hi

Running on win 7 32bit.

I can't enter more than 1 rule.  2nd rule removes the 1st etc.

 MarketRule rule = ruleIterator.next();
                    if (rule.condition.isSatisfied(ruleData)) {
                        if (rule.action != null) {
                            rule.action.apiWorker = worker;
                            Thread actionThread = new Thread(rule.action);
                            actionThread.run();
                        }
                        if (callback != null) {
                            callback.onSuccess(rule);
                        }
                        if (executionType == MarketRuleExecutionType.ONLY_FIRST_SATISFIED) {
                            this.clear();
                            break;
                        }
                        ruleIterator.remove(); // Rule executed
                    }

How to change this I have absolutely 0 experience in Java.

Nice app.  I really appreciate something like this being open source.  If I could set 2 No. rules ie.  One sell @ x.xx and one buy @ x.xx It would be perfect for what I want to do at Cryptsy.

/*edit:  Also cancel order does not work from the GUI and I have to do it at Cryptsy,  could any experienced developer have quick look at this if you get a moment.  As it would take me forever (and I still wouldn't solve it).  failing that I may ask some colleagues at work if they wouldn't mind taking a look at the code.*/

Can anyone offer some advice on this please?

Thanks