how to extract datas from Symbol specification window and import them in an indicator

 

Hello, I'm trading on MT5.

I'm looking for ideas to write an indicator(or EA).

In fact each symbol got specifications
From there I want to extract these datas :
1) value of "½ Minimal volume" 
2) value of "eur/lot" from "Margin rates : ½ Market buy"
3) value of "eur/lot" from "Margin rates : ½ Market sell"


And import them in the indicator

They must be dispalyed when i run the indicator


e.g. attached Gold specifications window 

 "0.01" , (as ½ Minimal volume)

 "9535.51"(as Margin rates : ½ Market buy) 

"9534.17"(as Margin rates : ½ Market sell)

Symbol specifications window

 

Main probleme,  "Symbol specification window " is not an attached indicators : it's from mt5 plateform in itself 

Can iCustom read  it

 
paul selvan #:

Main probleme,  "Symbol specification window " is not an attached indicators : it's from mt5 plateform in itself 

Can iCustom read  it

This is probably a good place to start reading: 

Symbol Properties - Environment State - Constants, Enumerations and Structures - MQL5 Reference - Reference on algorithmic/automated trading language for MetaTrader 5
Documentation on MQL5: Constants, Enumerations and Structures / Environment State / Symbol Properties
Documentation on MQL5: Constants, Enumerations and Structures / Environment State / Symbol Properties
  • www.mql5.com
To obtain the current market information there are several functions: SymbolInfoInteger() , SymbolInfoDouble() and SymbolInfoString() . The first...
 
i will check it thanks