real minimum trade volume calculation
Created at 10 May 2022, 14:58
real minimum trade volume calculation
10 May 2022, 14:58
Hi All,
I am trying to figure out how to calculate the minimum trade volume using MinVolume property properly and I am stuck. This is what I have succecfully pulled from OpenApi:
(US30 - TopFX)
SymbolId:1132
Digits:2
ProtoOASymbol.MinVolume(InCents):1
ProtoOASymbol.stepVolume (in cents).1
ProtoOASymbol.lotSize (in cents):100
Since the minVolume in cents is 1, I thought the minVolume in lots is 0.01. Unfortunately if I open the platform I can see that the minimum trade volume is 1.
How can I calculate the real minimum trade volume in lots?
amusleh
11 May 2022, 10:43 ( Updated at: 21 Dec 2023, 09:22 )
Hi,
Open API returns Symbol min/max/step volumes in cents, you have to divide it by 100 to get the volume in symbol quote asset unit.
The US 30 minimum volume is 0.01 contracts on my TopFX demo account:
Not 1 contract, maybe you are using two different accounts for Open API and cTrader desktop.
@amusleh