Welcome, Guest |
You have to register before you can post on our site.
|
Forum Statistics |
» Members: 28,530
» Latest member: john120
» Forum threads: 1,541
» Forum posts: 8,068
Full Statistics
|
Latest Threads |
Gekko with malware spotte...
Forum: Announcements
Last Post: Isobel
Yesterday, 04:06 PM
» Replies: 191
» Views: 170,368
|
Gekko development status ...
Forum: Announcements
Last Post: kontho
Yesterday, 04:00 PM
» Replies: 1,008
» Views: 934,447
|
Gekko 0.6 released
Forum: Announcements
Last Post: Pharagon
11-23-2024, 10:13 AM
» Replies: 122
» Views: 269,168
|
An official Gekko service...
Forum: Announcements
Last Post: drivemad2
11-22-2024, 07:24 AM
» Replies: 103
» Views: 190,175
|
New Gekko UI in the works
Forum: Announcements
Last Post: clduplicateremover
11-18-2024, 08:21 PM
» Replies: 174
» Views: 227,897
|
How to Soft Reset or Hard...
Forum: General Discussion
Last Post: lucifar
10-07-2021, 07:18 PM
» Replies: 22
» Views: 53,037
|
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 108,428
|
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 19,125
|
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 45,840
|
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 58,591
|
|
|
Windows x64 Install Error |
Posted by: tarkan - 07-19-2018, 11:50 PM - Forum: Technical Discussion
- Replies (1)
|
|
Hi, during the installation i got the errors below.
C:\Users\tarka\Downloads\gekko-develop\gekko-develop\exchange>npm install --only=production
npm ERR! code ENOGIT
npm ERR! No git binary found in $PATH
npm ERR!
npm ERR! Failed using git.
npm ERR! Please check if you have git installed and in your PATH.
npm ERR! A complete log of this run can be found in:
npm ERR! C:\Users\tarka\AppData\Roaming\npm-cache\_logs\2018-07-19T23_45_14_920Z-debug.log
I done exactly the same what on the install page was written.
Thank you for your help,
|
|
|
Live Gekko Not Using Imported Data |
Posted by: faldor - 07-19-2018, 11:09 PM - Forum: General Discussion
- Replies (11)
|
|
When running a Market watcher/Strat runner, it seems to get the data from fresh when I have already imported data for the same trading pair and exchange up till now. I would expect the Live Gekkos to piece together the imported data with the fresh data to make up the "Warmup Period" that my Live Gekko needs. When running a live gekko on 12 hour candles and a warmup period of 90 (using EMA(90)) in my strat, it would take over a month of fresh data if it doesn't utilize the imported data I have already got. Is this how Gekko is supposed to work? If so, could I easily get it to use imported data and piece together any data inbetween to get my live gekkos making calls instantly?
Thanks!
|
|
|
Changing DB |
Posted by: cthulhu - 07-18-2018, 05:35 PM - Forum: General Discussion
- No Replies
|
|
Hello,
i just tried for hours to change the database,
but i am not getting it...
in the
web/vue/dist/UIconfig.js
i change the adapter to postgresql
after starting the gekko i can browser the ui and import etc. without getting an error.
till now i did not enter any username and pw for the db!?
why the ui does not use the configured adapter?
tried the same with mongo. everytime i entered not user and pw and the database was not running.
getting no error!?
how can I change the database for everything?
|
|
|
Debug backtest |
Posted by: codinghamster - 07-18-2018, 05:11 PM - Forum: Technical Support
- Replies (2)
|
|
Hi, I'm not seeing any debug info in the console when I run a backtest. I tried adding log.debug('hello world'); right below the log import at the top of my custom file to test logging, but can't get it working.
Thanks
|
|
|
Telegram notifications workaround (Binance only) |
Posted by: bishop - 07-18-2018, 04:15 PM - Forum: Custom Systems
- Replies (2)
|
|
Currently Gekko supports Telegram notifications via CLI only.
I'm running tradebot (Web UI) during a week now, and wanted to be notified about live trades.
The solutions (Binance only) is the following: https://github.com/andresilvasantos/bitprophet
As soon as you have BitProphet installed, open node_modules/bitprophet/bitprophet.js and find the following string:
Code: chatBot.sendMessage(emojiStr + " " + oType + type + " - " + vars.pairs[symbol].chatName() + "\t" + side + " "+
quantityFixed + "@" + exchUtils.fixPrice(symbol, price) + fill)
Replace it with:
Code: if((vars.pairs[symbol].chatName()=="#SNT/ETH")&&(type=="Traded")){
chatBot.sendMessage(emojiStr + " " + oType + type + " - " + vars.pairs[symbol].chatName() + "\t" + side + " "+
quantityFixed + "@" + exchUtils.fixPrice(symbol, price) + fill)}
}
Where "#SNT/ETH" is pair your are trading and want to be notified about.
After that run BitProphet as a service, similar to: https://github.com/askmike/gekko/wiki/Ge...th-Systemd
Hope it would be helpful not only for me
|
|
|
Exchange import not supported? |
Posted by: mark.sch - 07-16-2018, 01:11 PM - Forum: Other exchanges
- Replies (4)
|
|
Today I added HuobiPro and OKEX support to Gekko, watching the market goes fine but during history --import implementation it seems, the API is not exposing trade history. Or at least not more than the last 2000 trades. Am I missing something?
https://gekko.wizb.it/docs/introduction/...anges.html
On the supported exchange list there a several exchanges listed without an --import possibility. Did anyone implemented an universal importer taking history data from coinmarketcap for examble? Or how do you bridge the history gap for backtesting an exchange without import?
|
|
|
|