指定
this is not my real strategy it is the same but I changed the indicators in this file
I want you to make a hyperopt file to this strategy and I will implement that to my real strategy I want hyperopt for everything in the strategy roi, stoploss, buy, sell, the parameters for the indicators (length and multiplier), rsi level (“rsi_max”, “rsi_min” is the code), BB% level (“bb_level” in the code) like I said everything and the sours if possible
In the strategy I did not use rsi from ta-lib because in my real strategy I have a function for an indicator instead of rsi so I want to keep the rsi like this not from ta-lib
Strategy explanation:
1) BB% gets below “level_bb”
2) rsi gets down between “rsi_max” and “rsi_min”
3) rsi cross above “rsi_max”
4) whene rsi cross above “rsi_max” check BB% if BB% less than “level_bb_max” and the rsi did not get less than “rsi_min” then buy
5) all of that with supertrend, if supertrend is in uptrend its called green zone if supertrend is in downtrend its called red zone, each zone have deferent parameters for the indicators in it
Another thing is it possible to have two different minimal_roi one for green zone and one for red zoon?