Skip to content

Instantly share code, notes, and snippets.

@saleh-old
Created May 26, 2020 06:35
Show Gist options
  • Save saleh-old/0c26ab094114207909a168434cd0750e to your computer and use it in GitHub Desktop.
Save saleh-old/0c26ab094114207909a168434cd0750e to your computer and use it in GitHub Desktop.
# instead of
anchor_candles = self.get_candles(
'Bitfinex', 'BTCUSD', utils.anchor_timeframe('4h')
)
# I wrote
anchor_candles = self.get_candles(
self.exchange, self.symbol, utils.anchor_timeframe(self.timeframe)
)
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment