main_ticker.py 8.4 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215
  1. #!/usr/bin/env python3
  2. #
  3. # mmgen = Multi-Mode GENerator, a command-line cryptocurrency wallet
  4. # Copyright (C)2013-2022 The MMGen Project <mmgen@tuta.io>
  5. # Licensed under the GNU General Public License, Version 3:
  6. # https://www.gnu.org/licenses
  7. # Public project repositories:
  8. # https://github.com/mmgen/mmgen https://github.com/mmgen/mmgen-node-tools
  9. # https://gitlab.com/mmgen/mmgen https://gitlab.com/mmgen/mmgen-node-tools
  10. """
  11. mmnode-ticker: Display price information for cryptocurrency and other assets
  12. """
  13. from .Ticker import *
  14. opts_data = {
  15. 'sets': [
  16. ('wide', True, 'percent_change', True),
  17. ('wide', True, 'name_labels', True),
  18. ('wide', True, 'thousands_comma', True),
  19. ('wide', True, 'update_time', True),
  20. ],
  21. 'text': {
  22. 'desc': 'Display prices for cryptocurrency and other assets',
  23. 'usage': '[opts] [TRADE_SPECIFIER]',
  24. 'options': f"""
  25. -h, --help Print this help message
  26. --, --longhelp Print help message for long options (common options)
  27. -A, --adjust=P Adjust prices by percentage ‘P’. In ‘trading’ mode,
  28. spot and adjusted prices are shown in separate columns.
  29. -b, --btc Fetch and display data for Bitcoin only
  30. -c, --add-columns=LIST Add columns for asset specifiers in LIST (comma-
  31. separated, see ASSET SPECIFIERS below). Can also be
  32. used to supply a USD exchange rate for missing assets.
  33. -C, --cached-data Use cached data from previous network query instead of
  34. live data from server
  35. -D, --cachedir=D Read and write cached JSON data to directory ‘D’
  36. instead of ‘~/{dfl_cachedir}’
  37. -e, --add-precision=N Add ‘N’ digits of precision to columns
  38. -E, --elapsed Show elapsed time in UPDATED column (see --update-time)
  39. -F, --portfolio Display portfolio data
  40. -l, --list-ids List IDs of all available assets
  41. -n, --name-labels Label rows with asset names rather than symbols
  42. -p, --percent-change Add percentage change columns
  43. -P, --pager Pipe the output to a pager
  44. -r, --add-rows=LIST Add rows for asset specifiers in LIST (comma-separated,
  45. see ASSET SPECIFIERS below). Can also be used to supply
  46. a USD exchange rate for missing assets.
  47. -t, --testing Print command to be executed to stdout and exit
  48. -T, --thousands-comma Use comma as a thousands separator
  49. -u, --update-time Include UPDATED (last update time) column
  50. -v, --verbose Be more verbose
  51. -w, --wide Display all optional columns (equivalent to -punT)
  52. -x, --proxy=P Connect via proxy ‘P’. Set to the empty string to
  53. completely disable or ‘none’ to allow override from
  54. environment. Consult the curl manpage for --proxy usage.
  55. """,
  56. 'notes': """
  57. The script has two display modes: ‘overview’, the default, and ‘trading’, the
  58. latter being enabled when a TRADE_SPECIFIER argument (see below) is supplied
  59. on the command line.
  60. Overview mode displays prices of all configured assets, and optionally the
  61. user’s portfolio, while trading mode displays the price of a given quantity
  62. of an asset in relation to other assets, optionally comparing an offered
  63. price to the spot price.
  64. ASSETS consist of either a symbol (e.g. ‘xmr’) or full ID (see --list-ids)
  65. consisting of symbol plus label (e.g. ‘xmr-monero’). In cases where the
  66. symbol is ambiguous, the full ID must be used. Examples:
  67. chf - specify asset by symbol
  68. chf-swiss-franc-token - same as above, but use full ID instead of symbol
  69. ASSET SPECIFIERS have the following format:
  70. ASSET[:RATE[:RATE_ASSET]]
  71. If the asset referred to by ASSET is not in the source data (see --list-ids),
  72. an arbitrarily chosen label may be used. RATE is the exchange rate of the
  73. asset in relation to RATE_ASSET, if present, otherwise USD. When RATE is
  74. postfixed with the letter ‘r’, its meaning is reversed, i.e. interpreted as
  75. ‘ASSET/RATE_ASSET’ instead of ‘RATE_ASSET/ASSET’. Asset specifier examples:
  76. inr:79.5 - INR is not in the source data, so supply rate of
  77. 79.5 INR to the Dollar (USD/INR)
  78. inr:0.01257r - same as above, but use reverse rate (INR/USD)
  79. inr-indian-rupee:79.5 - same as first example, but add an arbitrary label
  80. omr-omani-rial:2.59r - Omani Rial is pegged to the Dollar at 2.59 USD
  81. bgn-bg-lev:0.5113r:eur - Bulgarian Lev is pegged to the Euro at 0.5113 EUR
  82. A TRADE_SPECIFIER is a single argument in the format:
  83. ASSET:AMOUNT[:TO_ASSET[:TO_AMOUNT]]
  84. Examples:
  85. xmr:17.34 - price of 17.34 XMR in all configured assets
  86. xmr-monero:17.34 - same as above, but with full ID
  87. xmr:17.34:eur - price of 17.34 XMR in EUR only
  88. xmr:17.34:eur:2800 - commission on an offer of 17.34 XMR for 2800 EUR
  89. TO_AMOUNT, if included, is used to calculate the percentage difference or
  90. commission on an offer compared to the spot price.
  91. If either ASSET or TO_ASSET refer to assets not present in the source data,
  92. a USD rate for the missing asset(s) must be supplied via the --add-columns
  93. or --add-rows options.
  94. PROXY NOTE
  95. The remote server used to obtain the price data, {api_host!r}, blocks
  96. Tor behind a Captcha wall, so a Tor proxy cannot be used directly. If you’re
  97. concerned about privacy, connect via a VPN, or better yet, VPN over Tor. Then
  98. set up an HTTP proxy (e.g. Privoxy) on the VPN’ed host and set the ‘proxy’
  99. option in the config file or --proxy on the command line accordingly. Or run
  100. the script directly on the VPN’ed host with ’proxy’ or --proxy set to the
  101. null string.
  102. Alternatively, you may download the JSON source data in a Tor-proxied browser
  103. from ‘{api_url}’, save it as ‘ticker.json’ in your
  104. configured cache directory, and run the script with the --cached-data option.
  105. RATE LIMITING NOTE
  106. To protect user privacy, all filtering and processing of data is performed
  107. client side so that the remote server does not know which assets are being
  108. examined. This means that data for ALL available assets (currently over 4000)
  109. is fetched with each invocation of the script. A rate limit of {L} seconds
  110. between calls is thus imposed to prevent abuse of the remote server. When the
  111. --btc option is in effect, this limit is reduced to {B} seconds. To bypass the
  112. rate limit entirely, use --cached-data.
  113. EXAMPLES
  114. # Basic display in ‘overview’ mode:
  115. $ mmnode-ticker
  116. # Display BTC price only:
  117. $ mmnode-ticker --btc
  118. # Wide display, add EUR and OMR columns, OMR/USD rate, extra precision and
  119. # proxy:
  120. $ mmnode-ticker -w -c eur,omr-omani-rial:2.59r -e2 -x http://vpnhost:8118
  121. # Wide display, elapsed update time, add EUR, BGN columns and BGN/EUR rate:
  122. $ mmnode-ticker -wE -c eur,bgn-bulgarian-lev:0.5113r:eur
  123. # Wide display, use cached data from previous network query, show portfolio
  124. # (see above), pipe output to pager, add DOGE row:
  125. $ mmnode-ticker -wCFP -r doge
  126. # Display 17.234 XMR priced in all configured assets (‘trading’ mode):
  127. $ mmnode-ticker xmr:17.234
  128. # Same as above, but add INR price at specified USDINR rate:
  129. $ mmnode-ticker -c inr:79.5 xmr:17.234
  130. # Same as above, but view INR price only at specified rate, adding label:
  131. $ mmnode-ticker -c inr-indian-rupee:79.5 xmr:17.234:inr
  132. # Calculate commission on an offer of 2700 USD for 0.123 BTC, compared to
  133. # current spot price:
  134. $ mmnode-ticker usd:2700:btc:0.123
  135. # Calculate commission on an offer of 200000 INR for 0.1 BTC, compared to
  136. # current spot price, at specified USDINR rate:
  137. $ mmnode-ticker -n -c inr-indian-rupee:79.5 inr:200000:btc:0.1
  138. CONFIGURED ASSETS:
  139. {assets}
  140. Customize output by editing the file
  141. ~/{cfg}
  142. To add a portfolio, edit the file
  143. ~/{pf_cfg}
  144. """
  145. },
  146. 'code': {
  147. 'options': lambda s: s.format(
  148. dfl_cachedir = os.path.relpath(dfl_cachedir,start=homedir),
  149. ),
  150. 'notes': lambda s: s.format(
  151. assets = fmt_list(assets_list_gen(cfg_in),fmt='col',indent=' '),
  152. cfg = os.path.relpath(cfg_in.cfg_file,start=homedir),
  153. pf_cfg = os.path.relpath(cfg_in.portfolio_file,start=homedir),
  154. api_host = api_host,
  155. api_url = api_url,
  156. L = ratelimit,
  157. B = btc_ratelimit,
  158. )
  159. }
  160. }
  161. import os
  162. from mmgen.cfg import Config
  163. import mmgen_node_tools.Ticker as tck
  164. tck.gcfg = Config( opts_data=opts_data, do_post_init=True )
  165. tck.make_cfg()
  166. from .Ticker import cfg_in
  167. tck.gcfg._post_init()
  168. tck.main()