Article-12953-MQL5-SymbolIn.../Article-12953-MQL5-SymbolInfo-StringFormat.mq5
2026-03-17 14:52:47 +07:00

132 lines
5.9 KiB
MQL5

//+------------------------------------------------------------------+
//| Article-12953-MQL5-SymbolInfo-StringFormat.mq5 |
//| Copyright 2026, MetaQuotes Ltd. |
//| https://www.mql5.com |
//+------------------------------------------------------------------+
#include "Article-12953-MQL5-SymbolInfo-Functions.mqh"
//+------------------------------------------------------------------+
//| Script program start function |
//+------------------------------------------------------------------+
void OnStart()
{
//---
SymbolInfoPrint(Symbol(),28,2);
/* Пример вывода:
SymbolInfoInteger properties:
Subscription Delay: No
Sector: Currency
Industry: Undefined
Custom symbol: No
Background color: Default
Chart mode: Bid
Exists: Yes
Selected: Yes
Visible: Yes
Session deals: 0
Session Buy orders: 0
Session Sell orders: 0
Volume: 0
Volume high: 0
Volume low: 0
Time: 2023.07.14 22:07:01
Time msc: 2023.07.14 22:07:01.706
Digits: 5
Spread: 5
Spread float: Yes
Ticks book depth: 10
Trade calculation mode: Forex
Trade mode: Full
Start time: 1970.01.01 00:00:00 (Not used)
Expiration time: 1970.01.01 00:00:00 (Not used)
Stops level: 0 (By Spread)
Freeze level: 0 (Not used)
Trade Execution mode: Instant
Swap mode: Points
Swap Rollover 3 days: Wednesday
Margin hedged use leg: No
Expiration mode: GTC|DAY|SPECIFIED
Filling mode: FOK|IOC|RETURN
Order mode: MARKET|LIMIT|STOP|STOP_LIMIT|SL|TP|CLOSEBY
Order GTC mode: GTC
Option mode: European
Option right: Call
SymbolInfoDouble properties:
Bid: 1.30979
Bid High: 1.31422
Bid Low: 1.30934
Ask: 1.30984
Ask High: 1.31427
Ask Low: 1.30938
Last: 0.00000
Last High: 0.00000
Last Low: 0.00000
Volume real: 0.00
Volume High real: 0.00
Volume Low real: 0.00
Option strike: 0.00000
Point: 0.00001
Tick value: 1.00000
Tick value profit: 1.00000
Tick value loss: 1.00000
Tick size: 0.00001
Contract size: 100000.00 GBP
Accrued interest: 0.00
Face value: 0.00
Liquidity rate: 0.00
Volume min: 0.01
Volume max: 500.00
Volume step: 0.01
Volume limit: 0.00
Swap long: -0.20
Swap short: -2.20
Swap Sunday: 0 (no swap is charged)
Swap Monday: 1 (single swap)
Swap Tuesday: 1 (single swap)
Swap Wednesday: 3 (triple swap)
Swap Thursday: 1 (single swap)
Swap Friday: 1 (single swap)
Swap Saturday: 0 (no swap is charged)
Margin initial: 0.00 GBP
Margin maintenance: 0.00 GBP
Session volume: 0.00
Session turnover: 0.00
Session interest: 0.00
Session Buy orders volume: 0.00
Session Sell orders volume: 0.00
Session Open: 1.31314
Session Close: 1.31349
Session AW: 0.00000
Session price settlement: 0.00000
Session price limit min: 0.00000
Session price limit max: 0.00000
Margin hedged: 100000.00
Price change: -0.28 %
Price volatility: 0.00 %
Price theoretical: 0.00000
Price delta: 0.00000
Price theta: 0.00000
Price gamma: 0.00000
Price vega: 0.00000
Price rho: 0.00000
Price omega: 0.00000
Price sensitivity: 0.00000
SymbolInfoString properties:
Basis: '' (Not specified)
Category: '' (Not specified)
Country: '' (Not specified)
Sector name: 'Currency'
Industry name: 'Undefined'
Currency base: 'GBP'
Currency profit: 'USD'
Currency margin: 'GBP'
Bank: '' (Not specified)
Description: 'Pound Sterling vs US Dollar'
Exchange: '' (Not specified)
Formula: '' (Not specified)
ISIN: '' (Not specified)
Page: 'https://www.mql5.com/en/quotes/currencies/gbpusd'
Path: 'Forex\GBPUSD'
*/
}
//+------------------------------------------------------------------+