2
0
forked from kodorvan/stcs

Fixed martingale step

This commit is contained in:
algizn97
2025-09-11 12:50:43 +05:00
parent da16a267e4
commit b3119c6ee1
4 changed files with 7 additions and 4 deletions

View File

@@ -149,7 +149,7 @@ class User_Main_Settings(Base):
size_leverage = mapped_column(Integer(), default=1)
starting_quantity = mapped_column(Integer(), default=1)
martingale_factor = mapped_column(Integer(), default=1)
martingale_step = mapped_column(Integer(), default=0)
martingale_step = mapped_column(Integer(), default=1)
maximal_quantity = mapped_column(Integer(), default=10)
entry_order_type = mapped_column(String(10), default='Market')
limit_order_price = mapped_column(Numeric(18, 15), nullable=True)