Skip to content

Commit

Permalink
CITATION.cff updated
Browse files Browse the repository at this point in the history
  • Loading branch information
evgrmn committed Aug 28, 2024
1 parent 543ffb0 commit 941b78a
Show file tree
Hide file tree
Showing 5 changed files with 11 additions and 12 deletions.
4 changes: 2 additions & 2 deletions CITATION.cff
Original file line number Diff line number Diff line change
Expand Up @@ -10,5 +10,5 @@ abstract: >-
This software is designed for trading on the Bitmex.com
and Bybit.com marketplaces and allows you to control trade
balances and make transactions manually and automatically.
version: 24.6.0
date-released: '2024-06-04'
version: 24.8.0 Beta
date-released: '2024-08-28'
10 changes: 5 additions & 5 deletions display/bot_menu.py
Original file line number Diff line number Diff line change
Expand Up @@ -1025,10 +1025,10 @@ def update_bot_info(bot_name: str) -> None:

def init_bot_trades(bot_name: str) -> None:
"""
Creates a new instance of the TreeviewTable class for the specified bot
in a custom frame. All instances are stored in the trade_treeTable
dictionary, which is placed in the specified frame in the bot_trades_sub
dictionary. When bots are switched, the frames are also switched.
Creates a new instance of the TreeviewTable class for the specified bot
in a custom frame. All instances are stored in the trade_treeTable
dictionary, which is placed in the specified frame in the bot_trades_sub
dictionary. When bots are switched, the frames are also switched.
Finally, the specific frame is placed in the bot_note ttk notebook.
Parameters
Expand Down Expand Up @@ -1093,7 +1093,7 @@ def refresh_bot_orders():
if "No orders" in bot_tree.children:
bot_tree.delete(iid="No orders")
else:
bot_tree.insert(values=["No orders"], iid="No orders")
bot_tree.insert(values=["No orders"], iid="No orders")


def winfo_destroy() -> None:
Expand Down
7 changes: 3 additions & 4 deletions display/instructions.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,7 +46,7 @@
# called LotSize (float)
# btcusd.tickSize The step to increase/reduce order price (float)
#
# The full list of instrument parameters is in the common/data.py Instrument
# The full list of instrument parameters is in the common/data.py Instrument
# class
#
# 5. Add kline (candlestick) data to a specific instrument
Expand Down Expand Up @@ -106,10 +106,10 @@
# Example:
#
# Bitmex["XBTUSDT"].sell(bot=bot, move=True, cancel=True)
#
#
# 7.3 Setting limits
#
# Use set_limit() method to specify the position limits that the bot is
# Use set_limit() method to specify the position limits that the bot is
# allowed to trade on the instrument:
#
# Bitmex["XBTUSDT"].set_limit(bot=bot, limit=0.003)
Expand Down Expand Up @@ -142,4 +142,3 @@
#
#
#

2 changes: 1 addition & 1 deletion functions.py
Original file line number Diff line number Diff line change
Expand Up @@ -714,7 +714,7 @@ def refresh_tables(self: Markets) -> None:

tree = TreeTable.instrument

tm = datetime.now()
# d tm = datetime.now()
for num, symbol in enumerate(self.symbol_list):
instrument = self.Instrument[symbol]
compare = [
Expand Down
Binary file removed tmaticDark.png
Binary file not shown.

0 comments on commit 941b78a

Please sign in to comment.