rename variable to get rid of bunch of pylint shadowing complaints

This commit is contained in:
Janne Sinivirta 2017-09-12 10:49:10 +02:00
parent 2221a0fbbc
commit a5b3428552

View File

@ -157,8 +157,8 @@ def plot_dataframe(dataframe: DataFrame, pair: str) -> None:
if __name__ == '__main__':
# Install PYQT5==5.9 manually if you want to test this helper function
while True:
pair = 'BTC_ANT'
test_pair = 'BTC_ANT'
#for pair in ['BTC_ANT', 'BTC_ETH', 'BTC_GNT', 'BTC_ETC']:
# get_buy_signal(pair)
plot_dataframe(analyze_ticker(pair), pair)
plot_dataframe(analyze_ticker(test_pair), test_pair)
time.sleep(60)