1
0
forked from kodorvan/stcs

The text of the welcome message has been changed, the text of the risk management settings has been changed, the default value for "maximum_trade_risk" in the database has been changed from 1 to 100. The message upon re-clicking the "Start Trading" button has been removed.

This commit is contained in:
Kirill Strelnikov
2025-07-22 12:54:23 +07:00
parent 0fecb5dab7
commit e555bfa8fb
5 changed files with 21 additions and 31 deletions

View File

@@ -84,7 +84,7 @@ class User_Risk_Management_Settings(Base):
price_profit = mapped_column(Integer(), default=1)
price_loss = mapped_column(Integer(), default=1)
max_risk_deal = mapped_column(Integer(), default=1)
max_risk_deal = mapped_column(Integer(), default=100)
class User_Condition_Settings(Base):
__tablename__ = 'user_condition_settings'