Giter VIP home page Giter VIP logo

Comments (6)

brianleect avatar brianleect commented on June 27, 2024

Can you paste your config.yml file? I suspect its to do with it.

from binance-pump-alerts.

padevin avatar padevin commented on June 27, 2024


# Binance Pump and Dump Alert Configuration

# Using Spot API with url set to https://api.binance.com/api/v3/ticker/price
# Using Futures API with url set to: https://fapi.binance.com/fapi/v1/ticker/price
apiUrl: https://api.binance.com/api/v3/ticker/price

# Intervals which are monitored. Add or remove intervals as you like.
chartIntervals:
 - 1s
 - 5s
 - 15s
 - 30s
 - 1m
 - 5m
 - 15m
 - 30m
 - 1h
 - 3h
 - 6h

# Values in % at which an alert is triggered. Ensure interval exists in chartIntervals as well.
outlierIntervals:
 "1s": 0.02
 "5s": 0.05
 "15s": 0.06
 "30s": 0.08
 "1m": 0.1
 "5m": 0.10
 "15m": 0.15
 "30m": 0.20
 "1h": 0.30
 "3h": 0.4
 "6h": 0.5

# Used for telegram bot updates

# Insert telegramToken obtained from @BotFather here
telegramToken: token
# Insert Chat ID obtained from @get_id_bot here
telegramChatId: id
# Insert Chat ID for top pump dump alert, if left on `0` it'll send the message to telegram chat id
telegramAlertChatId: 0

# Useful Params

# Interval between each price extract from Binance REST API
extractInterval: 1s

# Watchlist only mode, if enabled, ONLY pairs in watchlist will be monitored
# E.g. 'ADAUSDT', 'ETHUSDT'
watchlist:
 - OCEANUSDT
 - MAGICUSDT
 - DARUSDT
 - HFTUSDT
 - HOOKUSDT
 - PHBUSDT
 - AMBUSDT
 - SANTOSUSDT
 - PORTOUSDT
 - LAZIOUSDT
 - ALPINEUSDT
 - ATMUSDT
 - ACMUSDT
 - PSGUSDT
 - CITYUSDT
 - OGUSDT
 - ASRUSDT
 - TVKUSDT
 - TLMUSDT
 - USTCUSDT
 - LUNCUSDT
 - LUNAUSDT
 - DFUSDT
 - CVPUSDT
 - COSUSDT
 - COCOSUSDT
 - AVAXUSDT
 - JOEUSDT
 - DEGOUSDT
 - ERNUSDT
 - HIGHUSDT
 - LOKAUSDT
 - VOXELUSDT
 - MANAUSDT
 - SANDUSDT
 - ENJUSDT
 - SNMBUSD
 - VIBUSDT
 - PROSUSDT
 - AERGOBUSD
 - ONEUSDT
 - CELRUSDT
 - WINGUSDT
 - BONDUSDT
 - AUTOUSDT
 - BIFIUSDT
 - QUICKUSDT
 - FARMUSDT
 - AXSUSDT
 - SLPUSDT
 - PERLUSDT
 - PNTUSDT
 - SFPUSDT
 - C98USDT
 - TWTUSDT
 - SHIBUSDT
 - DOGEUSDT
 - GASBUSD
 - NEOUSDT
 - JSTUSDT
 - SUNUSDT


# Blacklist only mode, if enabled, pairs in blacklist will be IGNORED it DOES NOT IMPACT pairsOfInterest
blacklist:
 - NBTUSDT
#  - ETHUSDT

# List the trading currency you are interested in. Other options include 'BUSD', 'BTC' , 'ETH'
pairsOfInterest:
 - USDT
 - BUSD

# Feature params

# Determine whether to look at DUMPs
dumpEnabled: False

# Top Pump & Dump Feature Params

# Set to false if not interested in top pump info
topPumpEnabled: True
# Set to false if not interested in top dump info
topDumpEnabled: True
# Set to false if not interested in net movement of coins
additionalStatsEnabled: True
# Top X amount of coins shown in the interval report, adjust to show more or less within the timeframe
noOfReportedCoins: 5
# Intervals for top pump and dump to be sent, ensure its in chartIntervals + outlierIntervals as well
topReportIntervals:
 - 3h
 - 6h

# Define your own bot emojis.
botEmoji: ! "\U0001F916" # 🤖
pumpEmoji: ! "\U0001F7E2" # 🟢 or '\U0001F4C8' 📈 '\U0001F53C'🔼
dumpEmoji: ! "\U0001F534" # 🔴 or '\U0001F4C9' 📉 '\U0001F53D'🔽
topEmoji: ! "\U0001F3C6" # 🏆
newsEmoji: ! "\U0001F4F0" # 📰 or '\U0001F680' 🚀

# Debug Params (Avoid touching it if there's no issues)

# If False we do not print unnecessary messages
debug: False
# Skip alert at higher timeframes when change in % did not change value by threshold in percentage points
alertSkipThreshold: 0.75
# Interval for clearing array to prevent memory can handle up to 12h+ depending on system
resetInterval: 6h
# In the case of get price fail, this is the time delay before re-attempt
priceRetryInterval: 5s
# Disables checking and adding of new listing pairs
checkNewListingEnabled: True
# Disables rounding to nearest hour for first TPD if false
topReportNearestHour: True #

from binance-pump-alerts.

padevin avatar padevin commented on June 27, 2024

it works on my laptop but wont work in my google vm

from binance-pump-alerts.

padevin avatar padevin commented on June 27, 2024

same version of python and packages in both

from binance-pump-alerts.

padevin avatar padevin commented on June 27, 2024

waiting for solution

from binance-pump-alerts.

brianleect avatar brianleect commented on June 27, 2024

hmm I'm not too familiar with the difference in environment for google vm and the normal env. Are you running it with the correct python? Sometimes there are multiple versions on python in the OS and a different version may be called depending if you used python ___ vs python3 ___ etc

Not too sure if I can help much outside of this since it functions for me on my local laptop and also ec2 environment.

Alternative may be to try running it via docker but I'm not too familiar with using it and the person previously who maintained is no longer actively contributing to this repo.

from binance-pump-alerts.

Related Issues (20)

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.