Skip to main content

Build Windows Build Coverage Status Code Climate Python Versions Live Demo

What problem does it solve?

trade calculates the results of investments. You inform a series of assets, a series of operations with those assets, and trade tells the money you invested in each asset, the profits from buying and selling each asset, and more. It is focused in, but not limited to, stock exchange operations.

trade is still in early development, but you can already try it live!

Installation

The trade module can be installed with pip:

$ pip install trade

To check if everything went OK, open the Python console and import the module:

import trade
asset = trade.Asset(symbol='AMZN')

Quickstart

A basic example of the trade module in action:

import trade
interface = trade.TradeJSON()

json_input = '''{
    "subjects": {
        "GOOG": {
            "type": "Asset",
            "name": "Google Inc"
        },
        "AAPL": {
            "type": "Asset",
            "name": "Apple, Inc."
        }
    },
    "occurrences": [
        {
            "type": "Operation",
            "subject": "AAPL",
            "date": "2015-11-10",
            "quantity": 10,
            "price": 120.15
        },
        {
            "type": "Operation",
            "subject": "GOOG",
            "date": "2015-11-10",
            "quantity": 10,
            "price": 724.89
        },
        {
            "type": "Operation",
            "subject": "GOOG",
            "date": "2015-11-10",
            "quantity": -5,
            "price": 724.98
        }
    ],
    "initial state": {
        "AAPL": {
            "date": "2015-10-09",
            "quantity": 92,
            "price": 119.27,
            "results": {"trades": 5021.72}
        }
    }
}'''

json_output = interface.get_trade_results(json_input)

print(json_output)
#$ {
#  "assets": {
#    "AAPL": {
#      "states": {
#        "2015-10-09": {
#          "price": 119.27,
#          "quantity": 92,
#          "results": {
#            "trades": 5021.7200000000003
#          }
#        },
#        "2015-11-10": {
#          "price": 119.35627450980392,
#          "quantity": 102,
#          "results": {
#            "trades": 5021.7200000000003
#          }
#        }
#      },
#      "totals": {
#        "daytrades": 0,
#        "operations": 1,
#        "purchases": 1,
#        "results": {
#          "trades": 5021.7200000000003
#        },
#        "sales": 0
#      }
#    },
#    "GOOG": {
#      "states": {
#        "2015-11-10": {
#          "price": 724.88999999999999,
#          "quantity": 5,
#          "results": {
#            "daytrades": 0.45000000000027285
#          }
#        }
#      },
#      "totals": {
#        "daytrades": 1,
#        "operations": 2,
#        "purchases": 1,
#        "results": {
#          "daytrades": 0.45000000000027285
#        },
#        "sales": 1
#      }
#    }
#  },
#  "totals": {
#    "daytrades": 1,
#    "operations": 3,
#    "purchases": {
#      "operations": 2,
#      "volume": 8450.3999999999996
#    },
#    "results": {
#      "daytrades": 0.45000000000027285,
#      "trades": 5021.7200000000003
#    },
#    "sales": {
#      "operations": 1,
#      "volume": 3624.9000000000001
#    }
#  }
#}

Compatibility

trade is compatible with Python 2.7, 3.3, 3.4 and 3.5.

Version

The current version is 0.2.7 alpha.

License

Copyright (c) 2015 Rafael da Silva Rocha

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the “Software”), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED “AS IS”, WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

trade-0.2.7.zip (26.8 kB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

trade-0.2.7-py2.py3-none-any.whl (22.9 kB view details)

Uploaded Python 2Python 3

File details

Details for the file trade-0.2.7.zip.

File metadata

  • Download URL: trade-0.2.7.zip
  • Upload date:
  • Size: 26.8 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No

File hashes

Hashes for trade-0.2.7.zip
Algorithm Hash digest
SHA256 cbbefed3c965acf663a105e63d28ad5a607a696fa27d89c6f0dafc9638a13c5e
MD5 0605fc266537e02226bc178e539c925a
BLAKE2b-256 03363938b25731070f5eb6a92c8904eccf1cba675b60f04e78e8106ce45358ef

See more details on using hashes here.

File details

Details for the file trade-0.2.7-py2.py3-none-any.whl.

File metadata

File hashes

Hashes for trade-0.2.7-py2.py3-none-any.whl
Algorithm Hash digest
SHA256 df22848bfb7aafca4836808a955c32e9d886ee90edf0f7091c2219a1a3c92008
MD5 71995142779c879b2f7cddba31c781eb
BLAKE2b-256 051e9d7932b47a1d950e6e1b66c4e4f179e664258d247c1b8280808e56c22e2f

See more details on using hashes here.

Release history Release notifications | RSS feed

1.1.4

2 files

1.1.3

2 files

1.1.2

2 files

1.1.1

2 files

1.1.0

2 files

1.0.0

1 file

0.4.2

2 files

0.4.1

2 files

0.4

2 files

0.2.9

2 files

0.2.8

2 files

This release

0.2.7 This release

2 files

0.2.6

1 file

0.2.5

1 file

0.2.4

1 file

0.2.3

1 file

0.2.2

1 file

0.2.1

1 file

0.2

1 file

0.1.9

1 file

0.1.8

1 file

0.1.7

1 file

0.1.6

1 file

0.1.5

1 file

0.1.4

1 file

0.1.3

1 file

0.1.2

1 file

0.1.1

1 file

0.1.0

1 file

0.0.9

1 file

0.0.8

1 file

0.0.7

1 file

0.0.6

1 file

0.0.5

1 file

0.0.4

1 file

0.0.3

1 file

0.0.2

1 file

0.0.1

1 file

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page