Skip to main content

A package for predicting buy and sell signals

Project description

Evx regpredict mlbot

This is a simplified version of evxpredictor package used to generate buy and sell signals for crypto and conventional stock markets based on the excess volume indicator(EVX). EVX is a concept where the bid-ask spread is estimated inherently from current market prices.

You can read more about Evx in the whitepaper here

Installation

Install regpredict with python3 -m pip install regpredict

Usage

In your python script simply import the module and use as follows:

from regpredict.regbot import signal
print(signal(20,65,85,78,45,0.7))

The above methods take an assets a,b,macd,macdsignal,grad_histogram,close_gradient,close_gradient_neg based on the time interval you have chosen. A zero classification output would instruct the user to sell, while one output means don't sell or buy if the asset is not already present in the orders.

Testing an entire dataframe

Testing of a dataframe for correct buy, sell signals is as simple as applying the function as follows:

import pandas as pd
from regbot import signal
#from regpredict.regbot import signal
df = pd.read_csv('../path/to/your_validation.csv')

y_pred = []
def getSignal(a,b,macd,macdsignal,grad_histogram,close_gradient,close_gradient_neg):
    return signal(a,b,macd,macdsignal,grad_histogram,close_gradient,close_gradient_neg)

Where thr is a user defined threshold.


df = df[df['enter_long'] == 1]
print(df.head())

df['result'] = df.apply(lambda row: getSignal(row['a'],row['b'],row['macd'],row['macdsignal'],row['grad-histogram'],row['close-gradient']row['close-gradient-neg']), axis=1)

print(df.head())

print(len(df[df['result'] == df['enter_long']]), len(df))

Your original data must already have some presumed 'buy' signal.

Warning

This is not financial advise. Regpredict is entirely on its preliminary stages. Use it at your own risk.

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

regpredict-0.0.69.tar.gz (10.4 kB view details)

Uploaded Source

Built Distribution

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

regpredict-0.0.69-py3-none-any.whl (9.6 kB view details)

Uploaded Python 3

File details

Details for the file regpredict-0.0.69.tar.gz.

File metadata

  • Download URL: regpredict-0.0.69.tar.gz
  • Upload date:
  • Size: 10.4 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.4

File hashes

Hashes for regpredict-0.0.69.tar.gz
Algorithm Hash digest
SHA256 ede79ea0bfe5a3c042a296c96fd95d6e772f2306336b72a84d73afdb14ac5d4e
MD5 8fadb0b155d388c598753dea7684bf8f
BLAKE2b-256 3729cccaf14c846eb851420c53e6d5a51eb0eddd962039dbff48a37916571bed

See more details on using hashes here.

File details

Details for the file regpredict-0.0.69-py3-none-any.whl.

File metadata

  • Download URL: regpredict-0.0.69-py3-none-any.whl
  • Upload date:
  • Size: 9.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/5.0.0 CPython/3.10.4

File hashes

Hashes for regpredict-0.0.69-py3-none-any.whl
Algorithm Hash digest
SHA256 25000f189ad457b43815e59f61216c88bf085136f05b944b180cd1b269fa4de3
MD5 4a6b234616c563c6fa5b3fe25dfd79c6
BLAKE2b-256 19b249172e61b8af4d7bd4081ff4afe007e2ec99e098bd960d38614b18b17bde

See more details on using hashes here.

Supported by

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