Bitcoin Forum
April 27, 2024, 10:57:03 AM *
News: Latest Bitcoin Core release: 27.0 [Torrent]
 
   Home   Help Search Login Register More  
Pages: « 1 ... 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 383268 times)
hilbert.rozenbaum
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
March 20, 2022, 02:54:16 AM
Last edit: March 20, 2022, 04:22:48 AM by hilbert.rozenbaum
 #1641

Hi!

I'm trying to build QTTrader myself and getting this error:

Code:
script/rulesmodel.cpp: In member function ‘void RulesModel::swapRows(int, int)’:
script/rulesmodel.cpp:241:15: error: ‘class QList<bool>’ has no member named ‘swapItemsAt’
  241 |     pauseList.swapItemsAt(a, b);
      |               ^~~~~~~~~~~
script/rulesmodel.cpp:242:15: error: ‘class QList<int>’ has no member named ‘swapItemsAt’
  242 |     stateList.swapItemsAt(a, b);
      |               ^~~~~~~~~~~
script/rulesmodel.cpp:243:16: error: ‘class QList<ScriptObject*>’ has no member named ‘swapItemsAt’
  243 |     scriptList.swapItemsAt(a, b);
      |                ^~~~~~~~~~~
script/rulesmodel.cpp:244:16: error: ‘class QList<RuleHolder>’ has no member named ‘swapItemsAt’
  244 |     holderList.swapItemsAt(a, b);
      |                ^~~~~~~~~~~
script/rulesmodel.cpp:245:14: error: ‘class QList<unsigned int>’ has no member named ‘swapItemsAt’
  245 |     doneList.swapItemsAt(a, b);
      |              ^~~~~~~~~~~
make: *** [Makefile:1938: .obj/rulesmodel.o] Error 1

Can you help me to figure out what is happening?

P.S. I'm building it on linux mint 20.3
The forum was founded in 2009 by Satoshi and Sirius. It replaced a SourceForge forum.
Advertised sites are not endorsed by the Bitcoin Forum. They may be unsafe, untrustworthy, or illegal in your jurisdiction.
1714215423
Hero Member
*
Offline Offline

Posts: 1714215423

View Profile Personal Message (Offline)

Ignore
1714215423
Reply with quote  #2

1714215423
Report to moderator
1714215423
Hero Member
*
Offline Offline

Posts: 1714215423

View Profile Personal Message (Offline)

Ignore
1714215423
Reply with quote  #2

1714215423
Report to moderator
1714215423
Hero Member
*
Offline Offline

Posts: 1714215423

View Profile Personal Message (Offline)

Ignore
1714215423
Reply with quote  #2

1714215423
Report to moderator
hilbert.rozenbaum
Newbie
*
Offline Offline

Activity: 3
Merit: 0


View Profile
March 20, 2022, 12:54:30 PM
 #1642


I never use this software, but you clearly don't give enough information. For example,
1. What command did you use? Did you follow complication guide from https://github.com/JulyIghor/QtBitcoinTrader#compilation-on-linux?
2. What is version of installed library (such as Qt and OpenSSL)? You can use dpkg -l [<pattern>...] to find out.
3. Which commit or branch did you use?

P.S. since OP only open this forum occasionally, you might want to ask help at the GitHub repository (https://github.com/JulyIghor/QtBitcoinTrader) instead.

Thanks for your reply.
I opened an issue on GitHub.
IGHOR (OP)
Legendary
*
Offline Offline

Activity: 1035
Merit: 1065



View Profile WWW
October 12, 2022, 07:59:29 AM
 #1643

v1.42.00 Released!
• Fixed crash while running some scripts, rules
• Updated API integration to fix Bitstamp, Poloniex and Bittrex
• Fixed a bug when trade history stays empty
• Fixed UI bugs

Qt Bitcoin Trader
Verify digital signature of the app in the file properties every time you download it.
IGHOR (OP)
Legendary
*
Offline Offline

Activity: 1035
Merit: 1065



View Profile WWW
December 31, 2022, 05:20:57 AM
 #1644

v1.42.10 Released!
- Updated API integration to fix Bitstamp and Poloniex
- Synchronized currency pairs

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

Activity: 4
Merit: 0


View Profile
February 16, 2023, 07:52:19 PM
 #1645

Hello,

Is it possible to add an Event/Function "LastMyPrice" wchich would by a combination of "LastMyBuyPrice" and "LastMySellPrice". What I mean is to get value of my last transaction without separating it to ask or bid.

   Egsample 1:

10:00 0.1 BTC sold     at 3700 $
  9:50 0.2 BTC sold     at 3500 $
  9:40 0.1 BTC bought at 3400 $

"LastMyPrice" is 3700.

   Egsample 2:

10:00 0.1 BTC bought at 2500 $
  9:50 0.2 BTC sold     at 3000 $
  9:40 0.1 BTC bought at 2700 $

"LastMyPrice" is 2500.

Existing Event/Function "MyLastTrade" is without value of the transaction.

You will able to fetch and analyze separated orders in next version of script language.

I'm refreshing the topic. Is there any possibility to select the transaction value of my last order whether it is a buy or a sell? Maybe it's possible to use, for example, javascript commands? At the moment I am using this script:

Code:
if (Math.abs(trader.get("LastMyBuyPrice") - trader.get("LastPrice")) < Math.abs(trader.get("LastMySellPrice") - trader.get("LastPrice")))
{
var MojOstatniKurs_ASTBTC = trader.get("LastMyBuyPrice");
}

if (Math.abs(trader.get("LastMyBuyPrice") - trader.get("LastPrice")) > Math.abs(trader.get("LastMySellPrice") - trader.get("LastPrice")))
{
var MojOstatniKurs_ASTBTC = trader.get("LastMySellPrice");
}

but I realize that this is not an optimal solution due to exchange rate fluctuations between LastMyBuyPrice and LastMySellPrice.
IGHOR (OP)
Legendary
*
Offline Offline

Activity: 1035
Merit: 1065



View Profile WWW
March 06, 2023, 07:54:51 AM
Merited by seoincorporation (2)
 #1646

I'm refreshing the topic. Is there any possibility to select the transaction value of my last order whether it is a buy or a sell? Maybe it's possible to use, for example, javascript commands? At the moment I am using this script:

Hi, it isn't possible in current version.
Qt Trader 2.0 will bring more features including that one.

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

Activity: 3136
Merit: 2913


Top Crypto Casino


View Profile
March 06, 2023, 03:11:57 PM
 #1647

Hi, it isn't possible in current version.
Qt Trader 2.0 will bring more features including that one.

Qt Trader 2.0, wow that's some awesome news! Is there any ETA?

I see in the main post of this thread you have a link to the Qt trader 2.0, but when I follow the link I get to:

https://centrabit.com/releases.html

And I can't see there the version 2.0, so, i can imagine it will be released soon. so, i will keep one eye on this thread, so excited for testing the new version.

█████████████████████████
████▐██▄█████████████████
████▐██████▄▄▄███████████
████▐████▄█████▄▄████████
████▐█████▀▀▀▀▀███▄██████
████▐███▀████████████████
████▐█████████▄█████▌████
████▐██▌█████▀██████▌████
████▐██████████▀████▌████
█████▀███▄█████▄███▀█████
███████▀█████████▀███████
██████████▀███▀██████████
█████████████████████████
.
BC.GAME
▄▄░░░▄▀▀▄████████
▄▄▄
██████████████
█████░░▄▄▄▄████████
▄▄▄▄▄▄▄▄▄██▄██████▄▄▄▄████
▄███▄█▄▄██████████▄████▄████
███████████████████████████▀███
▀████▄██▄██▄░░░░▄████████████
▀▀▀█████▄▄▄███████████▀██
███████████████████▀██
███████████████████▄██
▄███████████████████▄██
█████████████████████▀██
██████████████████████▄
.
..CASINO....SPORTS....RACING..
█░░░░░░█░░░░░░█
▀███▀░░▀███▀░░▀███▀
▀░▀░░░░▀░▀░░░░▀░▀
░░░░░░░░░░░░
▀██████████
░░░░░███░░░░
░░█░░░███▄█░░░
░░██▌░░███░▀░░██▌
░█░██░░███░░░█░██
░█▀▀▀█▌░███░░█▀▀▀█▌
▄█▄░░░██▄███▄█▄░░▄██▄
▄███▄
░░░░▀██▄▀


▄▄████▄▄
▄███▀▀███▄
██████████
▀███▄░▄██▀
▄▄████▄▄░▀█▀▄██▀▄▄████▄▄
▄███▀▀▀████▄▄██▀▄███▀▀███▄
███████▄▄▀▀████▄▄▀▀███████
▀███▄▄███▀░░░▀▀████▄▄▄███▀
▀▀████▀▀████████▀▀████▀▀
IGHOR (OP)
Legendary
*
Offline Offline

Activity: 1035
Merit: 1065



View Profile WWW
May 24, 2023, 05:12:26 PM
 #1648

v1.42.20 Released!

- Updated API integration for Poloniex
- Fixed trade history issue in Bitfinex
- Synchronized currency pairs

Qt Bitcoin Trader
Verify digital signature of the app in the file properties every time you download it.
IGHOR (OP)
Legendary
*
Offline Offline

Activity: 1035
Merit: 1065



View Profile WWW
December 07, 2023, 06:52:43 AM
 #1649

v1.42.22 Released!

- Fixed Bitfinex history
- Fixed Bitstamp depth
- Pairs synchronised
- Removed Indacoin exchange

Qt Bitcoin Trader
Verify digital signature of the app in the file properties every time you download it.
Pages: « 1 ... 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!