You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I have to retrieve trading rules (min / max order size, etc) from the Nash api. I'm using listMarkets(), and I have some questions about the Market type returned by this function:
What are minTradeIncrementB and minTradeSizeB?
There is no maxTradeSize?
How to know if a market allows market orders or not?
Thanks for your answers :)
The text was updated successfully, but these errors were encountered:
minTradeIncrement(B) is the minimum precision the market supports. If the increment is 0.000001 then 1 and 1.000001 are valid. But 1.000000001 is not.
minTradeSize(B) is the minimum amount of each asset the trade must contain.
If a market has a minTradeSize of 0.5 and a minTradeSizeB of 0.01 the smallest trade possible is I want for buy 0.5 A for 0.01 B Essentially it controls the lowest limitPrice you can set.
There is no maxTradeSize?
No. But depending on your account tier the maximum trade is limited by your daily/monthly/yearly limits.
How to know if a market allows market orders or not?
Hello,
I have to retrieve trading rules (min / max order size, etc) from the Nash api. I'm using
listMarkets()
, and I have some questions about theMarket
type returned by this function:minTradeIncrementB
andminTradeSizeB
?maxTradeSize
?Thanks for your answers :)
The text was updated successfully, but these errors were encountered: