- initialize
- login
- shutdown
- version
- last_error
- account_info
- terminal_info
- symbols_total
- symbols_get
- symbol_info
- symbol_info_tick
- symbol_select
- market_book_add
- market_book_get
- market_book_release
- copy_rates_from
- copy_rates_from_pos
- copy_rates_range
- copy_ticks_from
- copy_ticks_range
- orders_total
- orders_get
- order_calc_margin
- order_calc_profit
- order_check
- order_send
- positions_total
- positions_get
- history_orders_total
- history_orders_get
- history_deals_total
- history_deals_get
symbol_info_tick
Get the last tick for the specified financial instrument.
symbol_info_tick(
|
symbol
[in] Financial instrument name. Required unnamed parameter.
Return Value
Return info in the form of a tuple. Return None in case of an error. The info on the error can be obtained using last_error().
Note
The function is similar to SymbolInfoTick.
Example:
import MetaTrader5 as mt5
|
See also