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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 20,753
» Latest member: TariqHatem
» Forum threads: 1,541
» Forum posts: 7,732

Full Statistics

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

Latest Threads
New Gekko UI in the works
Forum: Announcements
Last Post: dejaoffice
04-25-2024, 10:44 AM
» Replies: 137
» Views: 157,085
Gekko development status ...
Forum: Announcements
Last Post: zerzamilmu
04-20-2024, 11:39 AM
» Replies: 806
» Views: 539,453
An official Gekko service...
Forum: Announcements
Last Post: CaroleDennis
04-20-2024, 04:03 AM
» Replies: 85
» Views: 141,034
Gekko with malware spotte...
Forum: Announcements
Last Post: alisonagron
04-18-2024, 08:05 AM
» Replies: 130
» Views: 92,547
Gekko 0.6 released
Forum: Announcements
Last Post: sabinaholt
03-27-2024, 12:10 PM
» Replies: 104
» Views: 217,009
How to Soft Reset or Hard...
Forum: General Discussion
Last Post: lucifar
10-07-2021, 07:18 PM
» Replies: 22
» Views: 39,564
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 82,075
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 15,231
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 34,706
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 45,888

 
  Specify start time
Posted by: Shima - 03-19-2018, 03:11 PM - Forum: Feature Requests - Replies (1)

When running longer candle sizes (and maybe also other scenarios) it would be nice to be able to specify an exact time (and possibly date) for Gekko to go live. For example, if I run a strat on four hour candles and would like it fairly synchronized with TradeView candles so that I easier can analyze/predict the actions of Gekko, I don't want to sit around for two-three hours to press "enter" exactly when TradeView starts a new candle. I would much rather just set a start time as a switch in the console and then Gekko could run a market watcher until then so that market data is ready at the time it goes live.

Like for eample:
node gekko --config strategy.js --start 2018-02-14T04:00:00


  Custom Strategy ( bounty aditional :) )
Posted by: imsami - 03-18-2018, 03:15 PM - Forum: Strategy Development - Replies (5)

hello. I am new to gekko and do not have skill on java. I don't know is this doable with gekko or I am overestimating? Here is what I want to have :- 

[Image: 29386603_1713728585353611_54385756579467...e=5B2F814B]

EMA 5 - Green
EMA 12 - White
RSI 14 - level 50

BUY: EMA 5 Cross EMA 12 to upside, RSI greater than 50
SELL: EMA 5 Cross EMA 12 to downside, RSI less than 50

Do not SELL at SUPPORT, Do not BUY at RESISTANCE
Take Profit can be customized on percent and Stop loss too.  Thank you Smile 


  Howto: auto re-run Gekko on crash
Posted by: xFFFFF - 03-18-2018, 11:49 AM - Forum: Guides - Replies (7)

Sometimes it happens that some error will occur in Gekko and the program will turn off, for example when we have runned Gekkos live trade. 

We can overcome this by simply loops in Bash.

Code:
#!/bin/bash
for i in {1..10}
do
$1
done
1. Save above code to loop.bash file and copy to Gekko directory.
2. $ chmod +x loop.bash
3. $ ./loop.bash "node gekko -c config.js"

After turning off Gekko, the script will launch Gekko again. He will repeat the action 10 times.


  I have full Binance history in datasets, but haven't webserver to share
Posted by: xFFFFF - 03-17-2018, 11:10 AM - Forum: General Discussion - Replies (9)

Maybe someone can share our webserver for Gekko datasets? I have full history of BTC and BNB pairs from Binance in Gekko format. Size is 1,5 GB. Im downloading history of bitfinex usd pairs and coinfalcon btc pairs now. This taking a lot of time, so maybe someone want use my work.


  save data on a externe HDD ?
Posted by: RemcoCoin - 03-17-2018, 12:32 AM - Forum: Technical Support - Replies (1)

Is it possible to change the location for the data.
i wanna saving all the data of backtest and livetrading at a nas disk ?


  GekkoGA on "Bestone" strategy
Posted by: Knurrhuhn - 03-15-2018, 07:09 PM - Forum: Strategy Development - Replies (2)

Hey there, 

recently I was experimenting with tulip-indicators and discovered some challenges. As I want to become more familiar with tulip, I focused on the "Bestone" strategy from here: link

As usual, results of standard settings are quite poor, so I want to perform gekkoga on it to improve. Now I am facing problems creating the correct gekkoga-config-file. Receiving error messages all the time, when starting gekkoga (Bestone strategy itself is running fine via gekko UI). 

Has anyone succeeded using gekkoga on Bestone strategy? Would be nice to share the gekkoga config file. There is something I am missing...

Cheers

edit:
I assume to have a mistake in assigning the "variables" correctly as some of them are named identically ("optInTimePeriod" for EMAshort and EMAlong and RSI). Here is an extract of my gekkoga-config-file for reference... 


candleValues: [10,12,14,16,20,30,40],
  getProperties: () => ({
    // Strat settings must be flattened and cannot be nested for mutation to work properly!

// historySize: randomExt.integer(100, 20),
  historySize: 100,
// historySize: randomExt.integer(6, 1) * 100,

//[MACD]
optInFastPeriod: 12,
optInSlowPeriod: 26,
optInSignalPeriod: 9,

//[EMAshort]
optInTimePeriod: 9,

//[EMAlong]
optInTimePeriod: 21,

//[STOCH]
optInFastKPeriod: 9,
optInSlowKPeriod: 3,
optInSlowKMAType: 1,
optInSlowDPeriod: 3,
optInSlowDMAType: 1,

//[RSI]
optInTimePeriod: 14,

//[thresholds]
RSIhigh: randomExt.integer(85, 65),
RSIlow: randomExt.integer(35, 20),
MACDhigh: 0.0,
MACDlow: 0.0,
persistance: 1,

    candleSize: config.candleValues[randomExt.integer(config.candleValues.length -1, 0)]

  })



(sorry, attachments not allowed...)


  Error: Cannot find module '/root/gekko'
Posted by: Krokodil - 03-15-2018, 04:21 PM - Forum: Technical Support - Replies (3)

Hi, 

I am a new Gekko user.

I was backtesting for a few days, then tried to do a paper trade when gekko crashed.

on restart i get this:

root@41RRG5F:~# node gekko --ui

module.js:549
    throw err;
    ^

Error: Cannot find module '/root/gekko'
    at Function.Module._resolveFilename (module.js:547:15)
    at Function.Module._load (module.js:474:25)
    at Function.Module.runMain (module.js:693:10)
    at startup (bootstrap_node.js:188:16)
    at bootstrap_node.js:609:3


Any idea what went wrong?


Wink Gekko and internet disconnection
Posted by: JoshuaKeen - 03-14-2018, 01:22 AM - Forum: Technical Support - Replies (1)

Beginner's question. Sorry if it has already been asked.
If I leave the PC with gekko started in real money mode what happens if the connection is disconnected?

1) When you start the connection, restart gekko without any consequences
2) When the connection is restarted again gekko but there are problems with the candles
3) Gekko does not start again

Another question, it is true that it would be convenient to select candles at 15 minutes to start gekko exactly at xx.15, xx.30 xx.45 xx.00? the same for those for 5 minutes
xx.00 xx.05 xx.10 xx.15 and so on?


  Can we do something about the spam?
Posted by: zappra - 03-13-2018, 07:36 AM - Forum: General Discussion - Replies (12)

Undecided

Does registration need to be tightened up? I'm seeing more new posts about buying meds than trading!


  Changing parameters on a running strategy
Posted by: Greg L. - 03-12-2018, 01:46 PM - Forum: Technical Support - No Replies

Hello,

I'm running a strategy with Gekko in UI mode, but I would like to make some improvements/tuning.
As the warmup is quite long, is there any way to modify a running strategy in Gekko ?

Cheers,