Pages:
Author

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

legendary
Activity: 1035
Merit: 1065
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"


Sorry for this. But new version does not supports old rules.
Here is old app https://dl.dropboxusercontent.com/u/860231/QtBitcoinTrader_Old.exe
Run it, you will see old rules in readable format, then make the same rules in new app by looking on old app.
newbie
Activity: 7
Merit: 0
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"
legendary
Activity: 1035
Merit: 1065
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

Sorry for this, but in old rules ask and bid was swapped, so now all correct. Just start old app version, and write down your rules to transfer them to new app.
newbie
Activity: 7
Merit: 0
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
legendary
Activity: 1035
Merit: 1065
v1.07.99 Bugfix 5 Released.

Fixed rules bugs.
Added feature Text to Speech.

Now you can use script code like this:

Code:
trader.say("Current price is",trader.get("LastPrice"));

trader.on("LastPrice").changed()
{
trader.say("Current price is",value);
}

And it will spell each price change.

This works for rules too, but only for Windows and Mac. Linux implementation is to run "say" command with parameters. So you feel free to find your own speech solution and make symlink to app named "say".
legendary
Activity: 1035
Merit: 1065
I have only 3 options for price "Last My Buy Price", "Last My Sell Price", "Exact Value".
I had it set for bid price. I think this may have lead to my issue of the same price or only a small adjustment. I am curious where the other prices went.

EDIT: I had to redo the code several times as every time I go in to edit my rule % becomes unchecked. I am not sure why but it makes a quick change very difficult.

Thanks. I'll fix it.
hero member
Activity: 981
Merit: 500
DIV - Your "Virtual Life" Secured and Decentralize
I have no crash window. It is just gone. I had previously disabled the JIT debugger as it kept my cgminer script from stopping and restarting reliably.

I have an actual rules issue too the +, - 1% is changing up and down 1$ at 496 that isn't 1%.

Press edit rule and click on checkbox left bottom. Send me script generated by your rule.

Code:
var baseVariable = calcBaseVariable();
function calcBaseVariable()
{
 baseVariable = trader.get("BTCUSD" , "LastMyBuyPrice");
 baseVariable += baseVariable*0.01;
 return baseVariable;
}

trader.on("BidPrice").changed()
{
 if(symbol != "BTCUSD")return;
 calcBaseVariable();
 if(value > baseVariable)
 {
 var amount = 0.01;

 var price = trader.get("BTCUSD" , "LastMyBuyPrice");
 price += price * 0.0000000001;

 trader.sell("BTCUSD" , amount , price);
 trader.groupDone();
 }
}


I have only 3 options for price "Last My Buy Price", "Last My Sell Price", "Exact Value".
I had it set for bid price. I think this may have lead to my issue of the same price or only a small adjustment. I am curious where the other prices went.

EDIT: I had to redo the code several times as every time I go in to edit my rule % becomes unchecked. I am not sure why but it makes a quick change very difficult.
legendary
Activity: 1035
Merit: 1065
I have no crash window. It is just gone. I had previously disabled the JIT debugger as it kept my cgminer script from stopping and restarting reliably.

I have an actual rules issue too the +, - 1% is changing up and down 1$ at 496 that isn't 1%.

Press edit rule and click on checkbox left bottom. Send me script generated by your rule.
hero member
Activity: 981
Merit: 500
DIV - Your "Virtual Life" Secured and Decentralize
It appears my hope to save my rules on one of two instances kept me from updating the first instance. I did finally stop all running versions. I installed bugfix 2. Since then I have had another 6 crashes. They mainly seem to be when one of my conditions is true.

It seems to fail on a sell order of bitcoins to USD on BTCe. I have an appropriate minimum as it does sometimes go through. It seems that when editing a different rule while the sell is active and either clicking save or just having it open precedes the crash. I think it is an attempted sell during the save (and subsequent enabling of) the same rule. The only flaw in my supposition is that even if I was saving the rule as enabled I should see the sell order place. I do not see a valid sell order come up or in my history.

Thanks. I'm working on it.
Can you give me screenshot of crash window?

I have no crash window. It is just gone. I had previously disabled the JIT debugger as it kept my cgminer script from stopping and restarting reliably.

I have an actual rules issue too the +, - 1% is changing up and down 1$ at 496 that isn't 1%.
legendary
Activity: 1035
Merit: 1065
Bugfix 4 released.

Critical bug fixed. Auto update engine is now working correctly.

Old engine was based on github txt file, now github changed all domains and it will not works any more.
Thats why auto update not works for users who use version below 1.07.98.
Users on 1.07.98 who failed to update 3 times will never receive update message.

So all users who can't update to 1.07.99 should download and install manually and next auto updates will works fine.
legendary
Activity: 1035
Merit: 1065
I think 10 min. Volume is bugged. Its 0.0 for me while trades are happening. For BTC-E

Fixed.
newbie
Activity: 4
Merit: 0
I think 10 min. Volume is bugged. Its 0.0 for me while trades are happening. For BTC-E
legendary
Activity: 1035
Merit: 1065
Released v1.07.99 Bugfix3

Fixed trading bugs. Password bugs and All in buttons bug.
newbie
Activity: 4
Merit: 0

It is fixed 1.0.7.99.3 version. Does it works or not?

I downloaded the latest version from sourceforce but Its still the same. I checked for updates, program says it is up to date. I think I just can't get rid of older versions remnants which somehow screws up the whole thing.

Can you tell me how can I do a clean install of this program? I think the problem lies in there for me.

Edit: Nevermind, It just installed the update and it seems everything is fixed. Thank you for this useful program.
legendary
Activity: 1035
Merit: 1065
Thanks for the file. But when I open it the program shows that it is  1.0.7.99 and its still bugged. I think some files remaining from previous installation is causing this, but I'm not sure.

I cannot open the program in v.98 I deleted all the files I found that was related to old qt bitcoin trader, but it still opens v99.

It is fixed 1.0.7.99.3 version. Does it works or not?
newbie
Activity: 4
Merit: 0
Can you upload the older version while you work on this one?

I cannot input anything to buy and sell, neither the price nor the amount.

Hi. Please confirm does this build works for you: https[Suspicious link removed]

Thanks for the file. But when I open it the program shows that it is  1.0.7.99 and its still bugged. I think some files remaining from previous installation is causing this, but I'm not sure.

I cannot open the program in v.98 I deleted all the files I found that was related to old qt bitcoin trader, but it still opens v99.
hero member
Activity: 504
Merit: 500
sucker got hacked and screwed --Toad
legendary
Activity: 1035
Merit: 1065
It appears my hope to save my rules on one of two instances kept me from updating the first instance. I did finally stop all running versions. I installed bugfix 2. Since then I have had another 6 crashes. They mainly seem to be when one of my conditions is true.

It seems to fail on a sell order of bitcoins to USD on BTCe. I have an appropriate minimum as it does sometimes go through. It seems that when editing a different rule while the sell is active and either clicking save or just having it open precedes the crash. I think it is an attempted sell during the save (and subsequent enabling of) the same rule. The only flaw in my supposition is that even if I was saving the rule as enabled I should see the sell order place. I do not see a valid sell order come up or in my history.

Thanks. I'm working on it.
Can you give me screenshot of crash window?
legendary
Activity: 1035
Merit: 1065
Can you upload the older version while you work on this one?

I cannot input anything to buy and sell, neither the price nor the amount.

Hi. Please confirm does this build works for you: https://dl.dropboxusercontent.com/u/860231/QtBitcoinTrader.exe
newbie
Activity: 4
Merit: 0
Can you upload the older version while you work on this one?

I cannot input anything to buy and sell, neither the price nor the amount.
Pages:
Jump to: