| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 533 online users. » 0 Member(s) | 533 Guest(s)
|
| Latest Threads |
An official Gekko service...
Forum: Announcements
Last Post: tanvirai
11-20-2025, 12:18 PM
» Replies: 113
» Views: 291,634
|
Gekko development status ...
Forum: Announcements
Last Post: erectilenovus
11-17-2025, 11:36 AM
» Replies: 753
» Views: 1,768,013
|
Gekko 0.6 released
Forum: Announcements
Last Post: soniyathakur
11-02-2025, 12:21 PM
» Replies: 129
» Views: 380,297
|
Gekko with malware spotte...
Forum: Announcements
Last Post: cofffee124
10-30-2025, 09:56 AM
» Replies: 216
» Views: 346,046
|
New Gekko UI in the works
Forum: Announcements
Last Post: cofffee124
09-04-2025, 08:12 AM
» Replies: 186
» Views: 390,471
|
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 159,120
|
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 31,836
|
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 70,991
|
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 87,738
|
Is there any way to make ...
Forum: Custom Systems
Last Post: seorun
10-05-2021, 08:20 AM
» Replies: 42
» Views: 134,736
|
|
|
| Slow Data Imports |
|
Posted by: xBIGx - 02-26-2018, 08:47 PM - Forum: GDAX
- No Replies
|
 |
Anyone having really slow data imports from GDAX? Getting 3 months of data is like 100x slower than Poloniex. Would it be better if we just shared?
|
|
|
|
| developer needed |
|
Posted by: EddyEd - 02-26-2018, 04:04 PM - Forum: Custom Systems
- Replies (7)
|
 |
Gentlement, can I find a developer on this forum who could modify a custom strategy for me so it can:
1) log quotes in real-time into a specified csv file
2) read signals from a specified csv file for executing trades
Thanks!
|
|
|
|
| I can not start gekko. |
|
Posted by: JoshuaKeen - 02-25-2018, 11:20 PM - Forum: Technical Support
- No Replies
|
 |
After several tests I wanted to try to use gekko in "real money" mode with a few dollars but I find this problem:
Gekko 412443810954729 started
-> POST / api / startGekko 200 89ms 146b
<- POST / api / startGekko
Gekko 3334726943768955 started
-> POST / api / startGekko 200 87ms 399b
<- GET /favicon.ico
-> GET /favicon.ico 404 2ms -
RECEIVED ERROR IN GEKKO 3334726943768955
Gekko encountered an error and can not continue
Gekko encountered an error and can not continue
error:
[binance.js] undefined
Meta debug info:
Gekko version: v0.5.12
Nodejs version: v8.9.4
Can someone help me?
Thank you
JoshuaKeen
|
|
|
|
| [Bounty] Hiring someone to write a simple Strategy |
|
Posted by: spellfire - 02-24-2018, 12:42 PM - Forum: Strategy Development
- Replies (19)
|
 |
Hello,
my developer skills are very (VERY) limited so I would like to hire someone to develope the strategy I am using "manually" at the moment.
It's not sophisticated , fancy or by any means new, it's the classic grid trading from forex markets
Basically you setup a price and put x limit-stop margin orders higher and lower than the set price, then when orders get filled the script replace that order (a buy with a sell a sell with a buy)
As I said it's not AI , doesn't use any indicators , doesn't get you rich quickly...but it 's perfect for me :-)
Anyone willing to help with this for a price?
Thanks
|
|
|
|
| Heikin Ashi |
|
Posted by: fo0man - 02-23-2018, 11:42 PM - Forum: Guides
- Replies (5)
|
 |
I found Gekko a few days ago and have been trying out some different strategies. One of the things I was experimenting with is Heikin Ashi candles so. For anyone wanting to use HA candles here's how I'm doing it.
Code: var _ = require('lodash');
var strat = {
...
heikenAshi: function(candle) {
return {
close: (candle.open + candle.close + candle.high + candle.low) / 4,
open: (this.previousCandle.open + this.previousCandle.close) / 2,
high: _.max([candle.high, candle.open, candle.close]),
low: _.min([candle.low, candle.open, candle.close])
};
},
update: function () {
if (this.previousCandle) {
this.heikenCandle = this.heikenAshi(this.candle);
}
this.previousCandle = this.candle;
},
...
}
|
|
|
|
| favicon.ico 404 |
|
Posted by: donkykong017 - 02-23-2018, 06:08 AM - Forum: Technical Support
- Replies (2)
|
 |
What does that mean in the console output.
i am running gekko for days now with marketwatchers and traders and from time to time this output pops up.
Code: <-- GET /favicon.ico
--> GET /favicon.ico 404 0 ms -
It is yellow so i guess it is some kind of warning or so?! everything works as expected but i am just curious.
can someone explain.
cheers
DK
|
|
|
|
| Error: SQLITE_CORRUPT |
|
Posted by: ManuManu - 02-23-2018, 12:43 AM - Forum: Technical Support
- Replies (1)
|
 |
Hey,
Just to let you know :
From time to time, I had this error fired :
{ Error: SQLITE_CORRUPT: database disk image is malformed errno: 11, code: 'SQLITE_CORRUPT' }
It looks like the importer failed at some point ( perhaps just because my computer turned to standby mode, or I quit Gekko while importing ).
In the end, I had a corrupted table in my database, that I've just erased, and it looks fine for now.
Manu
|
|
|
|
|