algorithmic-trading-python icon indicating copy to clipboard operation
algorithmic-trading-python copied to clipboard

The repository for freeCodeCamp's YouTube course, Algorithmic Trading in Python

Results 50 algorithmic-trading-python issues
Sort by recently updated
recently updated
newest added

When I click on download the file, a new tab opens with only one line written in it: IEX_CLOUD_API_TOKEN = 'Tpk_059b97af715d417d9f49f50b51b1c448' What should I do?

I imported a list of the stocks using url: Why it is not working?

Link to download secrets.py is not working.

![image](https://user-images.githubusercontent.com/38891141/133873819-9a5494bc-b966-414c-a150-2578705d1f5d.png) I got the error shown above, please help me or show me how to solve this problem. Thank you.

How can we download the secret.py file, I only got the link of IEX_CLOUD_API_TOKEN = 'Tpk_059b97af715d417d9f49f50b51b1c448' and the result is like this. I appreciate your help first. ![Screenshot 2022-05-13 031810](https://user-images.githubusercontent.com/80602268/168151827-ef2d3970-a00d-42ed-9032-d115d3d648dc.png)

Where can I find the configuration details? That part is missing in the video.

Bumps [numpy](https://github.com/numpy/numpy) from 1.17.4 to 1.22.0. Release notes Sourced from numpy's releases. v1.22.0 NumPy 1.22.0 Release Notes NumPy 1.22.0 is a big release featuring the work of 153 contributors spread...

dependencies

I encountered the following issue when open the tutorial files. pls assist NotJSONError("Notebook does not appear to be JSON: '\\n\\n\\n\\n\\n\\n\\n

Hello! I am facing JSON Decode Error when running the below code. symbol_groups = list(chunks(stocks['Ticker'],100)) symbol_strings = [] for i in range(0, len(symbol_groups)): symbol_strings.append(','.join(symbol_groups[i])) # print(symbol_strings[i]) final_dataframe = pd.DataFrame(columns=my_columns) for...