Pages:
Author

Topic: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux] - page 73. (Read 383267 times)

sr. member
Activity: 391
Merit: 250
v1.07.75 Beta Released!

All Bitstamp users now forced to use API key and sign. Login and password are no longer supported.
Now Bitstamp works with api confirmations, so it now more stable, but not so fast as Mt.Gox or BTC-e due request limitations.
Fixed critical Rule Engine bugs.
Fixed "All In" values issue.

All exchanges works as fast as API server allows, but I know it can be faster.
Thats why I have planted to develop server to make single websocket connection with Qt Bitcoin Trader to get all exchanges tickers and depths realtime.
Thanks for bug reports, feature requests and donations, keep tracking updates.

Thank you IGHOR for this release. I'll try it is soon as I can and will give you feedback and donation.
legendary
Activity: 1035
Merit: 1065
v1.07.75 Beta Released!

All Bitstamp users now forced to use API key and sign. Login and password are no longer supported.
Now Bitstamp works with api confirmations, so it now more stable, but not so fast as Mt.Gox or BTC-e due request limitations.
Fixed critical Rule Engine bugs.
Fixed "All In" values issue.

All exchanges works as fast as API server allows, but I know it can be faster.
Thats why I have planted to develop server to make single websocket connection with Qt Bitcoin Trader to get all exchanges tickers and depths realtime.
Thanks for bug reports, feature requests and donations, keep tracking updates.
legendary
Activity: 1035
Merit: 1065
Finally Bitstamp has added the API keys: https://www.bitstamp.net/article/api-key-implementation/

Please include that in the nearest update.

Thank you!

It great news! Nonce is also added.
I'll make update and publish soon.
sr. member
Activity: 391
Merit: 250
When Bitstamp will release new api that uses parameter "nonce" to identify duplicated packages then I'll update API client engine.

Finally Bitstamp has added the API keys: https://www.bitstamp.net/article/api-key-implementation/

Please include that in the nearest update.

Thank you!
full member
Activity: 190
Merit: 100
Ighor, please: I'm using the 1.07.62 beta for Linux (compiled it myself) and it's complaining about the Root Certificate.

How can I install this certificate?

Update: forget about it Wink The solution is below

SOLVED

http://stackoverflow.com/questions/3777075/ssl-certificate-rejected-trying-to-access-github-over-https-behind-firewall

$ cd /usr/ssl/certs
$  curl http://curl.haxx.se/ca/cacert.pem | awk 'split_after==1{n++;split_after=0} /-----END CERTIFICATE-----/ {split_after=1} {print > "cert" n ".pem"}'
$ c_rehash
member
Activity: 101
Merit: 10
hmm did edit the files but sadly could not get it to work

dont worry!  I have a working version on my mac


I will wait till 1.08 to get it working on my ubuntu box


thank you for pointing me in the right direction

Ian
legendary
Activity: 1035
Merit: 1065
Dear Ighor

so sorry to ask

I have qtbitcointrader up and running on my mac

but just want to launch it on my ubuntu box too

I have downloaded the source code from  

https://github.com/JulyIGHOR/QtBitcoinTrader

but how do I Compile it to run

do I simply use  

cd to the directory containing your source code
type: qmake -project
type: qmake
type: make

as this did not work for me what am i missing

please point me in the right direction

Thanks

Ian W

It Ubuntu issue. There is no multimedia library.

Edit QtBitcoinTrader.pro
Set Line 10 to:
QT += network

Edit main.h
Comment line
#define USE_QTMULTIMEDIA

After v1.08 release I'll start working to port Qt Bitcoin Trader to Qt5 and I'll fix this issue.
full member
Activity: 196
Merit: 100
I love Bitcoin
seem like good features provided, any one try?
member
Activity: 101
Merit: 10
Dear Ighor

so sorry to ask

I have qtbitcointrader up and running on my mac

but just want to launch it on my ubuntu box too

I have downloaded the source code from 

https://github.com/JulyIGHOR/QtBitcoinTrader

but how do I Compile it to run

do I simply use 

cd to the directory containing your source code
type: qmake -project
type: qmake
type: make

as this did not work for me what am i missing

please point me in the right direction

Thanks

Ian W
legendary
Activity: 1035
Merit: 1065
I appreciate it. All in all the bot works great! It stays connected during mtgox issues reliably or at least doesn't close ungracefully. It works on BTCe. I do wish I could do more when I have the bot watching for a condition to be met. Sometimes I would like to have say the BTCe bot able to buy a little USD while I am waiting to sell my NMC. It isn't a big deal and if I really needed that functionality I could always run another instace with another API key pair.

Thank You for making a great, fast and useful trading engine for the API's on several exchanges.

Monitoring and Trading with many currencies at same time is in progress.

I have found something I believe to be in error.

I set up a sell rule and it fired based on price being greater then what I specified. So far all is well and it sold the amount I desired.

I tried one of the newer items from the beta version.

Total to Buy at Market Buy price. I have it set to the amount I sold + a bit of profit. (0.02 +0.0002 or 0.0202 total)

To check on the buy side I hit 2 buttons (All In) and (Buy Price) This prints two totals, One for before fees and one for after fees.
As I understand it if Both are above the amount I set in the rule then it should buy the amount I told it to buy (0.02). Both are above but the rule isn't triggering.
I get 0.02038 and 0.02026.

I have either failed to understand how the rule works or I located a bug.

It known issue and I'm working on it.
After I'll finish fixing bugs I'll make detailed wiki for all features.

It would be awesome if there could be some kind of scripting language for rules.

This feature will definitely added. It hard work and it takes a time. I want to make universal scripting language to affect all possible strategies.
I'm single developer and it takes a time. If you want to make me to avoid wasting time on other work, feel free to donate me. This will help me to be able to spend more time to develop Qt Bitcoin Trader.

PS: Sorry for my bad English.
legendary
Activity: 1064
Merit: 1000
It would be awesome if there could be some kind of scripting language for rules.
hero member
Activity: 981
Merit: 500
DIV - Your "Virtual Life" Secured and Decentralize
I have found something I believe to be in error.

I set up a sell rule and it fired based on price being greater then what I specified. So far all is well and it sold the amount I desired.

I tried one of the newer items from the beta version.

Total to Buy at Market Buy price. I have it set to the amount I sold + a bit of profit. (0.02 +0.0002 or 0.0202 total)

To check on the buy side I hit 2 buttons (All In) and (Buy Price) This prints two totals, One for before fees and one for after fees.
As I understand it if Both are above the amount I set in the rule then it should buy the amount I told it to buy (0.02). Both are above but the rule isn't triggering.
I get 0.02038 and 0.02026.

I have either failed to understand how the rule works or I located a bug.
full member
Activity: 190
Merit: 100
I installed it on Linux and I get:

"SSL Error: The issuer certificate of a locally looked up certificate could not be found The root CA certificate is not trusted for this purpose".

I understand I have to install "Thawte_Primary_Root_CA.cer" but to where exactly? Is there a step by step tutorial how to install this certificate
on Linux?

Thank you.
legendary
Activity: 1064
Merit: 1000
Yes, THANK YOU very much for this tool.
hero member
Activity: 981
Merit: 500
DIV - Your "Virtual Life" Secured and Decentralize
I appreciate it. All in all the bot works great! It stays connected during mtgox issues reliably or at least doesn't close ungracefully. It works on BTCe. I do wish I could do more when I have the bot watching for a condition to be met. Sometimes I would like to have say the BTCe bot able to buy a little USD while I am waiting to sell my NMC. It isn't a big deal and if I really needed that functionality I could always run another instace with another API key pair.

Thank You for making a great, fast and useful trading engine for the API's on several exchanges.
legendary
Activity: 1035
Merit: 1065
I'm not sure this is intentional but if I mistakenly press enter in a text box like the price or amount boxes I get a popup stating address copied to clipboard and another with a failure trying to start my bitcoin wallet.

I apparently shouldn't ever press enter but I am used to it running an action like setting the rules or submitting the trade instead of a donation popup.

This is on win 7 64bit. I am not sure if that matters but sometimes it does.

Thank you. I'll make Copy donate button to be forced not default button.
hero member
Activity: 981
Merit: 500
DIV - Your "Virtual Life" Secured and Decentralize
I'm not sure this is intentional but if I mistakenly press enter in a text box like the price or amount boxes I get a popup stating address copied to clipboard and another with a failure trying to start my bitcoin wallet.

I apparently shouldn't ever press enter but I am used to it running an action like setting the rules or submitting the trade instead of a donation popup.

This is on win 7 64bit. I am not sure if that matters but sometimes it does.
hero member
Activity: 700
Merit: 500
CryptoTalk.Org - Get Paid for every Post!
please, suport bitstamp Smiley

Bitstamp support already added to lastest beta build.

Nice nice. Thanks for the info Smiley
legendary
Activity: 1035
Merit: 1065
please, suport bitstamp Smiley

Bitstamp support already added to lastest beta build.
hero member
Activity: 700
Merit: 500
CryptoTalk.Org - Get Paid for every Post!
please, suport bitstamp Smiley
Pages:
Jump to: