All Projects → ShahAnuj2610 → my-freqtrade

ShahAnuj2610 / my-freqtrade

Licence: other
Strategy for freqtrade

Programming Languages

python
139335 projects - #7 most used programming language
Jupyter Notebook
11667 projects

Projects that are alternatives of or similar to my-freqtrade

AutoTrader
A Python-based development platform for automated trading systems - from backtesting to optimisation to livetrading.
Stars: ✭ 227 (+845.83%)
Mutual labels:  algo-trading
ibeam
IBeam is an authentication and maintenance tool used for the Interactive Brokers Client Portal Web API Gateway.
Stars: ✭ 244 (+916.67%)
Mutual labels:  algo-trading
tvdatafeed
A simple TradingView historical Data Downloader
Stars: ✭ 189 (+687.5%)
Mutual labels:  algo-trading
prop
An open and opinionated trading platform using productive & familiar open source libraries and tools for strategy research, execution and operation.
Stars: ✭ 26 (+8.33%)
Mutual labels:  algo-trading
algotrading-example
algorithmic trading backtest and optimization examples using order book imbalances. (bitcoin, cryptocurrency, bitmex, binance futures, market making)
Stars: ✭ 169 (+604.17%)
Mutual labels:  algo-trading
stockbot
Alpaca algo stock trading bot
Stars: ✭ 105 (+337.5%)
Mutual labels:  algo-trading
rl trading
No description or website provided.
Stars: ✭ 14 (-41.67%)
Mutual labels:  algo-trading
cira
Cira algorithmic trading made easy. A Façade library for simpler interaction with alpaca-trade-API from Alpaca Markets.
Stars: ✭ 21 (-12.5%)
Mutual labels:  algo-trading
python-api
Trading API for Quedex Bitcoin Derivatives Exchange.
Stars: ✭ 20 (-16.67%)
Mutual labels:  algo-trading
LiuAlgoTrader
Framework for algorithmic trading
Stars: ✭ 514 (+2041.67%)
Mutual labels:  algo-trading
hummingbot
Hummingbot is open source software that helps you build trading bots that run on any exchange or blockchain
Stars: ✭ 3,602 (+14908.33%)
Mutual labels:  algo-trading
Metatrader
Expert advisors, scripts, indicators and code libraries for Metatrader.
Stars: ✭ 99 (+312.5%)
Mutual labels:  algo-trading
GOAi
No description or website provided.
Stars: ✭ 57 (+137.5%)
Mutual labels:  algo-trading
quanttrader
Backtest and live trading in Python
Stars: ✭ 139 (+479.17%)
Mutual labels:  algo-trading
ccapi
A header-only C++ library for interacting with crypto exchanges. Binding for Python is provided. A spot market making application is also provided as an end-to-end solution for liquidity providers.
Stars: ✭ 227 (+845.83%)
Mutual labels:  algo-trading

Disclaimer

Use it at your own risk.

Getting Started

sudo apt update
sudo apt upgrade -y
sudo apt install docker-compose -y
sudo mkdir service
cd service
sudo git clone https://github.com/freqtrade/freqtrade.git
cd freqtrade
sudo chmod -R 777 /var/run/docker.sock
docker-compose pull

Oracle Cloud VM port Expose

sudo iptables -I INPUT 6 -m state --state NEW -p tcp --dport 80 -j ACCEPT
sudo netfilter-persistent save

Define your GitHub secrets

export DOCKER_SSH_HOST=192.168.0.1
export DOCKER_SSH_USERNAME=ubuntu
export DOCKER_SSH_PRIVATE_KEY=<>
export [email protected]
export DOCKER_SSH_PUBLIC_KEY=<>
export GH_PAT=<>

Create a swap file

sudo fallocate -l 100G /swapfile
sudo chmod 600 /swapfile
sudo mkswap /swapfile
sudo swapon /swapfile
sudo cp /etc/fstab /etc/fstab.bak
echo '/swapfile none swap sw 0 0' | sudo tee -a /etc/fstab

Delete swap file

sudo swapoff /swapfile
sudo rm /swapfile
sudo cp /etc/fstab.bak /etc/fstab

run python script in background using screen

screen -S freqtrade -d -m python3 compare_file_content.py

see logs in screen

screen -r freqtrade

stop screen

screen -r freqtrade -X quit
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].