Welcome, Guest
You have to register before you can post on our site.

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 39,322
» Latest member: DishisdesignJewellery
» Forum threads: 926
» Forum posts: 6,383

Full Statistics

Online Users
There are currently 436 online users.
» 0 Member(s) | 436 Guest(s)

Latest Threads
An official Gekko service...
Forum: Announcements
Last Post: tanvirai
11-20-2025, 12:18 PM
» Replies: 113
» Views: 291,528
Gekko development status ...
Forum: Announcements
Last Post: erectilenovus
11-17-2025, 11:36 AM
» Replies: 753
» Views: 1,767,684
Gekko 0.6 released
Forum: Announcements
Last Post: soniyathakur
11-02-2025, 12:21 PM
» Replies: 129
» Views: 380,253
Gekko with malware spotte...
Forum: Announcements
Last Post: cofffee124
10-30-2025, 09:56 AM
» Replies: 216
» Views: 345,952
New Gekko UI in the works
Forum: Announcements
Last Post: cofffee124
09-04-2025, 08:12 AM
» Replies: 186
» Views: 390,394
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 159,106
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 31,834
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 70,983
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 87,717
Is there any way to make ...
Forum: Custom Systems
Last Post: seorun
10-05-2021, 08:20 AM
» Replies: 42
» Views: 134,723

 
  Disconnected
Posted by: calaggan - 01-30-2018, 07:19 AM - Forum: Technical Support - Replies (1)

Hi,

thks for free bots,

Working fine on Win 10 x64 with shell, but when i start market watcher on binance on ETH-ICX (not test on other), i'v an error Disconnected



Quote:  <-- GET /api/configPart/paperTrader
  --> GET /api/configPart/paperTrader 200 0ms 132b
  <-- POST /api/startGekko
Gekko 545596539844801 started
  --> POST /api/startGekko 200 15ms 146b
C:\Bot\gekko-develop\web\routes\startGekko.js:86
    if(_.get(event, 'log'))
         ^

TypeError: _.get is not a function
    at pipelineRunner (C:\Bot\gekko-develop\web\routes\startGekko.js:86:10)
    at Object.message (C:\Bot\gekko-develop\core\workers\pipeline\messageHandlers\realtimeHandler.js:15:9)
    at ChildProcess.<anonymous> (C:\Bot\gekko-develop\core\workers\pipeline\parent.js:29:12)
    at emitTwo (events.js:126:13)
    at ChildProcess.emit (events.js:214:7)
    at emit (internal/child_process.js:772:12)
    at _combinedTickCallback (internal/process/next_tick.js:141:11)
    at process._tickCallback (internal/process/next_tick.js:180:9)

Anyone have an idea ?

thks


  [BOUNTY COMPLETD] fix DEMA example strategy
Posted by: askmike - 01-29-2018, 11:19 PM - Forum: Feature Requests - Replies (12)

Gekko comes with an indicator called DEMA, it is supposed to implement the Double EMA indicator properly. However @ pointed out the current implementation is not correct, see #1812 for more details.

Who ever can get a PR merged that:

- fixes the indicator to implement the described algorithm ["DEMA = ( 2 * EMA(n)) - (EMA(EMA(n)) ), where n= period"]
- fixes the current DEMA test.
- updates the DEMA strategy to only use a single period n.
- updates the sample-config and the toml config file to use a single period n.

Can claim a bounty of 0.003 BTC (currently worth ~$33.15), the bounty comes from me Smile


  [BOUNTY] Transform a Pine Script indicator to a Gekko indicator
Posted by: Road.Apps - 01-29-2018, 11:10 PM - Forum: Feature Requests - Replies (17)

08.02 Edit:

Since my OP wasn't informative enough I am adding here what I would like from this indicator:

1) I would like the indicator to return different attributes about the current given candle size (15m, 1H, 2H etc) in such a way that they could be used in strategies. The indicator returns a lot of information in any given timeframe and I would like to be able to use that information as much as possible. Also it needs just 4 candles to warm up;

2) I would like to be able to run and also backtest this indicator on a live market in the any timeframe that I want. Let's say 1H. I would like the indicator to continuously (live) check the status of the current candle and to return what number it represents in a setup or countdown counter (1 green/red, 2 green/red, 3 green/red etc). After reporting the number of the candle I would like the strategy to act upon this returned number and give long or short signal based on somehow custom attributes. For example I am interested in a strategy that sounds like this: When candle 2 starts trading above/below candle 1 then long/short. This would be to open the trade. I'll get to the closing the order in a second.

3) About closing the order or giving the short/long signal. MeanSquaredError told me in a private message:

"Right now the strategy just issues a 'short' or 'long' advice to Gekko once the TD countdown is completed. If by SL and TP you mean the stop-loss and take-profit, then I guess I can implement something like that, but the real problem is that the custom strategy does not see separate orders. The strategy just gives Gekko's portfolio manager to go 'short' or 'long'. So if we have issued a 'long' advice, then after a while we can sort of close that order by giving a 'short' advice. But we can not even be sure what amount has Gekko sold after our advice.

I guess we can discuss this with Mike and see whether he is willing to make changes to Gekko that would make possible the development of more complex strategies."

@Mike are you planning on stop-loss and take-profit capabilities on trades? Also how does the bot operates in live trading? It just does a market buy/sell with all the account balance?

I guess this could be coded as a series of ifs>else until this is implemented.

Added more:

3) In TradingView when looking at a timeframe with the TD Indicator sometimes the candles have 2 numbers on them. The first (principal) number above the candle and the second (secondary) number below and for example there can be candle with a 3 green on top and 10 red below. Would that be possible in Gekko?;

4) Would it be possible to differentiate between perfected 9s and imperfected 9s?;

5) Would it be possible to tell where the TDST line is at any given time if there is any?

P.S. If you think that the bounty is too low for what I'm asking speak up!

*********************************************************************************************************************************************


Hello,
Looks like I will be creating the first bounty. I am open to counter offers and to discussion in general.

I would like to be able to use the TD Indicator (Tom DeMark Indicator) with Gekko. I have the indicator written in Pine Script (TradingView script).

I'm offering 0.01 BTC as bounty and I will send 0.011 as escrow in order to cover for the miner fees.

Not sure what else can I offer as information. Ask away!


  run gekko as service
Posted by: dengbert - 01-29-2018, 06:08 PM - Forum: Technical Support - Replies (5)

hello together,
is it possible to run the gekko as service on an raspberry pi?
When yes, how?  Rolleyes

Greets!


  ga: cannot find module async
Posted by: john99 - 01-29-2018, 11:39 AM - Forum: Technical Support - No Replies

Hello,
after installing the genetic algorithm I tried to run it with:

node run -c config/your-new.js,

but I got an error:

module.js:540
throw err;
Error: Cannot find module 'async'

What did I make wrong?

Thanks for help!

john


  how to stop live gekko
Posted by: scorpion_ana - 01-28-2018, 07:26 PM - Forum: Technical Support - Replies (1)

i could not stop a live gekko after i started it.
i want to delete it and create another one with different strategy .


  ERROR: SQlite SOLVED (WIN 7)
Posted by: susitronix - 01-28-2018, 04:13 PM - Forum: Technical Support - No Replies

Hi

if you running a Gekko strategie that needs SQlite you might find an ERROR in the CMD that SQlite is not installed yet.
it ask you to install it by:
npm install sqlite3@3.1.4   //something like this

BUT IT DOS NOT FIND IT...?!?

instead try:

npm install sqlite3

thats it. hope this works.cheers.p


  Invalid argument error.
Posted by: max_154 - 01-28-2018, 02:02 PM - Forum: Kraken - No Replies

Hi all, having problems, if anyone can advise me on what is wrong here it would be greatly appreciated.

[color=rgba(255, 255, 255, 0.7)]TypeError: Cannot read property 'log' of undefined
at pipelineRunner (C:\xxxx\xx\Downloads\gekko-develop\web\routes\startGekko
.js:86:14)
at Object.message (C:\xxxx\xx\Downloads\gekko-develop\core\workers\pipeline
\messageHandlers\realtimeHandler.js:10:9)
at ChildProcess. (C:\xxxx\xx\Downloads\gekko-develop\core\worker
s\pipeline\parent.js:29:12)
at emitTwo (events.js:126:13)
at ChildProcess.emit (events.js:214:7)
at emit (internal/child_process.js:772:12)
at _combinedTickCallback (internal/process/next_tick.js:141:11)
at process._tickCallback (internal/process/next_tick.js:180:9)
disconnect
[/color]


  Tradebot with PostgreSQL
Posted by: Plat - 01-28-2018, 04:29 AM - Forum: Technical Support - Replies (5)

Hey SQLite was not working for me, the bot crashes everytime I try to use it with tradebot...works great with everything else ...getting child errors etc...So I want to try postgresql but I’m not familiar with it...I downloaded the newest postgresql and have the server running...edited the uiconfig and base config but still not luck...this is on windows 10 running gekko in UI mode..any ideas?  From what I’ve read SQLite is too weak to handle tradebot so therefore I wanna try postgresql

Code:
c:\Users\Plat\Downloads\gekko-stable\gekko-stable>node gekko --ui

    ______   ________  __    __  __    __   ______
   /      \ /        |/  |  /  |/  |  /  | /      \
  /$$$$$$  |$$$$$$$$/ $$ | /$$/ $$ | /$$/ /$$$$$$  |
  $$ | _$$/ $$ |__    $$ |/$$/  $$ |/$$/  $$ |  $$ |
  $$ |/    |$$    |   $$  $$<   $$  $$<   $$ |  $$ |
  $$ |$$$$ |$$$$$/    $$$$$  \  $$$$$  \  $$ |  $$ |
  $$ \__$$ |$$ |_____ $$ |$$  \ $$ |$$  \ $$ \__$$ |
  $$    $$/ $$       |$$ | $$  |$$ | $$  |$$    $$/
   $$$$$$/  $$$$$$$$/ $$/   $$/ $$/   $$/  $$$$$$/

        Gekko v0.5.11
        I'm gonna make you rich, Bud Fox.


Serving Gekko UI on http://localhost:3000/

  <-- GET /api/imports
  --> GET /api/imports 200 17ms 2b
  <-- GET /api/gekkos
  --> GET /api/gekkos 200 4ms 2b
  <-- GET /api/gekkos
  --> GET /api/gekkos 200 4ms 2b
  <-- GET /api/apiKeys
  --> GET /api/apiKeys 200 3ms 10b
  <-- GET /api/exchanges
  --> GET /api/exchanges 200 8,848ms 64.46kb
  <-- POST /api/import
Import 696685438790157 started
  --> POST /api/import 200 794ms 150b
RECEIVED ERROR IN IMPORT 696685438790157


Gekko encountered an error and can't continue


Gekko encountered an error and can't continue

Error:

{ name: 'error',
  length: 102,
  severity: 'FATAL',
  code: '3D000',
  file: 'postinit.c',
  line: '846',
  routine: 'InitPostgres' }

Meta debug info:

Gekko version: v0.5.11
Nodejs version: v8.9.3

^C
c:\Users\Plat\Downloads\gekko-stable\gekko-stable>


  config.mailer with gmx.net issue
Posted by: susitronix - 01-27-2018, 10:03 PM - Forum: Technical Support - No Replies

Hi
Enybody know..?
I startet a liveGekko Stratrunner.
Before, i config config.js in order to mail me at the buy/sell signals. Also wenn starting the liveGekko.


-"my.Adress"
-"my.Password"
-"smtp.gmx.COM"     //<--- my email ...gmx.NET 
-smtpauth: true,           //         just recognized while writing. sorry
-""                                    //         is it smtp.gmx.NET ?
-""
-""
-ssl: true,
-""

It created an error at startup
Is the Mailer Plugin (easy method) only for Gmail accounts?

I must ask this question because for this LiveGekko Stratrunner its to late.