FinRL icon indicating copy to clipboard operation
FinRL copied to clipboard

FinRL: Financial Reinforcement Learning. 🔥

Results 250 FinRL issues
Sort by recently updated
recently updated
newest added

` 50 # filter opening time of the New York Stock Exchange (NYSE) (from 9:30 am to 4:00 pm) if time_interval < 1D 51 # from trepan.api import debug;debug() --->...

bug

I get this warning on step 2.1 WARNING: Running pip as the 'root' user can result in broken permissions and conflicting behaviour with the system package manager. It is recommended...

bug

When executing the following cell: `df_summary = ensemble_agent.run_ensemble_strategy(A2C_model_kwargs, PPO_model_kwargs, DDPG_model_kwargs, timesteps_dict)` The following error is occurring: `--------------------------------------------------------------------------- ValueError Traceback (most recent call last) [](https://localhost:8080/#) in () ----> 1 df_summary =...

bug

When running: df_summary = ensemble_agent.run_ensemble_strategy(A2C_model_kwargs, PPO_model_kwargs, DDPG_model_kwargs, timesteps_dict) I run into this issue: https://github.com/DLR-RM/stable-baselines3/issues/1151 "You tried to create multiple environments, but the function to create them returned the same instance...

bug

**Describe the bug** A clear and concise description of what the bug is. When running the ensemble trading strategy, the code raises a ValueError: "If using all scalar values, you...

bug

Should this line https://github.com/AI4Finance-Foundation/FinRL/blob/7414adb012b554f7c684d4615830dc5c31a094d1/finrl/agents/stablebaselines3/models.py#L319 be `last_state = trade_env.envs[0].render()` ? Otherwise it'll call the render method defined by VecEnv class, which returns None.

bug

Installing using py -m pip install git+https://github.com/AI4Finance-Foundation/FinRL.git on Python 3.11.3 and getting this error **ERROR: Could not find a version that satisfies the requirement ray[default,tune]>=2.0.0 (from finrl) (from versions: none)...

bug

Hi, I was trying to run the following [tutorial notebook](https://colab.research.google.com/github/AI4Finance-Foundation/FinRL-Tutorials/blob/master/3-Practical/FinRL_PaperTrading_Demo.ipynb#scrollTo=NPNxj6c8HIiE), but the following error was encountered: ``` --------------------------------------------------------------------------- AttributeError Traceback (most recent call last) [](https://localhost:8080/#) in () ----> 1 data...

bug

Hi, i am using StockPortfolioEnv to simulate portfolio optimization via DRL, with PPO and A2C agents from SB3. My main issue (or doubt?) is that including technical indicators does little...

discussion

` # Download and save the data in a pandas DataFrame start_date = pd.Timestamp(start_date) end_date = pd.Timestamp(end_date) delta = timedelta(days=1) data_df = pd.DataFrame() for tic in ticker_list: while ( start_date...

bug