OPCODE-Open-Spring-Fest / Quant

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.
0 stars 0 forks source link

[Feature]: Using StrEnum instead of using string constants in code #4

Closed NishchayKQ closed 4 months ago

NishchayKQ commented 5 months ago

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 Screenshot 2024-03-22 185036

I would like to fix this issue, so if this looks good , assign me this issue Thank you!

Code of Conduct