Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 414 online users. » 0 Member(s) | 414 Guest(s)
|
Latest Threads |
Gekko with malware spotte...
Forum: Announcements
Last Post: Isobel
6 hours ago
» Replies: 191
» Views: 170,180
|
Gekko development status ...
Forum: Announcements
Last Post: kontho
6 hours ago
» Replies: 1,008
» Views: 932,400
|
Gekko 0.6 released
Forum: Announcements
Last Post: Pharagon
11-23-2024, 10:13 AM
» Replies: 122
» Views: 269,084
|
An official Gekko service...
Forum: Announcements
Last Post: drivemad2
11-22-2024, 07:24 AM
» Replies: 103
» Views: 189,878
|
New Gekko UI in the works
Forum: Announcements
Last Post: clduplicateremover
11-18-2024, 08:21 PM
» Replies: 174
» Views: 227,777
|
How to Soft Reset or Hard...
Forum: General Discussion
Last Post: lucifar
10-07-2021, 07:18 PM
» Replies: 22
» Views: 53,030
|
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 108,405
|
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 19,117
|
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 45,832
|
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 58,581
|
|
|
Genetic Algorithm bull bear rsi strat tuning - how to measure strategy effectiveness? |
Posted by: coiner2018 - 05-20-2018, 10:12 PM - Forum: Strategy Development
- Replies (2)
|
|
I've written a simple .NET Core app which is using Genetic Algorithms to tune the RSI BULL BEAR ADX strategy.
What I'm trying to work out, is, when measuring the "fitness" of a given set of strategy parameters, is it best to pick the parameter values that simply lead to the highest returns or the highest Sharpe Ratio?
I started off using the Sharpe Ratio - as I assumed this might lead me to tuning the strategy to be a mix of "reasonable risk" and "reasonable return" but I've found that in a lot cases, the highest Sharpe Ratio numbers can often produce pretty poor returns (whereas lower ratios can produce very good returns).
Anyone else done some work/research on this?
(PS for anyone interested, I'm using the GeneticSharp Nuget package for the GA implementation)
|
|
|
Gekko on Headless Server |
Posted by: whoodat - 05-20-2018, 03:59 AM - Forum: General Discussion
- Replies (5)
|
|
I've got most things open yet I still can't get the UI to open on a headless server in a trusted environment. I've tried putting in the IP of the server in both sections that says "host" still no luck...can anyone tell me what I am doing wrong please. Thanks in advance.
const CONFIG = {
headless: true,
api: {
host: '0.0.0.0',
port: 3000,
},
ui: {
ssl: false,
host: '0.0.0.0', // Set this to the IP of the machine that will run Gekko
port: 3000,
path: '/'
},
adapter: 'sqlite'
}
if(typeof window === 'undefined')
module.exports = CONFIG;
else
window.CONFIG = CONFIG;
|
|
|
Execution of signals developed in third party products |
Posted by: Johnny - 05-20-2018, 02:30 AM - Forum: Strategy Development
- Replies (5)
|
|
Hello people
I use Amibroker to develop systems that are then validated trough a walk forward analysis.
So they're live, constantly adapting to the latest market conditions.
I'm just looking to execute the signals in a crypto exchange 24/7.
The signals could be adapted to the software.
Could Gekko be useful for that?
And if so, how should I send the alerts?
|
|
|
New exchange trading not working |
Posted by: njannink - 05-18-2018, 03:36 PM - Forum: Technical Discussion
- No Replies
|
|
I'm busy adding support to a new exchange (lykke.com) and got more or less everything setup. The market watcher is getting the data and showing me a graph, but when I start a strat runner the Runtime part of the strat running keeps on showing the loading symbol. I tested with Kraken and there the Runtime part show this information quite quickly:
Watching since
2018-05-18 14:38
Received data until
2018-05-18 15:34
Data spanning
56 minutes
Amount of trades
0
Any idea what might be wrong?
|
|
|
Unable to Install Talib and Tulind |
Posted by: puneetjain703 - 05-18-2018, 04:10 AM - Forum: Technical Support
- Replies (4)
|
|
I get the following error messages
\
gekko$ npm install talib@1.0.2 tulind
> talib@1.0.2 install /Users/PuneetJain/gekko/node_modules/talib
> node ./src/lib/build.js && node-gyp configure && node-gyp build
building talib functions...
make ✖ ERR Missing Makefile / Bakefile
make ℹ info Run "make init" to generate a Makefile.
> tulind@0.8.10 install /Users/PuneetJain/gekko/node_modules/tulind
> node-pre-gyp install --fallback-to-build
node-pre-gyp ERR! Tried to download(404): https://tulipnode.s3.amazonaws.com/tulin...x64.tar.gz
node-pre-gyp ERR! Pre-built binaries not found for tulind@0.8.10 and node@8.11.1 (node-v57 ABI, unknown) (falling back to source compile with node-gyp)
make ✖ ERR Missing Makefile / Bakefile
make ℹ info Run "make init" to generate a Makefile.
+ talib@1.0.2
+ tulind@0.8.10
updated 2 packages in 12.588s
|
|
|
Gekko on Headless Server |
Posted by: whoodat - 05-17-2018, 10:56 PM - Forum: Technical Support
- Replies (3)
|
|
I can't seem to get the UI opened on my headless server, was wondering if anyone has had success. Below is my code.
const CONFIG = {
headless: true,
api: {
host: '0.0.0.0',
port: 3000,
timeout: 120000 // 2 minutes
},
ui: {
ssl: false,
host: '192.168.1.xx', //Home IP
port: 3000,
path: '/'
},
adapter: 'sqlite'
}
if(typeof window === 'undefined')
module.exports = CONFIG;
else
window.CONFIG = CONFIG;
Thanks chris
|
|
|
Data does not match up |
Posted by: gkendrick - 05-17-2018, 08:38 PM - Forum: Technical Support
- Replies (3)
|
|
I created a strategy in Tradeview because it's more user friendly. When I run it in Gekko the results are horrible. The data is not the same as in Tradeview.
For example, the Bollinger Bands top & bottom numbers on daily is not the same in Gekko as in Tradeview, why?
|
|
|
params for Talib sarext indicator |
Posted by: isaac.marco - 05-17-2018, 06:57 PM - Forum: Strategy Development
- No Replies
|
|
Anybody using sar indicators? I'm triying to config talib or Tulip sar indicators to get the same values I get in https://www.tradingview.com/ with the sar indicator with default config SAR (0.02, 0.02, 0.2) but no way to get the same values in gekko.
These are my params:
Code: //SAR
customSARSettings = {
optInAcceleration : 0.02,
optInMaximum : 0.2,
}
this.addTalibIndicator ('mysar', 'sar', customSARSettings);
customSAREXTSettings = {
optInStartValue : 0,
optInOffsetOnReverse : 0,
optInAccelerationInitLong : 0.02,
optInAccelerationLong: 0.02,
optInAccelerationMaxLong: 0.2,
optInAccelerationInitShort: 0.02,
optInAccelerationShort: 0.02,
optInAccelerationMaxShort: 0.2,
}
this.addTalibIndicator ('mysarext', 'sarext', customSAREXTSettings);
customTulipSARSettings = {
optInAcceleration : 0.02,
optInMaximum : 0.2,
}
this.addTulipIndicator ('mytulipsar', 'psar', customTulipSARSettings);
What it's wrong? Maybe tradingview is not a standard sar indicator?
Thank you in advance.
|
|
|
|