Bitcoin Forum
March 19, 2024, 09:37:38 AM *
News: Latest Bitcoin Core release: 26.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 [66] 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 »
  Print  
Author Topic: Qt Bitcoin Trader [Open Source secure trading client for Mac/Windows/Linux]  (Read 383257 times)
Blawpaw
Legendary
*
Offline Offline

Activity: 1596
Merit: 1027



View Profile
July 11, 2015, 03:14:39 PM
 #1301

Does the software offers the possibility of configuring a trading BOT? Are you guys using it to help with arbitrage trading? Is it safe to use?
1710841058
Hero Member
*
Offline Offline

Posts: 1710841058

View Profile Personal Message (Offline)

Ignore
1710841058
Reply with quote  #2

1710841058
Report to moderator
Activity + Trust + Earned Merit == The Most Recognized Users on Bitcointalk
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1710841058
Hero Member
*
Offline Offline

Posts: 1710841058

View Profile Personal Message (Offline)

Ignore
1710841058
Reply with quote  #2

1710841058
Report to moderator
1710841058
Hero Member
*
Offline Offline

Posts: 1710841058

View Profile Personal Message (Offline)

Ignore
1710841058
Reply with quote  #2

1710841058
Report to moderator
1710841058
Hero Member
*
Offline Offline

Posts: 1710841058

View Profile Personal Message (Offline)

Ignore
1710841058
Reply with quote  #2

1710841058
Report to moderator
Aknot
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
July 12, 2015, 04:10:13 PM
 #1302

Hi guys,

i'm rather a newbie in JL scripting and i have the following question:

JL script offers me a function to get the BTC volume for the last 10 Minutes.

Code:
var tenMinVol = trader.get("10MinVolume")

My question is now, how can i implement this for 1, 3, 5, 15 Minutes and so on.
I can't see where I can get something like the last amount or something similiar.
Have I missed something?

My idea was to add last amount for a specific time, maybe with a timer and so I get the volume
of this specific time range.

Good idea or not?  Undecided
Any help is appreciated!

Greetz Aknot

PS: Sorry for my bad english, it's not my native language.  Embarrassed
PuertoLibre
Legendary
*
Offline Offline

Activity: 1834
Merit: 1003


View Profile
July 13, 2015, 08:47:45 AM
 #1303

Hi guys,

i'm rather a newbie in JL scripting and i have the following question:

JL script offers me a function to get the BTC volume for the last 10 Minutes.

Code:
var tenMinVol = trader.get("10MinVolume")

My question is now, how can i implement this for 1, 3, 5, 15 Minutes and so on.
I can't see where I can get something like the last amount or something similiar.
Have I missed something?

My idea was to add last amount for a specific time, maybe with a timer and so I get the volume
of this specific time range.

Good idea or not?  Undecided
Any help is appreciated!

Greetz Aknot

PS: Sorry for my bad english, it's not my native language.  Embarrassed
First, You might want to try getting the 10 minute volume at the start of the script within the first 60 seconds.
Then, with a 60 second timer deduct the next result from the previous result within the next minute.
Finally, write the returned value to a holding variable.


If you assign separate variables for each minute you should be able to get the true volume for any period of time that has passed.

(Might need to spend time writing out all the variables.)
IGHOR (OP)
Legendary
*
Offline Offline

Activity: 1035
Merit: 1065



View Profile WWW
July 15, 2015, 12:39:52 AM
 #1304

How about Poloniex support for Monero (XMR) trading?

I can donate to make this happen.

I'll think about it.

Which software package did you use to code the software? I am seeing QT but which version? Any link? I would like to look at enhance the charts component and would like the same IDE as you. It isnt a VS project as Visual Studio doesnt recognize it. I tried QT 5.5 and its still not recognized as a QT project.

Thanks!

Qt 5.X.X supported

@ Ighor

Do all (or only some) of the programmatic commands query the application itself, or does it query the server directly?

For example, if I write trader.get("AskPrice")

Does this query the application internally that collects this information, or does this query go to the api and the server answers the request?

----------------------

The reason I ask is because I am trying to determine if by writing a heavy number of queries if I am accidentally hammering the server api (through my internet connection) or if I am just hammering the application with the information it has available on hand, to answer the requests?

I noticed that in one command (asksprice, volume) you state that the application has to have a certain number of available order book rows visible for it to work properly. But it is unclear if that is because the application itself is answering the queries with whatever information it has on hand

OR

If the application just has a quirk that needs a certain number of internal settings to assigns internal values and then hands off the queries to an external server api to get an answer.

I am trying to prevent hammering the BTC-e exchange with queries so I would like to know if the application acts like an aggregate of data. In so far as the application answers some of the queries itself and only a few specific commands are answered by the server itself.

Application send requests to exchange with fixed interval and store everything in RAM.
If you write trader.get("AskPrice") you just access variable in RAM.
There is no need to make loop and many of trader.get("AskPrice"), you should use trader.on.. events instead.
Only open/cancel orders cause more requests via Script.

Does the software offers the possibility of configuring a trading BOT? Are you guys using it to help with arbitrage trading? Is it safe to use?


Current version not supports arbitrage. It will com in future updates.

Hi guys,

i'm rather a newbie in JL scripting and i have the following question:

JL script offers me a function to get the BTC volume for the last 10 Minutes.

Code:
var tenMinVol = trader.get("10MinVolume")

My question is now, how can i implement this for 1, 3, 5, 15 Minutes and so on.
I can't see where I can get something like the last amount or something similiar.
Have I missed something?

My idea was to add last amount for a specific time, maybe with a timer and so I get the volume
of this specific time range.

Good idea or not?  Undecided
Any help is appreciated!

Greetz Aknot

PS: Sorry for my bad english, it's not my native language.  Embarrassed

This will be easy to do with upcoming update of JL Script.
You will able to use loop and query each historical trade to create own calculations.

Qt Bitcoin Trader
Verify digital signature of the app in the file properties every time you download it.
wdnj
Hero Member
*****
Offline Offline

Activity: 762
Merit: 500



View Profile
July 16, 2015, 03:56:13 PM
 #1305

tried install it on Debian VPS. but there error message
Code:
-bash: qmake: command not found
idee2013
Sr. Member
****
Offline Offline

Activity: 407
Merit: 250


View Profile
July 16, 2015, 11:17:00 PM
 #1306

Hi IGHOR,

i have made the update from 1.08. to 1.10.
until the 1.08 version you have made a very nice solution to avoid a big internet traffic when the orderbook tab/window was not open/active. Without the open tab QT was downloading only about 10Kb/s and was only downloading 150-200kb/s when the orderbook tab was open.
Now the new 1.10 version is downloading  150-200kb/s all the time even when the orderbook window ist not open. This is really heavy when qt is running 24/7.
Is there a setting to change it back in qt?

Have you plans to support Kraken?
IGHOR (OP)
Legendary
*
Offline Offline

Activity: 1035
Merit: 1065



View Profile WWW
July 16, 2015, 11:24:44 PM
 #1307

Hi IGHOR,

i have made the update from 1.08. to 1.10.
until the 1.08 version you have made a very nice solution to avoid a big internet traffic when the orderbook tab/window was not open/active. Without the open tab QT was downloading only about 10Kb/s and was only downloading 150-200kb/s when the orderbook tab was open.
Now the new 1.10 version is downloading  150-200kb/s all the time even when the orderbook windows ist not open. This is really heavy when qt is running 24/7.
Is there a setting to change it back in qt?

Have you plans to support Kraken?

Thanks, I'll check it out and fix. What is your exchange?
For now you can go to settings and set longer request interval, so it will cause lower traffic.
Also orderbook traffic depends on visible row count. You can set up 5 and traffic will be low also.

tried install it on Debian VPS. but there error message
Code:
-bash: qmake: command not found
tried install it on Debian VPS. but there error message
Code:
-bash: qmake: command not found

Installation

Windows: just download exe file and save it to safe place.

Install commands under Linux with Qt5 (Prefered):
Code:
sudo apt-get install g++ libssl-dev libglu1-mesa-dev qt5-qmake qtscript5-dev qtmultimedia5-dev
export QT_SELECT=5
qmake QtBitcoinTrader_Desktop.pro
make && make install && make clean

Qt Bitcoin Trader
Verify digital signature of the app in the file properties every time you download it.
idee2013
Sr. Member
****
Offline Offline

Activity: 407
Merit: 250


View Profile
July 17, 2015, 06:54:51 AM
 #1308

HI Ighor,

i use stamp. Thx for your reply

Have you plans to support Kraken?
wdnj
Hero Member
*****
Offline Offline

Activity: 762
Merit: 500



View Profile
July 17, 2015, 12:43:04 PM
 #1309

tried install it on Debian VPS. but there error message
Code:
-bash: qmake: command not found

Installation

Windows: just download exe file and save it to safe place.

Install commands under Linux with Qt5 (Prefered):
Code:
sudo apt-get install g++ libssl-dev libglu1-mesa-dev qt5-qmake qtscript5-dev qtmultimedia5-dev
export QT_SELECT=5
qmake QtBitcoinTrader_Desktop.pro
make && make install && make clean
Code:
Cannot find file: QtBitcoinTrader_Desktop.pro.
Askit2
Hero Member
*****
Offline Offline

Activity: 981
Merit: 500


DIV - Your "Virtual Life" Secured and Decentralize


View Profile
July 21, 2015, 08:53:31 AM
Last edit: July 21, 2015, 08:53:18 PM by Askit2
 #1310

tried install it on Debian VPS. but there error message
Code:
-bash: qmake: command not found

Installation

Windows: just download exe file and save it to safe place.

Install commands under Linux with Qt5 (Prefered):
Code:
sudo apt-get install g++ libssl-dev libglu1-mesa-dev qt5-qmake qtscript5-dev qtmultimedia5-dev
export QT_SELECT=5
qmake QtBitcoinTrader_Desktop.pro
make && make install && make clean
Code:
Cannot find file: QtBitcoinTrader_Desktop.pro.

Any chance you already cloned the git repository? If not then you would need to do that. I might post some code for it tomorrow it's on a different computer so I'm too lazy to post it now.

Edit:
Code:
git clone https://github.com/JulyIGHOR/QtBitcoinTrader/tree/testing

That will put the whole project in whatever folder you are in when you run it making a sub folder called QtBitcoinTrader. Once you have run that once the following code will grab the current version. I'm sure you don't need the last 4 lines but it should work great. I have it in a .sh file.


Code:

git fetch --all

git merge

git checkout master

cd src

qmake QtBitcoinTrader_Desktop.pro

make

make install


          ▄▄
        ▄█▀▀█▄
      ▄█▀ ▄▄ ▀█▄
      ▀ ▄████▄ ▀
   ▄▀ ▄ ▀████▀ ▄ ▀▄
 ▄▀ ▄███▄ ▀▀ ▄███▄ ▀▄
█  ███████  ███████  █
 ▀▄ ▀███▀ ▄▄ ▀███▀ ▄▀

   ▀▄ ▀ ▄████▄ ▀ ▄▀
      ▄ ▀████▀ ▄
      ▀█▄ ▀▀ ▄█▀
        ▀█▄▄█▀
          ▀▀
███████████████████████████████████████████████████████████████████
██████▀▀▀▀▀▀▀▀▀▀▀██████████▀▀▀▀▀████▀▀▀▀▀█████▀▀▀▀█████▀▀▀▀▀███████
██████            ▀████████     ████     █████    █████     ███████
██████     ▄▄▄▄▄    ▀██████     █████    ████      ████    ████████
██████     ██████▄    █████     █████    ▀██▀  ▄▄  ▀██▀    ████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████     █   ██   █     █████████
██████     █████▀    ██████     ███████       ████       ██████████
██████     ▀▀▀▀▀    ▄██████     ████████     ██████     ███████████
██████            ▄████████     ████████     ██████     ███████████
██████▄▄▄▄▄▄▄▄▄▄▄██████████▄▄▄▄▄█████████▄▄▄▄██████▄▄▄▄████████████
███████████████████████████████████████████████████████████████████
.DIWtoken.com.
▄██████████████████▄
███       ▀███████
███       █████████
███       █████████
███       █████████
███              ██
███   ▄▄▄▄▄▄▄▄   ███
███   ▄▄▄▄▄▄▄▄   ███
███              ███
███▄▄▄▄▄▄▄▄▄▄▄▄▄▄███
██████████████████▀

▄██████████████████▄
███████████▀ ███████
█████████▀   ███████
███████▀     ██▀ ███
███ ▀▀       █▄▄████
███          █▀▀▀▀██
███ ▄▄       ███████
██████▄     █▄ ▀███
█████████▄   ███▄███
███████████▄ ███████
▀██████████████████▀

▄██████████████████▄
████████████████████
███████████████▀▀ ██
█████████▀▀     ███
████▀▀     ▄█▀   ███
███▄    ▄██      ███
█████████▀      ▄██
█████████▄     ████
█████████████▄ ▄████
████████████████████
▀██████████████████▀
......SECURITY DECENTRALIZED...
rangedriver
Hero Member
*****
Offline Offline

Activity: 714
Merit: 504



View Profile
July 21, 2015, 09:31:21 AM
 #1311

How about Poloniex support for Monero (XMR) trading?

I can donate to make this happen.

I'll think about it.


Awesome thanks!

I think Bitcoin Trader has the power to be pretty big.
wdnj
Hero Member
*****
Offline Offline

Activity: 762
Merit: 500



View Profile
July 22, 2015, 12:49:30 AM
 #1312

Code:
Cannot find file: QtBitcoinTrader_Desktop.pro.

Any chance you already cloned the git repository? If not then you would need to do that. I might post some code for it tomorrow it's on a different computer so I'm too lazy to post it now.

Edit:
Code:
git clone https://github.com/JulyIGHOR/QtBitcoinTrader/tree/testing

That will put the whole project in whatever folder you are in when you run it making a sub folder called QtBitcoinTrader. Once you have run that once the following code will grab the current version. I'm sure you don't need the last 4 lines but it should work great. I have it in a .sh file.


Code:

git fetch --all

git merge

git checkout master

cd src

qmake QtBitcoinTrader_Desktop.pro

make

make install

[/quote]
Code:
error: The requested URL returned error: 403 while accessing https://github.com/JulyIGHOR/QtBitcoinTrader/tree/testing/info/refs
fatal: HTTP request failed
Askit2
Hero Member
*****
Offline Offline

Activity: 981
Merit: 500


DIV - Your "Virtual Life" Secured and Decentralize


View Profile
July 22, 2015, 04:11:19 AM
 #1313

Code:
Cannot find file: QtBitcoinTrader_Desktop.pro.

Any chance you already cloned the git repository? If not then you would need to do that. I might post some code for it tomorrow it's on a different computer so I'm too lazy to post it now.

Edit:
Code:
git clone https://github.com/JulyIGHOR/QtBitcoinTrader/tree/testing

That will put the whole project in whatever folder you are in when you run it making a sub folder called QtBitcoinTrader. Once you have run that once the following code will grab the current version. I'm sure you don't need the last 4 lines but it should work great. I have it in a .sh file.


Code:

git fetch --all

git merge

git checkout master

cd src

qmake QtBitcoinTrader_Desktop.pro

make

make install

Code:
error: The requested URL returned error: 403 while accessing https://github.com/JulyIGHOR/QtBitcoinTrader/tree/testing/info/refs
fatal: HTTP request failed

Just as a really stupid question did you actually install git? You can't navigate to that page directly. You can go to https://github.com/JulyIGHOR/ then navigate from there but it isn't so easy to get all of the files required to actually make the project.

          ▄▄
        ▄█▀▀█▄
      ▄█▀ ▄▄ ▀█▄
      ▀ ▄████▄ ▀
   ▄▀ ▄ ▀████▀ ▄ ▀▄
 ▄▀ ▄███▄ ▀▀ ▄███▄ ▀▄
█  ███████  ███████  █
 ▀▄ ▀███▀ ▄▄ ▀███▀ ▄▀

   ▀▄ ▀ ▄████▄ ▀ ▄▀
      ▄ ▀████▀ ▄
      ▀█▄ ▀▀ ▄█▀
        ▀█▄▄█▀
          ▀▀
███████████████████████████████████████████████████████████████████
██████▀▀▀▀▀▀▀▀▀▀▀██████████▀▀▀▀▀████▀▀▀▀▀█████▀▀▀▀█████▀▀▀▀▀███████
██████            ▀████████     ████     █████    █████     ███████
██████     ▄▄▄▄▄    ▀██████     █████    ████      ████    ████████
██████     ██████▄    █████     █████    ▀██▀  ▄▄  ▀██▀    ████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████     █   ██   █     █████████
██████     █████▀    ██████     ███████       ████       ██████████
██████     ▀▀▀▀▀    ▄██████     ████████     ██████     ███████████
██████            ▄████████     ████████     ██████     ███████████
██████▄▄▄▄▄▄▄▄▄▄▄██████████▄▄▄▄▄█████████▄▄▄▄██████▄▄▄▄████████████
███████████████████████████████████████████████████████████████████
.DIWtoken.com.
▄██████████████████▄
███       ▀███████
███       █████████
███       █████████
███       █████████
███              ██
███   ▄▄▄▄▄▄▄▄   ███
███   ▄▄▄▄▄▄▄▄   ███
███              ███
███▄▄▄▄▄▄▄▄▄▄▄▄▄▄███
██████████████████▀

▄██████████████████▄
███████████▀ ███████
█████████▀   ███████
███████▀     ██▀ ███
███ ▀▀       █▄▄████
███          █▀▀▀▀██
███ ▄▄       ███████
██████▄     █▄ ▀███
█████████▄   ███▄███
███████████▄ ███████
▀██████████████████▀

▄██████████████████▄
████████████████████
███████████████▀▀ ██
█████████▀▀     ███
████▀▀     ▄█▀   ███
███▄    ▄██      ███
█████████▀      ▄██
█████████▄     ████
█████████████▄ ▄████
████████████████████
▀██████████████████▀
......SECURITY DECENTRALIZED...
Askit2
Hero Member
*****
Offline Offline

Activity: 981
Merit: 500


DIV - Your "Virtual Life" Secured and Decentralize


View Profile
August 03, 2015, 08:16:48 AM
Last edit: August 04, 2015, 04:35:47 AM by Askit2
 #1314

I shut down clean both Trading bots on my DVR. When I restarted them I got similar but not perfectly identical errors. It takes a while to get them back up and running. I am not sure that leaving them off for 24 hours while fixing WMC's guide should cause this.

Code:
------------------
2015-08-03 01:23:10 LVL:0
RCV: {"success":0,"error":"invalid nonce parameter; on key:3461973403, you sent:'667317011', you should send:3461973404"}
------------------

Windows 7, 64 bit
BTCtrader version: 1.10.01

Edit: I used the quit that is under The QtBitcoinTrader menu called Exit. Hotkey would be ALT+q then x or ALT+x. I'm not sure it shuts down properly. I have no proof of that. Just some limited test data of maybe 4 of 6 attempts to shut down that way failing.

          ▄▄
        ▄█▀▀█▄
      ▄█▀ ▄▄ ▀█▄
      ▀ ▄████▄ ▀
   ▄▀ ▄ ▀████▀ ▄ ▀▄
 ▄▀ ▄███▄ ▀▀ ▄███▄ ▀▄
█  ███████  ███████  █
 ▀▄ ▀███▀ ▄▄ ▀███▀ ▄▀

   ▀▄ ▀ ▄████▄ ▀ ▄▀
      ▄ ▀████▀ ▄
      ▀█▄ ▀▀ ▄█▀
        ▀█▄▄█▀
          ▀▀
███████████████████████████████████████████████████████████████████
██████▀▀▀▀▀▀▀▀▀▀▀██████████▀▀▀▀▀████▀▀▀▀▀█████▀▀▀▀█████▀▀▀▀▀███████
██████            ▀████████     ████     █████    █████     ███████
██████     ▄▄▄▄▄    ▀██████     █████    ████      ████    ████████
██████     ██████▄    █████     █████    ▀██▀  ▄▄  ▀██▀    ████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████     █   ██   █     █████████
██████     █████▀    ██████     ███████       ████       ██████████
██████     ▀▀▀▀▀    ▄██████     ████████     ██████     ███████████
██████            ▄████████     ████████     ██████     ███████████
██████▄▄▄▄▄▄▄▄▄▄▄██████████▄▄▄▄▄█████████▄▄▄▄██████▄▄▄▄████████████
███████████████████████████████████████████████████████████████████
.DIWtoken.com.
▄██████████████████▄
███       ▀███████
███       █████████
███       █████████
███       █████████
███              ██
███   ▄▄▄▄▄▄▄▄   ███
███   ▄▄▄▄▄▄▄▄   ███
███              ███
███▄▄▄▄▄▄▄▄▄▄▄▄▄▄███
██████████████████▀

▄██████████████████▄
███████████▀ ███████
█████████▀   ███████
███████▀     ██▀ ███
███ ▀▀       █▄▄████
███          █▀▀▀▀██
███ ▄▄       ███████
██████▄     █▄ ▀███
█████████▄   ███▄███
███████████▄ ███████
▀██████████████████▀

▄██████████████████▄
████████████████████
███████████████▀▀ ██
█████████▀▀     ███
████▀▀     ▄█▀   ███
███▄    ▄██      ███
█████████▀      ▄██
█████████▄     ████
█████████████▄ ▄████
████████████████████
▀██████████████████▀
......SECURITY DECENTRALIZED...
Askit2
Hero Member
*****
Offline Offline

Activity: 981
Merit: 500


DIV - Your "Virtual Life" Secured and Decentralize


View Profile
August 18, 2015, 09:11:36 AM
 #1315

Same no API account information issue. Had a crash Saturday. Have been too busy to copy everything to a notepad instance to keep trading logic while setting up a new profile from scratch.

Please add a way to update/change/modify the API keys. Even on the faster computer it is a very non zero time to fix. A button to sync with the servers "correct" challenge would be just perfect. Not having to start a new profile each time would be good. Trying to save trading logic while setting up a new profile for each of 2 API trading pairs is slow.

Bot works great. It really does. The new version seems less crash tolerant then previous versions.

Running 1.10.01
on Win 7, 64 bit

          ▄▄
        ▄█▀▀█▄
      ▄█▀ ▄▄ ▀█▄
      ▀ ▄████▄ ▀
   ▄▀ ▄ ▀████▀ ▄ ▀▄
 ▄▀ ▄███▄ ▀▀ ▄███▄ ▀▄
█  ███████  ███████  █
 ▀▄ ▀███▀ ▄▄ ▀███▀ ▄▀

   ▀▄ ▀ ▄████▄ ▀ ▄▀
      ▄ ▀████▀ ▄
      ▀█▄ ▀▀ ▄█▀
        ▀█▄▄█▀
          ▀▀
███████████████████████████████████████████████████████████████████
██████▀▀▀▀▀▀▀▀▀▀▀██████████▀▀▀▀▀████▀▀▀▀▀█████▀▀▀▀█████▀▀▀▀▀███████
██████            ▀████████     ████     █████    █████     ███████
██████     ▄▄▄▄▄    ▀██████     █████    ████      ████    ████████
██████     ██████▄    █████     █████    ▀██▀  ▄▄  ▀██▀    ████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████     █   ██   █     █████████
██████     █████▀    ██████     ███████       ████       ██████████
██████     ▀▀▀▀▀    ▄██████     ████████     ██████     ███████████
██████            ▄████████     ████████     ██████     ███████████
██████▄▄▄▄▄▄▄▄▄▄▄██████████▄▄▄▄▄█████████▄▄▄▄██████▄▄▄▄████████████
███████████████████████████████████████████████████████████████████
.DIWtoken.com.
▄██████████████████▄
███       ▀███████
███       █████████
███       █████████
███       █████████
███              ██
███   ▄▄▄▄▄▄▄▄   ███
███   ▄▄▄▄▄▄▄▄   ███
███              ███
███▄▄▄▄▄▄▄▄▄▄▄▄▄▄███
██████████████████▀

▄██████████████████▄
███████████▀ ███████
█████████▀   ███████
███████▀     ██▀ ███
███ ▀▀       █▄▄████
███          █▀▀▀▀██
███ ▄▄       ███████
██████▄     █▄ ▀███
█████████▄   ███▄███
███████████▄ ███████
▀██████████████████▀

▄██████████████████▄
████████████████████
███████████████▀▀ ██
█████████▀▀     ███
████▀▀     ▄█▀   ███
███▄    ▄██      ███
█████████▀      ▄██
█████████▄     ████
█████████████▄ ▄████
████████████████████
▀██████████████████▀
......SECURITY DECENTRALIZED...
IGHOR (OP)
Legendary
*
Offline Offline

Activity: 1035
Merit: 1065



View Profile WWW
August 18, 2015, 09:32:04 AM
 #1316

I shut down clean both Trading bots on my DVR. When I restarted them I got similar but not perfectly identical errors. It takes a while to get them back up and running. I am not sure that leaving them off for 24 hours while fixing WMC's guide should cause this.

Code:
------------------
2015-08-03 01:23:10 LVL:0
RCV: {"success":0,"error":"invalid nonce parameter; on key:3461973403, you sent:'667317011', you should send:3461973404"}
------------------

Windows 7, 64 bit
BTCtrader version: 1.10.01

Edit: I used the quit that is under The QtBitcoinTrader menu called Exit. Hotkey would be ALT+q then x or ALT+x. I'm not sure it shuts down properly. I have no proof of that. Just some limited test data of maybe 4 of 6 attempts to shut down that way failing.

It looks like you are using same API keys with different apps. Didn't you?
You should use only one API keys per app. Once you use API keys from Qt Bitcoin Trader in any other app, they will no longer works with Qt Bitcoin Trader.

I'll work to add options to change API keys.

Qt Bitcoin Trader
Verify digital signature of the app in the file properties every time you download it.
Askit2
Hero Member
*****
Offline Offline

Activity: 981
Merit: 500


DIV - Your "Virtual Life" Secured and Decentralize


View Profile
August 21, 2015, 09:34:27 AM
 #1317

I shut down clean both Trading bots on my DVR. When I restarted them I got similar but not perfectly identical errors. It takes a while to get them back up and running. I am not sure that leaving them off for 24 hours while fixing WMC's guide should cause this.

Code:
------------------
2015-08-03 01:23:10 LVL:0
RCV: {"success":0,"error":"invalid nonce parameter; on key:3461973403, you sent:'667317011', you should send:3461973404"}
------------------

Windows 7, 64 bit
BTCtrader version: 1.10.01

Edit: I used the quit that is under The QtBitcoinTrader menu called Exit. Hotkey would be ALT+q then x or ALT+x. I'm not sure it shuts down properly. I have no proof of that. Just some limited test data of maybe 4 of 6 attempts to shut down that way failing.

It looks like you are using same API keys with different apps. Didn't you?
You should use only one API keys per app. Once you use API keys from Qt Bitcoin Trader in any other app, they will no longer works with Qt Bitcoin Trader.

I'll work to add options to change API keys.
I wish I was using only one API key pair. I make one for BTC-NMC, one for BTC-USD, and one for NMC-USD. Each trading profile is named the same as the key pair started. So one is BTC-NMC, one is BTC-USD, the last one is NMC-USD. I only use the API key pair I setup for that profile when I create that profile. When I setup or create a new profile I add another API key pair for what I am interested in trading. Naming them thusly makes it simple to remove the key pair that failed to work and replace it. I used to have one additional one for on my phone but that app is unsupported and the trading portion was gone before the updates ended.

I did find an undocumented feature. I am not sure if its a bug. If I remove a profile lets call it NMC-USD. I leave the trader running that profile though or it doesn't work. Then I delete the profile NMC-USD. I then add a new profile. I use the same exchange, the same profile name exactly. I get a new key pair. Once I finish setting up the profile with the password I can try to open the "new" profile. It will say the profile is already in use. I then close the old profile and I start the "new" profile. The "new" NMC-USD has the script that I had already setup for my old NMC-USD profile. The only difference is the API key pair isn't dead to me and I get account data and can trade.

The problem is entirely when the trader isn't shut down cleanly I think. I know the last time the bot ran for a while. Well three bots ran for a while. The one on the raspberry pi has run for a long while. The one on the windows box ran until something went very wrong. I was checking if some shows would record later that night. I finished doing that. I think it was 2 hours later someone came outside and let me know that the DVR restarted. They asked if I had told it to. I had not. When I got done with that project enough to start up the bots that run on the DVR I had no balance and could not trade. I did however have the logged information I shared. I do not know what caused the crash. A few days later I did get time to copy everything out. On the first try I noticed that I had left the profile running and my trading logic seemed to survive the process. I didn't trust it. I shut it down and removed the key pair and started over making a new key pair and a new profile. On the second bot I did the same thing as the first time. NMC-USD isn't really profitable for me so I tried what was left after leaving the old profile running and creating it "new" in the background. Most setting did change. Network was defaulted as was the day/night mode. Still it has been running since.

I'm not sure why I am having trouble. Either my key pairs are being stolen precisely when my computer crashes or I decide to end processes on shutdown. Well it could be when I shut down or in the time before the machine is back to running and the bots are started. OR some shutdowns are not clean and the last value I sent to the server is not stored frequently enough and the bot starts incrementing/decrementing off of the wrong number. Since I only use the key pairs once and only on one profile I am not sure why they stop working on some close or crashes.

          ▄▄
        ▄█▀▀█▄
      ▄█▀ ▄▄ ▀█▄
      ▀ ▄████▄ ▀
   ▄▀ ▄ ▀████▀ ▄ ▀▄
 ▄▀ ▄███▄ ▀▀ ▄███▄ ▀▄
█  ███████  ███████  █
 ▀▄ ▀███▀ ▄▄ ▀███▀ ▄▀

   ▀▄ ▀ ▄████▄ ▀ ▄▀
      ▄ ▀████▀ ▄
      ▀█▄ ▀▀ ▄█▀
        ▀█▄▄█▀
          ▀▀
███████████████████████████████████████████████████████████████████
██████▀▀▀▀▀▀▀▀▀▀▀██████████▀▀▀▀▀████▀▀▀▀▀█████▀▀▀▀█████▀▀▀▀▀███████
██████            ▀████████     ████     █████    █████     ███████
██████     ▄▄▄▄▄    ▀██████     █████    ████      ████    ████████
██████     ██████▄    █████     █████    ▀██▀  ▄▄  ▀██▀    ████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████     █   ██   █     █████████
██████     █████▀    ██████     ███████       ████       ██████████
██████     ▀▀▀▀▀    ▄██████     ████████     ██████     ███████████
██████            ▄████████     ████████     ██████     ███████████
██████▄▄▄▄▄▄▄▄▄▄▄██████████▄▄▄▄▄█████████▄▄▄▄██████▄▄▄▄████████████
███████████████████████████████████████████████████████████████████
.DIWtoken.com.
▄██████████████████▄
███       ▀███████
███       █████████
███       █████████
███       █████████
███              ██
███   ▄▄▄▄▄▄▄▄   ███
███   ▄▄▄▄▄▄▄▄   ███
███              ███
███▄▄▄▄▄▄▄▄▄▄▄▄▄▄███
██████████████████▀

▄██████████████████▄
███████████▀ ███████
█████████▀   ███████
███████▀     ██▀ ███
███ ▀▀       █▄▄████
███          █▀▀▀▀██
███ ▄▄       ███████
██████▄     █▄ ▀███
█████████▄   ███▄███
███████████▄ ███████
▀██████████████████▀

▄██████████████████▄
████████████████████
███████████████▀▀ ██
█████████▀▀     ███
████▀▀     ▄█▀   ███
███▄    ▄██      ███
█████████▀      ▄██
█████████▄     ████
█████████████▄ ▄████
████████████████████
▀██████████████████▀
......SECURITY DECENTRALIZED...
eternalgloom
Legendary
*
Offline Offline

Activity: 1792
Merit: 1283



View Profile WWW
August 22, 2015, 02:36:20 AM
 #1318

Would you recommend this trading bot for beginners?
Would you have to program your own strategies or are there presets available?

djuby
Newbie
*
Offline Offline

Activity: 2
Merit: 0


View Profile
August 25, 2015, 01:25:20 PM
 #1319

Hi IGHOR,

Running v1.10.01 and I noticed that after a while (1-2 days) the "Last Trades" log is empty and does not register any new trades. After restart the app does not get my info from the exchange - "My Transactions" is empty, Balances and Open Orders as well. If I go to the exchange and create new API key all works for a day or two then the same thing happens again. Exchange is BTC-E.

Best regards,
Djuby
Askit2
Hero Member
*****
Offline Offline

Activity: 981
Merit: 500


DIV - Your "Virtual Life" Secured and Decentralize


View Profile
August 28, 2015, 09:33:24 AM
 #1320

I shut down clean both Trading bots on my DVR. When I restarted them I got similar but not perfectly identical errors. It takes a while to get them back up and running. I am not sure that leaving them off for 24 hours while fixing WMC's guide should cause this.

Code:
------------------
2015-08-03 01:23:10 LVL:0
RCV: {"success":0,"error":"invalid nonce parameter; on key:3461973403, you sent:'667317011', you should send:3461973404"}
------------------

Windows 7, 64 bit
BTCtrader version: 1.10.01

Edit: I used the quit that is under The QtBitcoinTrader menu called Exit. Hotkey would be ALT+q then x or ALT+x. I'm not sure it shuts down properly. I have no proof of that. Just some limited test data of maybe 4 of 6 attempts to shut down that way failing.

It looks like you are using same API keys with different apps. Didn't you?
You should use only one API keys per app. Once you use API keys from Qt Bitcoin Trader in any other app, they will no longer works with Qt Bitcoin Trader.

I'll work to add options to change API keys.
I wish I was using only one API key pair. I make one for BTC-NMC, one for BTC-USD, and one for NMC-USD. Each trading profile is named the same as the key pair started. So one is BTC-NMC, one is BTC-USD, the last one is NMC-USD. I only use the API key pair I setup for that profile when I create that profile. When I setup or create a new profile I add another API key pair for what I am interested in trading. Naming them thusly makes it simple to remove the key pair that failed to work and replace it. I used to have one additional one for on my phone but that app is unsupported and the trading portion was gone before the updates ended.

I did find an undocumented feature. I am not sure if its a bug. If I remove a profile lets call it NMC-USD. I leave the trader running that profile though or it doesn't work. Then I delete the profile NMC-USD. I then add a new profile. I use the same exchange, the same profile name exactly. I get a new key pair. Once I finish setting up the profile with the password I can try to open the "new" profile. It will say the profile is already in use. I then close the old profile and I start the "new" profile. The "new" NMC-USD has the script that I had already setup for my old NMC-USD profile. The only difference is the API key pair isn't dead to me and I get account data and can trade.

The problem is entirely when the trader isn't shut down cleanly I think. I know the last time the bot ran for a while. Well three bots ran for a while. The one on the raspberry pi has run for a long while. The one on the windows box ran until something went very wrong. I was checking if some shows would record later that night. I finished doing that. I think it was 2 hours later someone came outside and let me know that the DVR restarted. They asked if I had told it to. I had not. When I got done with that project enough to start up the bots that run on the DVR I had no balance and could not trade. I did however have the logged information I shared. I do not know what caused the crash. A few days later I did get time to copy everything out. On the first try I noticed that I had left the profile running and my trading logic seemed to survive the process. I didn't trust it. I shut it down and removed the key pair and started over making a new key pair and a new profile. On the second bot I did the same thing as the first time. NMC-USD isn't really profitable for me so I tried what was left after leaving the old profile running and creating it "new" in the background. Most setting did change. Network was defaulted as was the day/night mode. Still it has been running since.

I'm not sure why I am having trouble. Either my key pairs are being stolen precisely when my computer crashes or I decide to end processes on shutdown. Well it could be when I shut down or in the time before the machine is back to running and the bots are started. OR some shutdowns are not clean and the last value I sent to the server is not stored frequently enough and the bot starts incrementing/decrementing off of the wrong number. Since I only use the key pairs once and only on one profile I am not sure why they stop working on some close or crashes.
I'm going to start with my issue first. Ok so my DVR for some reason disables my network connection 3. That connection only has a CableCard tuner on it. I have found no way to actually enable it. Telling windows to enable it is a waste of time. Windows goes through the motions and says enabled but the connection stays disabled. Up to this point all information is unrelated to the problem. To correct the connection being disabled I have to restart the system. So after around 8 days of working the 2 trading instances with their 2 separate API key pairs where closed. The red X on the USD/BTC and the exit under QtBitcoinTrader for USD/NMC. The restart took longer then I had hoped. Somewhere around 3 hours with a driver install and apparently a week worth of updates. When I did get the computer back running I started the trading bots. Both bots have the same broken API key pair. Both bots will need setup again. I'm not sure why. If I had reused a key pair then they wouldn't run for a bit over a week. On the other hand I can't imagine anything except BTC-e or QTT being the reason I can't stop the bots and restart the computer. Possibly you have an idea where to look.

The OS or some underlying parts of it need restarted frequently enough to be maddening. Obviously it will not run indefinitely. So a restart will be required at some point. The bot failing at restart with:
Code:
2015-08-28 03:28:50 LVL:0
RCV: {"success":0,"error":"invalid nonce parameter; on key:3461615370, you sent:'688992411', you should send:3461615371"}
is not really a long term solution. I guess buying better hardware for Linux would allow me to use one computer for all 3 currency pairs. This would not fix the issue. This would just stop the maybe 30 days before a restart was required. The time between restarts is less of a calendar then an underlying network failure after some amount of time in operation issue.
Win 7 64 bit.
QTT Ver. 1.10.01
Exchange BTC-e

          ▄▄
        ▄█▀▀█▄
      ▄█▀ ▄▄ ▀█▄
      ▀ ▄████▄ ▀
   ▄▀ ▄ ▀████▀ ▄ ▀▄
 ▄▀ ▄███▄ ▀▀ ▄███▄ ▀▄
█  ███████  ███████  █
 ▀▄ ▀███▀ ▄▄ ▀███▀ ▄▀

   ▀▄ ▀ ▄████▄ ▀ ▄▀
      ▄ ▀████▀ ▄
      ▀█▄ ▀▀ ▄█▀
        ▀█▄▄█▀
          ▀▀
███████████████████████████████████████████████████████████████████
██████▀▀▀▀▀▀▀▀▀▀▀██████████▀▀▀▀▀████▀▀▀▀▀█████▀▀▀▀█████▀▀▀▀▀███████
██████            ▀████████     ████     █████    █████     ███████
██████     ▄▄▄▄▄    ▀██████     █████    ████      ████    ████████
██████     ██████▄    █████     █████    ▀██▀  ▄▄  ▀██▀    ████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████    ██   ██   ██    █████████
██████     ███████    █████     ██████     █   ██   █     █████████
██████     █████▀    ██████     ███████       ████       ██████████
██████     ▀▀▀▀▀    ▄██████     ████████     ██████     ███████████
██████            ▄████████     ████████     ██████     ███████████
██████▄▄▄▄▄▄▄▄▄▄▄██████████▄▄▄▄▄█████████▄▄▄▄██████▄▄▄▄████████████
███████████████████████████████████████████████████████████████████
.DIWtoken.com.
▄██████████████████▄
███       ▀███████
███       █████████
███       █████████
███       █████████
███              ██
███   ▄▄▄▄▄▄▄▄   ███
███   ▄▄▄▄▄▄▄▄   ███
███              ███
███▄▄▄▄▄▄▄▄▄▄▄▄▄▄███
██████████████████▀

▄██████████████████▄
███████████▀ ███████
█████████▀   ███████
███████▀     ██▀ ███
███ ▀▀       █▄▄████
███          █▀▀▀▀██
███ ▄▄       ███████
██████▄     █▄ ▀███
█████████▄   ███▄███
███████████▄ ███████
▀██████████████████▀

▄██████████████████▄
████████████████████
███████████████▀▀ ██
█████████▀▀     ███
████▀▀     ▄█▀   ███
███▄    ▄██      ███
█████████▀      ▄██
█████████▄     ████
█████████████▄ ▄████
████████████████████
▀██████████████████▀
......SECURITY DECENTRALIZED...
Pages: « 1 ... 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 [66] 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 »
  Print  
 
Jump to:  

Powered by MySQL Powered by PHP Powered by SMF 1.1.19 | SMF © 2006-2009, Simple Machines Valid XHTML 1.0! Valid CSS!