freqtrade_strategy
freqtrade_strategy copied to clipboard
freqtrade strategy that I made or I optimize
Hi, Trying to train the model. When running this code block. ``` model_return = CatBoostClassifier(iterations=12000, #boosting_type='dart', #random_state=42, #num_leaves=41, learning_rate=0.002, #max_bin =10, task_type='GPU') model_return.fit(train[col_use], train['target'], #eval_metric='binary_error', verbose=100, #early_stopping_rounds=200, eval_set=[(val[col_use], val['target'])], )...