Skip to content

Commit

Permalink
Bump to 1.1.0
Browse files Browse the repository at this point in the history
Signed-off-by: Herklos <herklos@drakkar.software>
  • Loading branch information
Herklos committed Sep 7, 2024
1 parent 6bd4b17 commit 748355a
Show file tree
Hide file tree
Showing 5 changed files with 6 additions and 8 deletions.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,10 @@ All notable changes to this project will be documented in this file.
The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html).

## [1.1.0] - 2024-09-07
### Added
- networkx dependencies

## [1.0.6] - 2024-04-18
### Added
- Added `whitelisted_symbols` to `run_detection`
Expand Down
2 changes: 1 addition & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@
<img src="illustration.jpeg" width="250px" height="250px" alt="Triangular illustration">
</p>

# Triangular Arbitrage by OctoBot [1.0.6](https://github.com/Drakkar-Software/Triangular-Arbitrage/blob/master/CHANGELOG.md)
# Triangular Arbitrage by OctoBot [1.1.0](https://github.com/Drakkar-Software/Triangular-Arbitrage/blob/master/CHANGELOG.md)
[![PyPI](https://img.shields.io/pypi/v/OctoBot-Triangular-Arbitrage.svg)](https://pypi.python.org/pypi/OctoBot-Triangular-Arbitrage/)
[![Dockerhub](https://img.shields.io/docker/pulls/drakkarsoftware/octobot-triangular-arbitrage.svg?logo=docker)](https://hub.docker.com/r/drakkarsoftware/octobot-triangular-arbitrage)

Expand Down
1 change: 0 additions & 1 deletion requirements.txt
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
tqdm
ccxt
networkx[default]

Expand Down
2 changes: 1 addition & 1 deletion triangular_arbitrage/__init__.py
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
PROJECT_NAME = "OctoBot-Triangular-Arbitrage"
VERSION = "1.0.6"
VERSION = "1.1.0"
5 changes: 0 additions & 5 deletions triangular_arbitrage/detector.py
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,6 @@

import ccxt.async_support as ccxt
from typing import List, Tuple
from tqdm.auto import tqdm
from itertools import combinations
from dataclasses import dataclass
import networkx as nx

Expand Down Expand Up @@ -48,9 +46,6 @@ def get_last_prices(exchange_time, tickers, ignored_symbols, whitelisted_symbols


def get_best_opportunity(tickers: List[ShortTicker]) -> Tuple[List[ShortTicker], float]:
# pylint: disable=W1114
ticker_dict = {str(ticker.symbol): ticker for ticker in tickers if ticker.symbol is not None}

# Build a directed graph of currencies
graph = nx.DiGraph()

Expand Down

0 comments on commit 748355a

Please sign in to comment.