diff --git a/ejtraderRL/data/get_data.py b/ejtraderRL/data/get_data.py index 5ad1c72..f2a002e 100644 --- a/ejtraderRL/data/get_data.py +++ b/ejtraderRL/data/get_data.py @@ -10,7 +10,7 @@ def get_forex_data(symbol: str, timeframe: str): """ symbol = symbol.upper() - url = "https://raw.githubusercontent.com//ejtraderLabs/historical-data/main/" + url = "https://raw.githubusercontent.com/ejtraderLabs/historical-data/main/" url += symbol + "/" + symbol + timeframe.lower() + ".csv" return pd.read_csv(url) diff --git a/examples/full.ipynb b/examples/full.ipynb index f87c328..ffb7e44 100644 --- a/examples/full.ipynb +++ b/examples/full.ipynb @@ -37,7 +37,7 @@ }, { "cell_type": "code", - "execution_count": 1, + "execution_count": null, "metadata": {}, "outputs": [], "source": [ @@ -46,22 +46,9 @@ }, { "cell_type": "code", - "execution_count": 2, + "execution_count": null, "metadata": {}, - "outputs": [ - { - "name": "stdout", - "output_type": "stream", - "text": [ - "\n", - " You can now view your Streamlit app in your browser.\n", - "\n", - " Local URL: http://localhost:8501\n", - " Network URL: http://192.168.1.156:8501\n", - "\n" - ] - } - ], + "outputs": [], "source": [ "app.web()" ] diff --git a/setup.py b/setup.py index baadf7f..4676128 100644 --- a/setup.py +++ b/setup.py @@ -13,7 +13,7 @@ name='ejtraderRL', packages=find_packages(), - version='1.0.2', + version='1.0.3', license='Apache-2.0 License',