Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
Show all changes
29 commits
Select commit Hold shift + click to select a range
b88dd38
get kraken authentication and retrieve balances
iamzoltan Aug 24, 2021
184edb2
wrap api method calls with uri and nonce value
iamzoltan Aug 26, 2021
e12af8a
Add get_ledger function; parses raw ledger from kraken api
iamzoltan Aug 26, 2021
88061d8
Add balance to the ledger
iamzoltan Aug 28, 2021
0285a84
Store changes for rebase, positions prototype
iamzoltan Sep 7, 2021
ef59844
get positions from trades
iamzoltan Oct 28, 2021
48c7b52
get positions working for kraken
iamzoltan Oct 29, 2021
3d2be36
save progress on kraken to test out unit_select_fixes
iamzoltan Nov 4, 2021
1fe1f88
added the bones for the handle_order_requests func
iamzoltan Jan 26, 2022
b55debb
get basic order request loop receiving msgs
iamzoltan Feb 8, 2022
66da585
mock orders validated from kraken
iamzoltan Feb 8, 2022
b21bbf5
valdiate and ack order requests from ems
iamzoltan Feb 8, 2022
96dd5c6
basic order submission and cancelling with kraken
iamzoltan Feb 9, 2022
03d2edd
order submission and cancellation working
iamzoltan Feb 9, 2022
0c90592
connect to krakens openOrders websocket
iamzoltan Feb 10, 2022
0122669
Factor out ws msg hearbeat and error handling
goodboy Feb 11, 2022
6c54c81
get stashed changes
iamzoltan Feb 14, 2022
d826a66
use a mapping from userref to oid for order ack
iamzoltan Feb 17, 2022
46948e0
add order cancel support over websockets
iamzoltan Feb 17, 2022
b1bff1b
remove ws support for orders, use rest api instead for easy oid assoc…
iamzoltan Feb 19, 2022
ee0be13
repurpose ws code for ownTrades stream, get trade authentication going
iamzoltan Feb 19, 2022
a3345db
cleaned up code and added loop to grab all trades for position calcs
iamzoltan Mar 1, 2022
617bf3e
fix typo and get rid of pprint of ws stream
iamzoltan Mar 1, 2022
fd0acd2
refactory based on github comments, change doc string style
iamzoltan Mar 6, 2022
1525c64
refactor get_positions into get_trades, and refactor pack_position wi…
iamzoltan Mar 20, 2022
cb8e97a
address latest comments, refactor the pack position function
iamzoltan Mar 23, 2022
2baa1b4
fix hang when kraken is not in config
iamzoltan Mar 28, 2022
c2e654a
change logic order for handling no config case
iamzoltan Apr 7, 2022
cb970ce
dark order gui patch, add filled status message
iamzoltan Apr 8, 2022
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions config/brokers.toml
Original file line number Diff line number Diff line change
Expand Up @@ -8,8 +8,8 @@ expires_at = 1616095326.355846

[kraken]
key_descr = "api_0"
public_key = ""
private_key = ""
api_key = ""
secret = ""

[ib]
host = "127.0.0.1"
Expand Down
Loading