项目作者: qyvlik

项目描述 :
Formula
高级语言: Java
项目地址: git://github.com/qyvlik/formula.git
创建时间: 2019-09-09T05:14:22Z
项目社区:https://github.com/qyvlik/formula

开源协议:MIT License

下载


formula

Update variable, and use EvalEx calculate the result.

Use the qyvlik/formula-data to regularly update the variables.

docker

qyvlik/formula

api

TOKEN header config key is auth.tokens, see in application-prod.yml.

You can import formula.postman_collection.json in Postman.

update variables

Update variables

  1. curl --location --request POST 'http://127.0.0.1:8120/api/v1/formula/variable/market-price/update' \
  2. --header 'TOKEN: ad82c6ae-f7a3-486b-b933-aa19104d8142' \
  3. --header 'Content-Type: application/json' \
  4. --data-raw '{
  5. "exchange": "okex",
  6. "code": "btc_usdt",
  7. "base": "btc",
  8. "quote": "usdt",
  9. "price": "100",
  10. "timestamp": 0
  11. }'

response:

  1. {
  2. "code": 200,
  3. "data": null,
  4. "message": null,
  5. "success": true
  6. }

get variable by name

Get variable by name, the name is a path-variable in http path.

  1. curl --location --request GET 'http://127.0.0.1:8120/api/v1/formula/variable/market-price/info?exchange=okex&base=btc"e=usdt' \
  2. --header 'TOKEN: ad82c6ae-f7a3-486b-b933-aa19104d8142' \
  3. --data-raw ''

response:

  1. {
  2. "code": 200,
  3. "data": {
  4. "exchange": "okex",
  5. "code": "btc_usdt",
  6. "base": "btc",
  7. "quote": "usdt",
  8. "price": 100,
  9. "timestamp": 0
  10. },
  11. "message": null,
  12. "success": true
  13. }

calculate the formula

Calculate the formula, such as okex_btc_usdt*1.101.

Make sure, you have regularly update the okex_btc_usdt.

  1. curl --location --request POST 'http://127.0.0.1:8120/api/v1/formula/calculate' \
  2. --header 'TOKEN: ad82c6ae-f7a3-486b-b933-aa19104d8142' \
  3. --header 'Content-Type: application/json' \
  4. --data-raw '{
  5. "formula": "okex_btc_usdt*1.101"
  6. }'
  1. {
  2. "code": 200,
  3. "data": {
  4. "origin": "okex_btc_usdt*1.101",
  5. "formula": "okex_btc_usdt*1.101",
  6. "result": 110.1,
  7. "variables": [
  8. {
  9. "name": "okex_btc_usdt",
  10. "value": 100,
  11. "market": {
  12. "exchange": "okex",
  13. "code": "btc_usdt",
  14. "base": "btc",
  15. "quote": "usdt",
  16. "price": 100,
  17. "timestamp": 0
  18. }
  19. }
  20. ]
  21. },
  22. "message": null,
  23. "success": true
  24. }

convert

  1. curl --location --request POST 'http://127.0.0.1:8120/api/v1/formula/convert' \
  2. --header 'TOKEN: ad82c6ae-f7a3-486b-b933-aa19104d8142' \
  3. --header 'Content-Type: application/json' \
  4. --data-raw '{
  5. "source": "btc",
  6. "target": "usdt",
  7. "amount": "0.99",
  8. "scale": 18,
  9. "middles": ["btc", "usdt"],
  10. "exchanges": ["okex"]
  11. }'
  1. {
  2. "code": 200,
  3. "data": {
  4. "source": "btc",
  5. "target": "usdt",
  6. "result": 99.000000000000000000,
  7. "price": 100.000000000000000000,
  8. "amount": 0.99,
  9. "path": [
  10. {
  11. "market": {
  12. "exchange": "okex",
  13. "code": "btc_usdt",
  14. "base": "btc",
  15. "quote": "usdt",
  16. "price": 100,
  17. "timestamp": 0
  18. },
  19. "source": "btc",
  20. "target": "usdt",
  21. "price": 100
  22. }
  23. ]
  24. },
  25. "message": null,
  26. "success": true
  27. }

benchmark

See benchmark.