Skip to content

leandrodalbo/crypto-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

38 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Crypto Trading Bot

This project is designed to automate trading using Kraken API.

Features

  • Automated Trading: Executes trades based on predefined strategies without manual intervention.

Getting Started

Prerequisites

  • Java Development Kit (JDK): Ensure that JDK 21 installed on your machine.
  • Gradle: This project uses Gradle for build automation.

Installation

  1. Clone the repository:
   git clone https://github.com/leandrodalbo/crypto-bot.git
   cd crypto-bot
  1. Custom configurations:

1 hour candles conf

bot:
  validationCron: "0 */15 * * * *"
  newTradeCron: "0 */30 * * * *"
  
kraken:
  key: abc
  secret: def
  candlesInterval: 60
  candlesSince: 5
  candlesSinceUnit: DAY

operation:
  minutesLimit: 90
  stop: 0.006
  profit: 0.018
  currency: USDZ
  notBelow: 500

15 min candles conf

bot:
  validationCron: "0 */3 * * * *"
  newTradeCron: "0 */15 * * * *"
  
kraken:
  key: abc
  secret: def
  candlesInterval: 15
  candlesSince: 2
  candlesSinceUnit: DAY

operation:
  minutesLimit: 60
  stop: 0.006
  profit: 0.018
  currency: USDZ
  notBelow: 500
  1. Run Bot:
    ./gradlew bootRun

About

Crypto Trading Bot

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages