Metadata-Version: 2.1
Name: td-sequential-calculator
Version: 0.1.0
Summary: A library to calculating td sequental.
Home-page: https://github.com/onuratakan/td_sequential_calculator
Author: Onur Atakan ULUSOY
Author-email: atadogan06@gmail.com
License: MIT
Platform: UNKNOWN
Requires-Python: >= 3
Description-Content-Type: text/markdown
License-File: LICENSE


# TD Sequential Calculator
A library to calculating td sequental.
# Install
```
pip3 install td-sequential-calculator
```
# Using
## In another script
```python
from td_sequential_calculator import TDS
for i in range(13):
  buy_setup, sell_setup, buy, sell = TDS.price_update(i)
  print(f"Buy setup: {buy_setup}")
  print(f"Sell setup: {sell_setup}")
  if buy:
    print("BUY")
  elif sell:
    print("SELL")
```


