I'm adding a new market and its importer poses a new challenge for Gekko UI because it supports max. 30 days of trade history and fails if anything older is requested.
Users can enter anything as their Date From and then they'll wonder why it's not working. Can we fix it?
i.e., I'd like to support custom error messages like "You've entered Date From that's unsupported (too old). Please import max. 30 days of trade history." in Gekko UI and display a modal.
It'd be great to also support an optional parameter in exchange capabilities that will limit Date From in Gekko UI.
As a volunteer, If I contribute a pull request that adds "maxTradeHistory" into exchange capabilities and support for errors to be displayed in Gekko UI, will it get accepted?
whats the right process to let gekko livetrader use as much local history (from an import) as possible? I have a strat that uses a very slow sma and it would take days to wait until it fetches enough data to start.
I use the UI with (default) StochSRI, my bittrex api keys are entered in correctly, all is well. But im not getting any trades in. I moved my money out of BTC till i further investigate.
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.
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');
}
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.