Base Strategy¶
All strategies should inherit
stakemachine.basestrategy.BaseStrategy
which simplifies and
unifies the development of new strategies.
API¶
-
class
stakemachine.basestrategy.
BaseStrategy
(config, name, onAccount=None, onOrderMatched=None, onOrderPlaced=None, onMarketUpdate=None, onUpdateCallOrder=None, ontick=None, bitshares_instance=None, *args, **kwargs)¶ Base Strategy and methods available in all Sub Classes that inherit this BaseStrategy.
BaseStrategy inherits:
stakemachine.storage.Storage
stakemachine.statemachine.StateMachine
Events
Available attributes:
basestrategy.bitshares
: instance of ´`bitshares.BitShares()``basestrategy.add_state
: Add a specific statebasestrategy.set_state
: Set finite state machinebasestrategy.get_state
: Change state of state machinebasestrategy.account
: The Account object of this botbasestrategy.market
: The market used by this botbasestrategy.orders
: List of open orders of the bot’s account in the bot’s marketbasestrategy.balance
: List of assets and amounts available in the bot’s account
Also, Base Strategy inherits
stakemachine.storage.Storage
which allows to permanently store data in a sqlite database using:basestrategy["key"] = "value"
Note
This applies a
json.loads(json.dumps(value))
!-
account
¶ Return the full account as
bitshares.account.Account
object!Can be refreshed by using
x.refresh()
-
balance
(asset)¶ Return the balance of your bot’s account for a specific asset
-
balances
¶ Return the balances of your bot’s account
-
cancelall
()¶ Cancel all orders of this bot
-
execute
()¶ Execute a bundle of operations
-
market
¶ Return the market object as
bitshares.market.Market
-
orders
¶ Return the bot’s open accounts in the current market