The Automated Trading System with Risk Management is a Python application that automates trading processes, including fetching market data, executing trades based on predefined strategies, and managing orders. It incorporates robust risk management strategies to enhance trading performance and profitability.
1
stars
0
forks
source link
[Feature]: Using StrEnum instead of using string constants in code #4
Python's StrEnum class is a way to implement String constants in your code without having to worry about
1) other developers messing up the constant (like using "North" instead of "NORTH"
2) having to manually type the entire string
Preview of what it can do
I would like to fix this issue, so if this looks good , assign me this issue
Thank you!
Code of Conduct
[X] I agree to follow this project's Code of Conduct
So, what is it about?
Python's StrEnum class is a way to implement String constants in your code without having to worry about 1) other developers messing up the constant (like using "North" instead of "NORTH" 2) having to manually type the entire string
Preview of what it can do
I would like to fix this issue, so if this looks good , assign me this issue Thank you!
Code of Conduct