FinRL-Tutorials icon indicating copy to clipboard operation
FinRL-Tutorials copied to clipboard

Tutorials. Please star.

Results 58 FinRL-Tutorials issues
Sort by recently updated
recently updated
newest added

这里通过tushare获取A股数据时没有复权,后续的处理里也没有看到复权的操作。是否应该在tushare获取数据时加入复权的参数? _Originally posted by @SilverBulletLZ in https://github.com/AI4Finance-Foundation/FinRL-Tutorials/discussions/45_

suggestion

Hello, There is a pre-trained agent (agent_a2c.zip) that is included in Stock_NeurIPS2018. I also reran the notebooks 1 and 2 to train agent_a2c. However the backtest result of the new...

question

1. Where is 'processed_full' defined? ``` ----> 1 data_risk_indicator = processed_full[(processed_full.date=TRAIN_START_DATE)] 2 insample_risk_indicator = data_risk_indicator.drop_duplicates(subset=['date']) NameError: name 'processed_full' is not defined ``` 2. Where is the file 'agent_a2c.zip'? ``` ---->...

bug

Hello I add deep network to code and code have error. can you help me? thanks. part of code: ``` class Net(BaseFeaturesExtractor): def __init__(self, observation_space: gym.spaces.Box, stock_dim: int = 28):...

bug

Two errors were thrown while running the first installation code paragraph in Colap. [1] the first error: ``` Building wheels for collected packages: elegantrl, box2d-py Building wheel for elegantrl (setup.py)...

bug

When FinRL is installing / cloning from github as mentioned in [https://finrl.readthedocs.io/en/latest/start/installation.html#](url). It is giving an error "ERROR: Package 'finrl' requires a different Python: 3.9.13 not in '=3.7'" Please help...

bug

Hello I am beginner. My project is portfolio optimization using multi agent RL. Do SB3 and FinRL support implementations for this?

help wanted

FinRL_StockTrading_NeurIPS_2018 doesn't exist for example. Also a step by step setup demo would be great.

suggestion

I noticed that your main repo has an MIT license but this repo seems to be missing one. Is this code also available under the MIT license? It would be...

suggestion

I followed the instructions from [this tutorial/notebook](https://github.com/AI4Finance-Foundation/FinRL-Tutorials/blob/master/2-Advance/FinRL_Ensemble_StockTrading_ICAIF_2020.ipynb) and expected the method to work as shown. `df_summary = ensemble_agent.run_ensemble_strategy(A2C_model_kwargs, PPO_model_kwargs, DDPG_model_kwargs, timesteps_dict)` **And the code above was working before, but now...