Krish Nandan Das

Results 11 comments of Krish Nandan Das

I'm not sure about the error but it might be fixed with `apt-get install g++` actually I have received some errors (did not recall ) but I have fixed those...

I have got similar error but fixed as First install finrl in a virtual enviroment after that I tried to install this finrl-meta it fixed my error ;)

![image](https://github.com/AI4Finance-Foundation/FinRL/assets/66534506/5015b3bc-d829-47d4-a749-576d9a63d98f) in the parameter Config, it is not a config File it is a dict conteing env_config = { "price_array": price_array, "tech_array": tech_array, "turbulence_array": turbulence_array, "if_train": True, } which is...

You can install windows SDK. it can resolve your issue

Is this problem solved? ![image](https://github.com/AI4Finance-Foundation/FinRL/assets/66534506/1955421c-d5da-46b6-80eb-5f312e5ae907) as I saw there is no specific version given for elegantRl in [requirments](https://github.com/AI4Finance-Foundation/FinRL/blob/master/requirements.txt) I'm getting the same error that Arguments class not found in config.

most probably You used the environment which returns 5 values from step method and 2 values from reset method. change this code `return state, reward, done, False, dict()` to `return...

![image](https://github.com/AI4Finance-Foundation/FinRL/assets/66534506/8b4a9991-5d7c-470a-8833-f10283f2473f) in the above-marked file. you will find the **reset** method it returns 2 values change it to `return self.get_state(price)` ![image](https://github.com/AI4Finance-Foundation/FinRL/assets/66534506/10ccc5a2-a09b-4222-a3b8-6d8b95730fd1) same with the **step** method `return state, reward, done,...

now you can use eleganrl==0.3.6 version :)

instead of append you can use `df_trade_date = pd.DataFrame({'datadate': unique_trade_date}) df_account_value = pd.DataFrame() for i in range(rebalance_window + validation_window, len(unique_trade_date) + 1, rebalance_window): temp = pd.read_csv('results/account_value_trade_{}_{}.csv'.format('ensemble', i)) df_account_value = pd.concat([df_account_value,...

I fixed this error to change ``` df = nyse.sessions_in_range( pd.Timestamp(start, tz=pytz.UTC), pd.Timestamp(end, tz=pytz.UTC) ) ``` to ``` df = nyse.sessions_in_range( start, end ) ``` noe the methods looks like...