| Welcome, Guest |
You have to register before you can post on our site.
|
| Online Users |
There are currently 364 online users. » 0 Member(s) | 364 Guest(s)
|
| Latest Threads |
An official Gekko service...
Forum: Announcements
Last Post: tanvirai
11-20-2025, 12:18 PM
» Replies: 113
» Views: 291,539
|
Gekko development status ...
Forum: Announcements
Last Post: erectilenovus
11-17-2025, 11:36 AM
» Replies: 753
» Views: 1,767,729
|
Gekko 0.6 released
Forum: Announcements
Last Post: soniyathakur
11-02-2025, 12:21 PM
» Replies: 129
» Views: 380,260
|
Gekko with malware spotte...
Forum: Announcements
Last Post: cofffee124
10-30-2025, 09:56 AM
» Replies: 216
» Views: 345,963
|
New Gekko UI in the works
Forum: Announcements
Last Post: cofffee124
09-04-2025, 08:12 AM
» Replies: 186
» Views: 390,407
|
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 159,113
|
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 31,835
|
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 70,988
|
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 87,730
|
Is there any way to make ...
Forum: Custom Systems
Last Post: seorun
10-05-2021, 08:20 AM
» Replies: 42
» Views: 134,726
|
|
|
| Very Wrong date |
|
Posted by: Daniel Moura - 02-07-2018, 01:07 PM - Forum: Technical Discussion
- Replies (3)
|
 |
Hello,
Anybody can help me, then and interval date very strange, the bottrade bought 2018-02-05 14:05 and Selling 2018-02-07 08:19, but UI show me this:
![[Image: errordate.png]](http://freemontclubebrasil.com.br/temp/errordate.png)
The server DATE is OK, i´m using a VPS Server, CentOS. I´m using UTC in server !
|
|
|
|
| Access PerformanceAnalyzer Statistics in Plugins |
|
Posted by: rkingy - 02-07-2018, 07:13 AM - Forum: Technical Discussion
- Replies (4)
|
 |
I've changed my setup recently from using the UI to running Command Line Gekko as a proper service on my linux box.. which has added benefits of starting and stopping many different strategies, but on the downside I've found the reporting really average.
I've been scrolling through a log file looking for the Buy and Sell to figure out whats going on.
Surely there is a better way? Maybe I've missed something??
Anyway I've enabled the Pushover app plugin which seems to be good but very limited info...
My question is can I access the PerformanceAnalyser plugin and statistics functions from within the Pushover plugin?
Ideally every time I go long I want just a message saying that I've gone long at price X.
And every time I go short it should tell me the sell price, my current trade profit/loss and the total portfolio profit/loss since starting the strategy.
Keen to get some thoughts on the best approach here before I start coding.. as it seems difficult to easily test this without actually starting the bot and hoping for the best.
Ideas?
|
|
|
|
| Interact with the UI |
|
Posted by: tommiehansen - 02-06-2018, 06:25 PM - Forum: Technical Discussion
- Replies (6)
|
 |
Any way to post things to ui; any way to hook into it and perform stuff?
I'm thinking like this (this will not work, but example...):
var strat = {
end: function()
{
alert('Finished in in X time');
}
}
This could further be expanded and do more useful things such as this:
var strat = {
say: function( text )
{
if ('speechSynthesis' in window)
{
let utterance = new SpeechSynthesisUtterance(text);
utterance.lang = 'en-US';
speechSynthesis.speak(utterance);
}
},
end: function()
{
this.say('Finished in X time');
}
} // strat{}
Codepen demo:
https://codepen.io/tommiehansen/pen/NyRgBP
Input something into input and press return.
If your browser has support for speechSynthisis it will say what you wrote.
|
|
|
|
| Gekko with malware spotted in the wild |
|
Posted by: askmike - 02-06-2018, 06:06 AM - Forum: Announcements
- Replies (216)
|
 |
Gekko is a free and open source tool, it doesn't cost any money to download and you don't need to register anywhere.
The only official way of downloading it is via the official Github repo here:
https://github.com/askmike/gekko
Find all information about different official versions and releases here:
https://gekko.wizb.it/docs/installation/...ding-Gekko
If you download Gekko from any other source you might get infected with malware. Today I discovered a youtube video with a download link to a malware loaded version of Gekko, you can find the details here (but be sure to NOT download from any of the links found there).
Be smart and safe everyone! Even if you download from the official repo it is still advised to not run any software on systems that also contain other private information (like crypto wallets) or not to connect it to your exchange account unless you fully understand what you are doing. Gekko is great at simulating trades with fake money, and it runs great in a VM as well.
|
|
|
|
| NaN on PerformanceAnalyzer log |
|
Posted by: Lucas - 02-05-2018, 04:19 PM - Forum: Technical Support
- Replies (6)
|
 |
Hi, after some weeks of paper trading, today I started to use gekko for real trading with trader plugin on bitstamp exchange.
I noticed a problem on log produced by performanceAnalyzer plugin:
P&L and profit columns reports NaN value.
Code: (PROFIT REPORT) original simulated balance: 1000.00000000 USD
(PROFIT REPORT) current simulated balance: 1033.44000000 USD
(PROFIT REPORT) simulated profit: 33.44000000 USD (3.34400000%)
(ROUNDTRIP) entry date (UTC) exit date (UTC) exposed duration P&L profit
(ROUNDTRIP) 2018-02-05 00:28 2018-02-05 01:04 36 minutes NaN NaN
It's my problem or common problem?
How can I solve?
Thanks in advance.
PS: - with paperTrader I can see correct numerical values
- I'm running the stable branch (1cde4c4) on raspberry
|
|
|
|
|