Skip to content

the basic programming for a trading bot (code from CyberPunkMetalHead)

Notifications You must be signed in to change notification settings

seth-mc/base-bot

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

30 Commits
 
 
 
 
 
 
 
 

Repository files navigation

Base Bot

Welcome to the Base Bot - which will be the launch pad for our project! Check out the Lucid Chart here:

[IN PROGRESS]

To add the repository to your own computer:

The manual approach:

  1. Click Code > Download ZIP.
  2. Open the ZIP file and put it somewhere nice.
  3. Tinker with the code. If you want to make changes and push them back, you will need to folow the cool coding approach.

The cool coding approach:

  1. Ensure you have Git installed
git --version
  1. Create a new file for your GitHub documents.
  2. Copy the filepath by going Edit > click "Alt" and select 'Copy "GitHub" as Filename'.
  3. open Terminal. Enter the following:
cd [paste FILEPATH to base-bot]
  1. clone the repo on in to your GitHub file:
git clone https://github.com/seth-mc/base-bot.git

After making changes to the repository:

  1. open Terminal. Enter the following:
cd [FILEPATH to GitHub]
  1. Then, either add the URL (Or set-URL if you get a "fatal: remote origin already exists" error)
git remote add origin https://github.com/seth-mc/base-bot.git

git remote set-url origin https://github.com/seth-mc/base-bot.git

  1. Update the files with your new code:

    To add all the changes you've made: git add . To add single folder: git add directory path To add multiple folders: git add folder1 folder2 folder3 folder4

git add .
git commit -m "enter description here"
git push origin main

If you want to pull the latest changes to your existing folder:

  1. open Terminal. Enter the following:
cd [paste FILEPATH to base-bot]
  1. to a pull from the main branch:
git pull origin main

About

the basic programming for a trading bot (code from CyberPunkMetalHead)

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published