Get Value from Symbol.Data.MinVolume //minimumTradeSize

Created at 06 Sep 2023, 16:33
How’s your experience with the cTrader Platform?
Your feedback is crucial to cTrader's development. Please take a few seconds to share your opinion and help us improve your trading experience. Thanks!
1308's avatar

1308

Joined 18.07.2023

Get Value from Symbol.Data.MinVolume //minimumTradeSize
06 Sep 2023, 16:33


Hi all,

 

i hope u r well. I searched for the code to get Symbol.Data.MinVolume VALUE // minimumTradeSize:

I using windowsform Sample latestest version

 

Cheers

 

Daniel


@1308
Replies

PanagiotisChar
07 Sep 2023, 06:17 ( Updated at: 07 Sep 2023, 10:08 )

Hi,

It's a part of ProtoOASymbol. You can get the symbols using by ProtoOASymbolByIdReq


@PanagiotisChar

1308
12 Sep 2023, 18:10 ( Updated at: 13 Sep 2023, 05:39 )

RE: Get Value from Symbol.Data.MinVolume //minimumTradeSize

PanagiotisChar said: 

Hi,

It's a part of ProtoOASymbol. You can get the symbols using by ProtoOASymbolByIdReq

Hi,

 

 i try:

private void btnGetSymbols_Click(object sender, EventArgs e) { var message = new ProtoMessage { Payload = new ProtoOASymbol { SymbolId = 44, Digits = 4, PipPosition = 0 }.ToByteString(), PayloadType = (int)ProtoOASymbolByIdReq.CtidTraderAccountIdFieldNumber, }; Transmit(message); }

but it doesnt work

 

Can u send code?

 

BR 

 

Daniel 


@1308

PanagiotisChar
13 Sep 2023, 05:58 ( Updated at: 13 Sep 2023, 05:59 )

RE: RE: Get Value from Symbol.Data.MinVolume //minimumTradeSize

daniel.schaeftlein said: 

PanagiotisChar said: 

Hi,

It's a part of ProtoOASymbol. You can get the symbols using by ProtoOASymbolByIdReq

Hi,

 

 i try:

private void btnGetSymbols_Click(object sender, EventArgs e) { var message = new ProtoMessage { Payload = new ProtoOASymbol { SymbolId = 44, Digits = 4, PipPosition = 0 }.ToByteString(), PayloadType = (int)ProtoOASymbolByIdReq.CtidTraderAccountIdFieldNumber, }; Transmit(message); }

but it doesnt work

 

Can u send code?

 

BR 

 

Daniel 

I don't have source code, sorry


@PanagiotisChar