Skip to main content

A package for predicting buy and sell signals

Project description

tothemoon evx ML model

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 free whitepaper here

Installation

Install tothemoon with python3 -m pip install tothemoon

Usage

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

from tothemoon.moon import signal
print(signal(20,65,utcdatetime))

The above methods take an assets open, close prices of the asset based on the time interval you have chosen in OHCLV type. 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 moon import signal, Regbot

df = pd.read_csv('path/toyour/file.csv')

def getSignal(open,close,utcdatetime):
    return signal(open,close,utcdatetime)

# select long profitable trades
df2 = df[df['close_profit_abs'] > 0]
df2 = df2[df2['is_short'] == 0]
print(df2.head())

# Run all predictions
df2['enter_long_pred'] = df.apply(lambda row: getSignal(row['open'], row['close'], row['date']), axis=1)

print(len(df2[df2['enter_long_pred'] == df2['is_short']]), len(df) )

print(df2[df2['is_short']==0].head(15))

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

Warning

This is not financial advise. tothemoon 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

tothemoon-0.1.9.tar.gz (143.2 kB view details)

Uploaded Source

Built Distribution

tothemoon-0.1.9-py3-none-any.whl (141.6 kB view details)

Uploaded Python 3

File details

Details for the file tothemoon-0.1.9.tar.gz.

File metadata

  • Download URL: tothemoon-0.1.9.tar.gz
  • Upload date:
  • Size: 143.2 kB
  • Tags: Source
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.4

File hashes

Hashes for tothemoon-0.1.9.tar.gz
Algorithm Hash digest
SHA256 a6454cb7113793cfe185ab350b878fcd9a6dbf45845b76a85c6336c7ab951041
MD5 604fe1734babfcc37d956dc96411143d
BLAKE2b-256 2e77f33592681d2da3b8d3b0d1f574f594a309d323c9faf43d2f992ab946e779

See more details on using hashes here.

File details

Details for the file tothemoon-0.1.9-py3-none-any.whl.

File metadata

  • Download URL: tothemoon-0.1.9-py3-none-any.whl
  • Upload date:
  • Size: 141.6 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? No
  • Uploaded via: twine/4.0.1 CPython/3.10.4

File hashes

Hashes for tothemoon-0.1.9-py3-none-any.whl
Algorithm Hash digest
SHA256 7974a0aab868a1c68464bb64f884a72c02221a6d562f8db46e71fa2eea718387
MD5 8e2238aaf3fd49734f70bce27119d711
BLAKE2b-256 caa8f8de7312bf582504632848bcb73084d1e83550c04796993fdc75788f4ecd

See more details on using hashes here.

Supported by

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