Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 293 online users. » 0 Member(s) | 293 Guest(s)
|
Latest Threads |
Gekko development status ...
Forum: Announcements
Last Post: kontho
Yesterday, 12:29 PM
» Replies: 1,010
» Views: 939,204
|
Gekko with malware spotte...
Forum: Announcements
Last Post: adeldoors
Yesterday, 06:45 AM
» Replies: 192
» Views: 171,232
|
Gekko 0.6 released
Forum: Announcements
Last Post: Pharagon
11-23-2024, 10:13 AM
» Replies: 122
» Views: 269,927
|
An official Gekko service...
Forum: Announcements
Last Post: drivemad2
11-22-2024, 07:24 AM
» Replies: 103
» Views: 190,583
|
New Gekko UI in the works
Forum: Announcements
Last Post: clduplicateremover
11-18-2024, 08:21 PM
» Replies: 174
» Views: 228,808
|
How to Soft Reset or Hard...
Forum: General Discussion
Last Post: lucifar
10-07-2021, 07:18 PM
» Replies: 22
» Views: 53,147
|
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 108,508
|
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 19,143
|
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 45,925
|
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 58,629
|
|
|
What will happen if lot of trades happen in a short time? |
Posted by: hitripley - 12-24-2018, 04:08 PM - Forum: Technical Discussion
- No Replies
|
|
I'm running gekko and it works great till now. But when I browsing gekko's code I found in the exchange/bitfinex.js (I'm dealing with that exchange) the getTrades is implemented as:
...
Trader.prototype.getTrades = function(since, callback, descending) {
......
if(since)
path += '?limit_trades=2000';
const handler = cb => this.bitfinex.trades(path, this.handleResponse('getTrades', cb));
retry(null, handler, processResponse);
......
}
...
It looks like value of "since" timestamp is skipped and it's just used to add a limit_trades=2000 to the API call. I tried to debug the code and that API call never returned entries more than 100.
I understand value of "since" is discarded because it's not supported by exchange, but what will happen if there's a flood of trades, say the trade rate reaches 1000/seconds. Given the getTrade API is call every 20 seconds by default, it looks like gekko will have a difficult time to generate correct candle in that case.
Could you guys please clarify if my speculation above is correct? It raises some concern about correctness of the trading bot .
|
|
|
A way to withdraw to and from hardware wallet |
Posted by: ampyxx - 12-20-2018, 01:33 AM - Forum: Feature Requests
- Replies (1)
|
|
Is there any possible way to transfer to and from a hardware wallet or a web wallet? I know having this information stored on a computer is bad but if it's cryptographically protected through the application I could see it working so long as nobody knew how to get ahold of the two-way cipher. Please let me know if this is at all feasible.
Thank you Mike for this excellent program.
|
|
|
Backtest tools for Gekko: Batch / BruteForce / Import |
Posted by: nickz - 12-19-2018, 09:08 PM - Forum: Third Party Software
- Replies (2)
|
|
Backtest tools for Gekko
CLI tools help to put together testing and optimizing strategies that extend the Gekko's Trading Bot capabilities – and thus you may get the most of it, and see what combinations were the best and the worst backed up by statistics.
The results appear in a CSV report file. It provides key statistics describing the overall performance of the selected strategies over the chosen historical timing of the simulation.
For more information, check out git repository: https://github.com/nicolay-zlobin/gekko-batcher
You can find sample file output here
|
|
|
Using Gekko for forex trading |
Posted by: Peter123 - 12-17-2018, 06:43 PM - Forum: Technical Discussion
- Replies (6)
|
|
Hello,
since you can write your own API's for diffrent exchanges, I wondered if it would be possible to trade fiat currencys.
Would this be technicly possible?
What is about trading with margin? Can Gekko do this?
|
|
|
Some newbie questions.. |
Posted by: carlo - 12-17-2018, 12:09 PM - Forum: General Discussion
- Replies (4)
|
|
Hey people, happy to have jumped into Gekko after watching a few of Crypto49ers videos on Youtube. I was aware of Gekko over a year ago but only in the last few days have i jumped into the world of Gekko backtesting.
After doing lots of reading & exploring, I want to say a massive big thank you to askmike & the other developers for sharing & developing a great thing! Im already looking forward to the new UI and watching closely at the exciting Gekkoplus project!
So far i'm playing with cheap shit alt coins so i'm happy to have a little punt at live trading here & there over the quiet xmas period...
I initially installed on OSX and did some backtesting with some data, all went along fine but I did have some problems with npm & dependancies. They got solved easily with crypto49ers great videos and the info on here & the web. Then i used my Poloniex API key... again all running fine on OSX.
Then I installed on Pi - so far only have run the --ui version.
But i think my first mistake was using the same API key as my backtesting OSX - on my live Pi - i got fairly regular "nonce supplied" errors. A quick search on here and learn there is a 8 per second limit, so I generated a new API key, so one for live Pi & one for backtesting on mac. - But i'm still getting fairly regular nonce errors. on some occasions i get a whole html dump of a cloudflare page (504 error) in my terminal.
So my 1st question: Are the nonce errors because my live bot is using 1 minute candles? Am i hammering the API too much? is there any easy solution?
2nd question: My pi is using 6gb card, my strat runner is pulling 1 min candles. Is this a ticking time-bomb? my instinct tells me im going to run out of space in sqlite soon. Any ideas how much GB of disc space a month of 1 minute candles will be. Should i look at a cron script to clean up or is that a bad idea & required for the bot to work?
3rd question: I sometimes get
Code: '[ws] stale websocket client, terminating..'
error. So far im not finding much info on that.. Any help or pointers please. Pi is running the --ui with ethernet connection. Is this because im running the UI? i plan to run the CLi in the future, but i find the UI helpful for now.
Thanks again Gekko :
|
|
|
[Beginner] Installing NN-Strategy |
Posted by: Peter123 - 12-15-2018, 12:13 PM - Forum: Technical Support
- No Replies
|
|
Hello,
I tried to install "LSTM_MACD_RSI_V3" and got this error when I tried to run it:
<-- POST /api/backtest
xxx POST /api/backtest 500 226ms -
Error: non-error thrown:
This Gekko instance encountered an error and can't continue
at Object.onerror (C:\Users\threi\Gekko\gekko-stable\node_modules\koa\lib\context.js:105:40)
at <anonymous>
at process._tickCallback (internal/process/next_tick.js:188:7)
I installed synaptic to my gekko folder and put the strategy file LSTM_MACD_RSI_V3.js in my strategy folder.
There is no .toml file. Is that the reason for the crash?
I'm very new to this and thankful for any help.
Regards,
Peter
|
|
|
|