Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 170 online users. » 1 Member(s) | 169 Guest(s) homeelegance
|
Latest Threads |
Gekko 0.6 released
Forum: Announcements
Last Post: lsm99dna
08-06-2025, 08:15 PM
» Replies: 124
» Views: 333,907
|
An official Gekko service...
Forum: Announcements
Last Post: Ruslanjoshua
07-24-2025, 06:27 AM
» Replies: 111
» Views: 248,152
|
New Gekko UI in the works
Forum: Announcements
Last Post: celemtine
07-03-2025, 07:24 AM
» Replies: 185
» Views: 325,891
|
Gekko with malware spotte...
Forum: Announcements
Last Post: pugoing
07-01-2025, 02:29 AM
» Replies: 212
» Views: 277,455
|
Gekko development status ...
Forum: Announcements
Last Post: sanmarconns
10-21-2024, 06:34 PM
» Replies: 744
» Views: 1,481,024
|
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 134,599
|
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 23,019
|
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 57,425
|
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 72,070
|
crex24
Forum: Other exchanges
Last Post: marketingseo
10-05-2021, 09:47 AM
» Replies: 216
» Views: 514,991
|
|
|
Gekko Node.JS and Python/C++ |
Posted by: aspiringtrader - 07-20-2018, 01:54 AM - Forum: General Discussion
- No Replies
|
 |
So, I have been doing a lot of research regarding setting up trading bots and algorithmic trading.
I have seen a few times, mentioned mostly in random forum posts, that javascript should be avoided for financial applications, due to floating point numbers. The responses would rather suggest the use of Python, or C++ for trading bot.
My question is, has javascript evolved to now be able to handle floating point numbers? (which i think are decimals?)
If not, how does Gekko work around this?
Thanks in advance, this topic has got me interested more than anything else has in my 23 years of life.
|
|
|
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
|
|
|
|