freqtrade_strategy icon indicating copy to clipboard operation
freqtrade_strategy copied to clipboard

freqtrade strategy that I made or I optimize

Results 1 freqtrade_strategy issues
Sort by recently updated
recently updated
newest added

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'])], )...