Skip to content

[pull] develop from freqtrade:develop #1304

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Merged
merged 4 commits into from
May 24, 2025
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
fix: remove space in rename_dict/rename_dict_old
  • Loading branch information
skyoo2003 committed Apr 1, 2025
commit bffb3120c14e3283641c45f98f175ba4691cb6bd
4 changes: 2 additions & 2 deletions freqtrade/freqai/RL/BaseReinforcementLearningModel.py
Original file line number Diff line number Diff line change
Expand Up @@ -318,13 +318,13 @@ def build_ohlc_price_dataframes(
rename_dict = {
"%-raw_open": "open",
"%-raw_low": "low",
"%-raw_high": " high",
"%-raw_high": "high",
"%-raw_close": "close",
}
rename_dict_old = {
f"%-{pair}raw_open_{tf}": "open",
f"%-{pair}raw_low_{tf}": "low",
f"%-{pair}raw_high_{tf}": " high",
f"%-{pair}raw_high_{tf}": "high",
f"%-{pair}raw_close_{tf}": "close",
}

Expand Down