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 347 online users.
» 0 Member(s) | 347 Guest(s)

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

 
  (node:15943) DeprecationWarning: `getProductTrades()` now requires a product ID as th
Posted by: Kris191 - 06-01-2018, 08:36 AM - Forum: Technical Discussion - Replies (1)

Hi all,

Any idea how to fix this error?

(node:15943) DeprecationWarning: `getProductTrades()` now requires a product ID as the first argument. Attempting to use PublicClient#productID (BTC-EUR) instead.


Thanks


  Different candle sizes in one strat
Posted by: Knurrhuhn - 06-01-2018, 08:12 AM - Forum: Strategy Development - Replies (2)

He folks, 

thanks for all your inspiration so far! 

I have a question and need your help: 
My goal is to set up a strategy that involves indicators (RSI, EMA, MACD-histogram, maybe some more) from different candle sizes (5min, 30min, 4hour). To be more precise: MACD of 30min-chart is different from MACD of 4hour-chart. How do I include both indicators in my strat? 

Do I have to simply update them on different time scales, e.g. with some sort of count-loop within update-function: 
>> set candle size for the strat to the lowest needed (here 5min) and update the 30min-indicators every 6 counts? But, how do I set up three separate RSI-indicators which do not interfere? 



Hopefully you understand what I am thinking of. If we could come up with some solution I will share ofc. 


regards
Knurrhuhn


  How do you monitor Gekkos runnng via the CLI
Posted by: coiner2018 - 05-30-2018, 12:34 AM - Forum: General Discussion - Replies (1)

Hi guys, apologies if this has been asked/answered before.  I did search but couldn't find an answer...

When paper-trading or live-trading via the CLI, how do you guys actually monitor/understand what Gekko is doing?

I've got Gekko configured to send me Pushover notifications of long/short trades but when I check the command line output, there doesn't seem to be any entries explaining any trades.  All I see is thousands of debug messages, and then a "PROFIT REPORT" at the point that it sent me the Pushover trade notification.

Is there not somewhere where these trades are logged and are accessible?  Am I missing something?

This is an example of all I see (Debug messages with the occasional PROFIT REPORT lines):

Code:
2018-05-29 22:53:08 (DEBUG):    No new trades.
2018-05-29 22:53:27 (DEBUG):    Requested BTC/GBP trade data from GDAX ...
2018-05-29 22:53:28 (DEBUG):    Processing 1 new trades. From 2018-05-29 22:52:56 UTC to 2018-05-29 22:52:56 UTC. (a few seconds)
2018-05-29 22:53:47 (DEBUG):    Requested BTC/GBP trade data from GDAX ...
2018-05-29 22:53:48 (DEBUG):    Processing 1 new trades. From 2018-05-29 22:53:17 UTC to 2018-05-29 22:53:17 UTC. (a few seconds)
2018-05-29 22:53:48 (INFO):     (PROFIT REPORT) original simulated balance:      270.00000000 GBP
2018-05-29 22:53:48 (INFO):     (PROFIT REPORT) current simulated balance:       269.75600980 GBP
2018-05-29 22:53:48 (INFO):     (PROFIT REPORT) simulated profit:                -0.24399020 GBP (-0.09036674%)
{"status":1,"request":"d3c53f4f-81da-4c9d-918e-a4ea7903ec26"}
2018-05-29 22:54:07 (DEBUG):    Requested BTC/GBP trade data from GDAX ...
2018-05-29 22:54:08 (DEBUG):    No new trades.
2018-05-29 22:54:27 (DEBUG):    Requested BTC/GBP trade data from GDAX ...


  Potentially Useful Strategy (Inverse Fisher Transform RSI)
Posted by: lucascostner - 05-29-2018, 08:24 PM - Forum: Strategy Development - Replies (11)

Hey all- I've had alot of success running gekko live with strategies from this forum and others. I have this indicator that I think could be made into a profitable strategy from tradingview- It's just a few lines of code but I'm not sure how to get it up and going in Gekko. I think that the built in RSI strategy in Gekko could easily be adapted into this by someone with a little more programming knowledge than I have. It's just a few short lines of code. If anyone can help get it up and running I will do some backtesting and run genetic algorithms to find some profitable settings and share them here. 


//
// @author LazyBear
// If you use this code in its orignal/modified form, do drop me a note. 
// 
study("Inverse Fisher Transform RSI [LazyBear]", shorttitle="IFTRSI_LB")
s=close
length=input(14, "RSI length")
lengthwma=input(9, title="Smoothing length")

calc_ifish(series, lengthwma) =>
    v1=0.1*(series-50)
    v2=wma(v1,lengthwma)
    ifish=(exp(2*v2)-1)/(exp(2*v2)+1)
    ifish

plot(calc_ifish(rsi(s, length), lengthwma), color=orange, linewidth=2)
hline(0.5, color=red)
hline(-0.5, color=green)


  Raspberry Headless Server Error
Posted by: kinakuta - 05-29-2018, 02:52 PM - Forum: Technical Support - Replies (4)

Hi,

I got Gekko installed on my Raspberry. Everything worked just fine, but trying to start it, I get the following error:

Code:
  /      \ /        |/  |  /  |/  |  /  | /      \
 /$$$$$$  |$$$$$$$$/ $$ | /$$/ $$ | /$$/ /$$$$$$  |
 $$ | _$$/ $$ |__    $$ |/$$/  $$ |/$$/  $$ |  $$ |
 $$ |/    |$$    |   $$  $$<   $$  $$<   $$ |  $$ |
 $$ |$$$$ |$$$$$/    $$$$$  \  $$$$$  \  $$ |  $$ |
 $$ \__$$ |$$ |_____ $$ |$$  \ $$ |$$  \ $$ \__$$ |
 $$    $$/ $$       |$$ | $$  |$$ | $$  |$$    $$/
  $$$$$$/  $$$$$$$$/ $$/   $$/ $$/   $$/  $$$$$$/

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


/usr/local/bin/gekko/web/server.js:13
const app = koa();
           ^

TypeError: Class constructor Application cannot be invoked without 'new'
   at Object.<anonymous> (/usr/local/bin/gekko/web/server.js:13:13)
   at Module._compile (module.js:652:30)
   at Object.Module._extensions..js (module.js:663:10)
   at Module.load (module.js:565:32)
   at tryModuleLoad (module.js:505:12)
   at Function.Module._load (module.js:497:3)
   at Module.require (module.js:596:17)
   at require (internal/module.js:11:18)
   at Object.<anonymous> (/usr/local/bin/gekko/gekko.js:43:10)
   at Module._compile (module.js:652:30)

Any ideas?


  [INDICATOR REQUEST] Arnaud Legoux Moving Average
Posted by: Bulahasis - 05-29-2018, 03:38 AM - Forum: Strategy Development - No Replies

Hello!

Can please someone write this indicator and share it on the forum?
I would write it myself but i have no programming skills. On google i found few scripts but none in JS.I even found an EXCEL version and PHP version, if its any help. It doesnt seem complicated but i dont really understand JS that much,...


Thank you!


  Running backtest
Posted by: khan2 - 05-29-2018, 01:07 AM - Forum: Technical Support - Replies (2)

Ive been trying to run backtest tools via CLI,it keeps freezing or says files not I am running gekko ui for live trading on laptop windows 7,would this be a problem if trying to backtest via CLI on same laptop?Ive keep trying and reading but no luck,Im not very experienced with programing any advice.Thanks in advance.


  Paper Trader Set-Up Question
Posted by: gkendrick - 05-28-2018, 12:18 AM - Forum: General Discussion - Replies (1)

Make/Taker Fee & Slippage parameters, how do you know what to set these parameters at?


  Question about GDax
Posted by: Ballsy - 05-25-2018, 04:01 PM - Forum: General Discussion - No Replies

I've noticed on GDax book that there always seems to be 2 quite large orders, 1 an amount above the current price and 1 below.

The orders are normally exactly the same and normally quite large.

Is this a strategy somebody is using or trying to control the market somehow?
The orders are never made (unless price changes dramatically very suddenly) because the prices are constantly updating.


  How candles work ?
Posted by: Greg L. - 05-24-2018, 03:29 PM - Forum: Technical Discussion - Replies (3)

Hello folks,

Gekko stores one-minute candle in database, but I was wondering how it works for x-minute candles.
For example, if I want to get data on 15 minute candles, what records do I need ?
Is opening price at x and close price at x+15 minutes ?

Thanks !