Skip to main content

ZI DCT0 implementation in python

Project description

# ZI DCT0

This is a Python implementation for the ZI DCT0 trading algorithm. The explanation of the algorithm is beyond the scope of this documentation.
Use at your own risk.

**Source code** [https://github.com/kiennt23/zi_dct0](url)

## Install
Use pip to install the library
```commandline
pip install zi_dct0
```

## Usage
First setup log config
```python
LOG_LEVEL = logging.INFO
core.algo.config_log(LOG_LEVEL)
```
Then setup trade method
```python
trade_method = TradeMethod.TF
core.algo.config_trade_method(trade_method)
```
Set LAMBDA (delta price)
```python
core.algo.delta_p = LAMBDA
```

After setup all the configuration, then run the calculation
```python
event_type = core.algo.zi_dct0(p_t)
```
whether `p_t` is the price at time *t*

from `event_type` we conclude if is a buy/sell signal `core.algo.is_buy_signaled(event_type, trade_method)` or `core.algo.is_sell_signaled(event_type, trade_method)`



Project details


Download files

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

Source Distribution

zi_dct0-0.0.2.tar.gz (2.1 kB view hashes)

Uploaded Source

Built Distribution

zi_dct0-0.0.2-py3-none-any.whl (2.5 kB view hashes)

Uploaded Python 3

Supported by

AWS AWS Cloud computing and Security Sponsor Datadog Datadog Monitoring Fastly Fastly CDN Google Google Download Analytics Microsoft Microsoft PSF Sponsor Pingdom Pingdom Monitoring Sentry Sentry Error logging StatusPage StatusPage Status page