Skip to content

Butoshi/Botsentinelv1

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

1 Commit
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

SENTINEL Trading Bot

Automated trading bot for PumpFun with Artificial Intelligence.

Quick Start

1. Install Python

Download Python 3.10+ from https://python.org

2. Install dependencies

pip install -r requirements.txt

3. Configure the bot

  1. Copy .env.example to .env
  2. Open .env with a text editor (Notepad, VS Code, etc.)
  3. Fill in your information:
# Your Solana private key
SOLANA_PRIVATE_KEY=your_private_key_here

# Your public address
SOLANA_PUBLIC_KEY=your_public_address_here

# Amount per trade (in SOL)
BUY_AMOUNT_SOL=0.05

# Simulation mode (true = no real money)
SIMULATION_MODE=true

4. Run the bot

python live_trading_bot.py

Configuration

All configuration is done in the .env file:

Variable Description Example
SOLANA_PRIVATE_KEY Your private key 5Kj7q...
SOLANA_PUBLIC_KEY Your wallet address 7xKp...
BUY_AMOUNT_SOL Amount per trade 0.05
SIMULATION_MODE true = test, false = real true
STOP_LOSS_PERCENT Stop loss in % 35
POSITION_TIMEOUT_MINUTES Timeout in minutes 45

Modes

  • SIMULATION_MODE=true : Bot runs but doesn't use real money (for testing)
  • SIMULATION_MODE=false : Real trading with your SOL

Security

  • NEVER share your .env file
  • NEVER share your private key
  • Always start in simulation mode
  • Test with small amounts first (0.01 SOL)

Support

For questions, open an issue on GitHub.

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors