Skip to content

Latest commit

 

History

History
120 lines (93 loc) · 2.97 KB

README.md

File metadata and controls

120 lines (93 loc) · 2.97 KB

TradeOgre Python Grid Bot

API inherited/modified from: https://github.com/Endogen/TradeOgrePy

market-making bot:

starts at the lower bound 100% weighted in the currency pair -- does not force rebalance like kucoin and others in other words, for example, the bot starts as 100% sell on XMR given BTC-XMR as the input pair and only requires XMR to start. AKA "bullish bias"

ensure all python files are in the same directory, and your tradeogre API key is defined in run.py (see: api_file_uri variable) and execute run.py after changing settings to produce desired output. YOU NEED TO CHANGE ALL OF THE SETTINGS - THIS BOT WILL LET YOU BE AN IDIOT - IT IS NOT A RISK-FREE MONEY MACHINE - UNDERSTAND THE CODE BEFORE RUNNING.

TODO: write actual documentation

Preconditions

In order to use this API wrapper you need to have API keys from TradeOgre.

Open Account --> Settings --> API Keys

Load API keys

From file save file as tradeogre.py

import tradeogre

trade_ogre = tradeogre.TradeOgre().load_key('TradeOgre.key')

In this case the key must be on the first line and the secret must be on the second line

As direct input in class

import tradeogre

trade_ogre = tradeogre.TradeOgre(key=some_key, secret=some_secret)

As direct input in method

import tradeogre

trade_ogre = tradeogre.TradeOgre()
reply = trade_ogre.balances(key=some_key, secret=some_secret)

Example usage

Markets

Retrieve a listing of all markets

trade_ogre.markets()

Order book

Retrieve the current order book for a market

trade_ogre.order_book('BTC-XMR')

Ticker

Retrieve the ticker (current price) for a market

trade_ogre.ticker('BTC-XMR')

History

Retrieve the history of the last trades for a market

trade_ogre.history('BTC-XTL')

Balance

Get the balance of a specific currency
You need to provide API key and secret for this method

trade_ogre.balance('BTC')

Balances

Retrieve all balances for your account
You need to provide API key and secret for this method

trade_ogre.balance()

Buy

Submit a buy order to the order book for a market
You need to provide API key and secret for this method

trade_ogre.buy('BTC-XMR', '10', '0.0123')  # market, quantity, price

Sell

Submit a sell order to the order book for a market
You need to provide API key and secret for this method

trade_ogre.sell('BTC-XMR', '10', '0.0123')  # market, quantity, price

Orders

Retrieve the active orders for your account
You need to provide API key and secret for this method

trade_ogre.orders('BTC-XMR')

Order

Retrieve information about a specific order
You need to provide API key and secret for this method

trade_ogre.order('1702a7bc-6a18-92c0-c1fe-aaf581d2352d')

Cancel

Cancel an order on the order book
You need to provide API key and secret for this method

trade_ogre.cancel('a40ac710-8dc5-b5a8-aa69-389715197b14')