All Projects → antoinebaron-io → moon-doge

antoinebaron-io / moon-doge

Licence: other
Buy DogeCoin automatically when Elon Musk tweet about it, and sell after profit

Programming Languages

PHP
23972 projects - #3 most used programming language

Projects that are alternatives of or similar to moon-doge

Twitter Activated Crypto Trading Bot
Buys crypto through keyword detection in new tweets. Executes buy in 1 second and holds for a given time (e.g. Elon tweets 'doge', buys Dogecoin and sells after 5 minutes). Tested on Kraken and Binance exchanges
Stars: ✭ 92 (+360%)
Mutual labels:  trading, trading-bot, dogecoin, binance
tradoge
DOGE trading bot for instantly buying and selling DOGE cryptocurrency on Binance when Elon Musk tweets about it.
Stars: ✭ 122 (+510%)
Mutual labels:  trading-bot, dogecoin, binance, elon-musk
pancakeswap-prediction-winner
🔥 PancakeSwap is afraid of this CHROME EXTENSION (and CLI)! This bot wins almost every 5 minute BNB-USD option on PancakeSwap (and Candle Genie).
Stars: ✭ 229 (+1045%)
Mutual labels:  trading, trading-bot, binance
tradingview-alert-binance-trader
This trading bot listens to the TradingView alert emails on your inbox and executes trades on Binance based on the parameters set on the TD alerts.
Stars: ✭ 153 (+665%)
Mutual labels:  trading, trading-bot, binance
PancakeSwapBot
PancakeSwap prediction bot
Stars: ✭ 38 (+90%)
Mutual labels:  trading, trading-bot, binance
Blankly
🚀 💸 Easily build, backtest and deploy your algo in just a few lines of code. Trade stocks, cryptos, and forex across exchanges w/ one package.
Stars: ✭ 1,456 (+7180%)
Mutual labels:  trading, trading-bot, binance
binance-downloader
Python tool to download Binance Candlestick (k-line) data from REST API
Stars: ✭ 44 (+120%)
Mutual labels:  trading, trading-bot, binance
LickHunterPRO
Cryptocurrency Trading Bot that looks for large pools of liquidity getting liquidated on margin trading, when it finds these it counter trades them!
Stars: ✭ 114 (+470%)
Mutual labels:  trading, trading-bot, binance
Trading Server
A multi-asset, multi-strategy, event-driven trade execution and management platform for running many algorithms/bots at many venues simultaneously with unified risk management and reporting. Uses MongoDB for storage and Telegram for user notifications/trade consent.
Stars: ✭ 191 (+855%)
Mutual labels:  trading, trading-bot, binance
Bybit-Auto-Trading-Bot-Ordes-placed-via-TradingView-Webhook
Python based Trading Bot that uses TradingView.com webhook JSON alerts to place orders(buy/sell/close/manage positions/TP/SL/TS etc.) on Bybit.com. Hire me directly here https://www.freelancer.com/u/Beannsofts for any assistance
Stars: ✭ 235 (+1075%)
Mutual labels:  trading, trading-bot, binance
PancakeSwapPredictionBot
PancakeSwap V2 Prediction Bot With Machine Learning | Automated Strategy, Auto Betting, Auto Claim
Stars: ✭ 21 (+5%)
Mutual labels:  trading, trading-bot, binance
crypto-database
Database for crypto data, supporting several exchanges. Can be used for TA, bots, backtest, realtime trading, etc.
Stars: ✭ 72 (+260%)
Mutual labels:  trading, trading-bot, binance
Cryptotrader
A cryptocurrency trader for all famous exchanges
Stars: ✭ 228 (+1040%)
Mutual labels:  trading, trading-bot, binance
Mida
The open-source and cross-platform trading framework
Stars: ✭ 263 (+1215%)
Mutual labels:  trading, trading-bot, binance
Bbgo
The modern cryptocurrency trading bot written in Go.
Stars: ✭ 192 (+860%)
Mutual labels:  trading, trading-bot, binance
ninjabot
A fast trading bot platform for cryptocurrency in Go (Binance)
Stars: ✭ 1,021 (+5005%)
Mutual labels:  trading, trading-bot, binance
Cassandre Trading Bot
Cassandre makes it easy to create your Java crypto trading bot. Our Spring boot starter takes care of exchange connections, accounts, orders, trades, and positions.
Stars: ✭ 120 (+500%)
Mutual labels:  trading, trading-bot, binance
Krypto Trading Bot
Self-hosted crypto trading bot (automated high frequency market making) written in C++
Stars: ✭ 2,589 (+12845%)
Mutual labels:  trading, trading-bot, binance
binance-pump-bot
Automation for Binance p&d(pump and dump) activity, ensures fastest purchase and provides auto selling functionality to lockdown profit during these events.
Stars: ✭ 112 (+460%)
Mutual labels:  trading, trading-bot, binance
Benzaiboten-spot-trading-bot
A trading bot easy to use to be linked to your favorite exchange to automatize the trading on cryptocurrencies
Stars: ✭ 20 (+0%)
Mutual labels:  trading, trading-bot, binance

moon-doge PHP BOT

moon-doge v2 is a PHP bot that will buy DogeCoin on FTX when Elon Musk mention DogeCoin on twitter. (check v1 for binance)

Be aware that this script is for educational purposes only

The script will open a websocket connection and monitor Elon Musk twitter account. If a mention of dogecoin is found in his last tweet, the script will immediately send a market-buy order of dogecoin on FTX (spot or with leverage). The script will also optionnaly set the stop loss/take profit.

Capture du 2021-04-01 13-13-49

Capture du 2021-04-01 13-12-10

Dependencies

The script works using :

Installation

composer require antoinebaron-io/moon-doge

Configuration

open

vendor/antoinebaron-io/moon-doge/MoonDoge.php

and look for the config array at the top of the file

Usage

Create a new file index.php and paste :

require_once('vendor/autoload.php');

$moonDoge = new MoonDoge();

$moonDoge->run();

Then run in terminal : php index.php

Run a simulation

You don't want to wait for Elon to tweet about doge to find out there where a configuration problem ... So you can first run the bot to watch your own twitter account, then send a test tweet containing the doge or dogecoin word, and see if it is working.

require_once('vendor/autoload.php');

$moonDoge = new MoonDoge();

$moonDoge->run('your_twitter_screen_name');


Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].