Hello!
I would like to know on which currency i need to have a some balance? On asset or on currency. I mean the part when you choose your currency and asset? Gecko sometimes returns this message(screenshot in attachment) What does it mean?
As im sure many of you will have encountered, when using large datasets to backtest on the gekko ui along with smaller candles the UI gets very laggy and slow because it has to process so much data.
I was hoping there was a way to cache the backtest page after it loads so that it would return the speed to the browser page for viewing the results of each test?
I would like to ask for help to add Bitso exchange to gekko.
There is a lot info about how to use the Bitso API but Im not a programmer, its like a totally language for me. https://bitso.com/api_info#introduction
I can share all my forex bots if you can help me to build the importer in gratitude. I attach a picture of the bots I have, they got a value greater than +1k usd together.
I believe I have found the rolling distro I like, but I must be able to install JRivers Media Center which only comes as a deb file. How do I do this or add it to the repository?
Link: https://yabb.jriver.com/interact/index.p...087.0.html
I am using ADX in my strat but i found that every time i restart gekko or greenGekko , ADX must wait till it get all live data from the exchange first before it start using it even if you restart gekko with no time between . but other indicators like RSI doesnot do that . it read the previous candle values and calulate it .
and that is a big issue if you use 4 hour candle and ADX with 14 period . you would wait days before gekko start trading ,
poc :
1-use adx 14 period and rsi 14 period and run gekko or import the most recent data from exchange .
2- console log adx value and rsi value to the screen and wait till both start showing values
3- restart gekko
you will find that rsi keep showing and calculating its value while adx MUST wait for another 14 candles to start printing value again
right now i am using work around to save adx value to a file and read from there as i am using multi time frames wth 4 Hours and i cant wait days till my trade kicks in
I have been backtesting various neural net strats for use as live trade bots but im not all that knowledgeable about them.. from research online it seems that typicaly NN's will need to be trained on data before they can work to any great effect to solve a problem, and that once they start running live they typicaly dont improve themselves any more without further training.
Could someone please clarify:
- do the NN strats train themselves as they run using some form of backpropogation (slowly optimising themselves as time goes on)?
OR
- do we use the backtesting and optimisation of the strat using tools like gekkoga to find the best params and then run the strat with those params to get optimised results?
and
- if they dont train them selves as they run currently, could we write a NN strat that would? (optimises its own TOML file after each trade for example using data about price/volume/and historical market trends and overtime builds/evolves into a strat that works for all market conditions)
Hi, When I try to use Telegram to send advices from the strategy I receive next error:
error: [polling_error] {"code":"ETELEGRAM","message":"ETELEGRAM: 409 Conflict: terminated by other getUpdates request; make sure that only one bot instance is running"}
To turn Telegram on I changed web\routes\baseConfig.js accordingly: I see that for some reason node-telegram-bot-api is started twice. Once for Watcher and second time for papertrader:
2019-01-29 12:12 Gekko 2019-01-29-12-12-watcher-473135914784412 started. --> POST /api/startGekko 200 17ms 1.38kb node-telegram-bot-api deprecated Automatic enabling of cancellation of promises is deprecat ed.………….. <-- POST /api/startGekko 2019-01-29 12:12 Gekko 2019-01-29-12-12-papertrader-9995798102967157 started. --> POST /api/startGekko 200 23ms 1.78kb node-telegram-bot-api deprecated Automatic enabling of cancellation of promises is deprecat ed.………….. error: [polling_error] {"code":"ETELEGRAM","message":"ETELEGRAM: 409 Conflict: terminated by other getUpdates request; make sure that only one bot instance is running"}
When I try to use node-telegram-bot-api right from my strategy (i create TelegramBot object inside the strategy code) and send messages it works fine. No errors and I see that node-telegram-bot-api log only once.
Does somebody know how can I fix the issue described above to have Telegram plugin work properly with Gekko?