working4coins
working4coins
Hello, I'm looking for a python script to draw candlestick plot inside a text user interface (ncurses or urwid). Could you help me to do that ? For now I've...
Hello, I just send you this message to say you that OptParse is now deprecated http://docs.python.org/2/library/optparse.html You should use ArgParse http://docs.python.org/2/library/argparse.html#module-argparse Some other python command line parsers are docopt http://docopt.org/...
Hi, I first wanted to say that I really like the ccxt library. I wonder if some examples to use it with Julia language couldn't be done. https://julialang.org/ https://juliahub.com/case-studies/ Maybe...
Hello, Integrate Blankly with an open source timeseries database could be a nice improvement. Some TSDB are [InfluxDB](https://www.influxdata.com/), [TimescaleDB](https://www.timescale.com/), [OpenTSDB](http://opentsdb.net/) Kind regards
Hi, Running RSI example with ```python def main(): # Define exchange as KeylessExchange exchange = blankly.KeylessExchange( price_reader=blankly.data.data_reader.PriceReader("./XBTUSDT_1D.csv", "BTC-USD") ) # Use our strategy helper on Binance strategy = blankly.Strategy(exchange) #...
Hello, A first step towart #237 could be (as discussed on Discord yesterday) to accept in memory data for backtests. Currently we can pass a json dict of "symbol": {'open':...
Hello, ```python from datetime import datetime from lumibot.backtesting import PolygonDataBacktesting from lumibot.strategies import Strategy class MyStrategy(Strategy): parameters = { "symbol": "AAPL", } def initialize(self): self.sleeptime = "1D" def on_trading_iteration(self): if...
### Specifications * Client Version: latest from pip * InfluxDB Version: v2.7.1 * Platform: Windows 10 ### Code sample to reproduce problem `download.py` ```python import datetime from binance_historical_data import BinanceDataDumper...
Hello, I'm using a Docker Compose file like so ``` version: "3.3" services: cs2questdb_book: image: ghcr.io/bmoscon/cryptostore:latest container_name: cs2questdb_book environment: - EXCHANGE=BINANCE - SYMBOLS=BTC-USDT,ETH-USDT,BNB-USDT,SOL-USDT,ADA-USDT - CHANNELS=l2_book - BACKEND=QUEST # TTY -...
Related #231