We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 0484cd7 commit f5a0be8Copy full SHA for f5a0be8
sysinit/futures/repocsv_spotfx_prices.py
@@ -4,14 +4,15 @@
4
WARNING WILL OVERWRITE EXISTING!
5
"""
6
from sysdata.csv.csv_spot_fx import csvFxPricesData
7
-from sysproduction.data.currency_data import fxPricesData
+from sysproduction.data.currency_data import dataCurrency
8
9
-db_fx_price_data = fxPricesData()
10
11
if __name__ == "__main__":
12
input("Will overwrite existing prices are you sure?! CTL-C to abort")
+ dataCurrency = dataCurrency()
13
14
csv_fx_prices = csvFxPricesData()
15
+ db_fx_price_data = dataCurrency.db_fx_prices_data
16
17
currency_code = input("Currency code? <return for ALL currencies> ")
18
if currency_code == "":
0 commit comments