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

Username
  

Password
  





Search Forums



(Advanced Search)

Forum Statistics
» Members: 20,728
» Latest member: totosafeguidecom2
» Forum threads: 1,541
» Forum posts: 7,732

Full Statistics

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

Latest Threads
New Gekko UI in the works
Forum: Announcements
Last Post: dejaoffice
Yesterday, 10:44 AM
» Replies: 137
» Views: 156,392
Gekko development status ...
Forum: Announcements
Last Post: zerzamilmu
04-20-2024, 11:39 AM
» Replies: 806
» Views: 536,206
An official Gekko service...
Forum: Announcements
Last Post: CaroleDennis
04-20-2024, 04:03 AM
» Replies: 85
» Views: 140,377
Gekko with malware spotte...
Forum: Announcements
Last Post: alisonagron
04-18-2024, 08:05 AM
» Replies: 130
» Views: 92,038
Gekko 0.6 released
Forum: Announcements
Last Post: sabinaholt
03-27-2024, 12:10 PM
» Replies: 104
» Views: 216,000
How to Soft Reset or Hard...
Forum: General Discussion
Last Post: lucifar
10-07-2021, 07:18 PM
» Replies: 22
» Views: 39,432
How to add Binance Future...
Forum: Technical Support
Last Post: Xavier32
10-07-2021, 02:20 PM
» Replies: 47
» Views: 81,843
Bittrex Configuration hel...
Forum: Bittrex
Last Post: yirzolusto
10-07-2021, 07:39 AM
» Replies: 6
» Views: 15,183
[Question] Why does gekko...
Forum: General Discussion
Last Post: cryptocurrency0
10-06-2021, 01:16 PM
» Replies: 16
» Views: 34,619
a couple of technical Que...
Forum: Technical Support
Last Post: mtom78632
10-06-2021, 11:08 AM
» Replies: 25
» Views: 45,745

 
  How to import market
Posted by: Silent_G - 08-09-2019, 05:53 PM - Forum: Technical Discussion - No Replies

I'm new to this and just want some data to backtest some strategies. When I go to the backtest tab, I click the "Scan available data" button, this brings me to the importer tab, all well and good. But when trying to start a new import under market is completely blank, no drop downs, nothing. I didn't seem to do anything wrong in the install too can anyone help?


Question newbie set start fund and altering funds
Posted by: PGTART - 08-08-2019, 09:25 AM - Forum: General Discussion - Replies (4)

I've been testing out various strategies, and now i am wondering.
I'm at some strange fund level now, and its not realistic anymore.
Where can i set the fund back to 100 dollar or any number i provide ?.

If i would like to withdrawl some cash cash from it, say i would like to get 50 dollar back from the balance (not use it for trading anymore).
How do i tell that to gekko ?


  indicator evaluation
Posted by: rengel - 08-05-2019, 03:29 PM - Forum: Technical Discussion - No Replies

There is this special directory I heard of from certain topics on GitHub, which is about the evaluation of indicators ..\test\indicators\

I don't know how to execute the files there. How are they used/executed?

Quote:ReferenceError: describe is not defined

I would like to replicate this for other indicators, since the comparison against tulip or thelike is a good starting point, but it is nicer to reference precalculated values for other technical indicators.

Thanks in advance..
rengel


  Quick example of how to implement NATR in a strategy.
Posted by: MrBird - 08-05-2019, 12:59 AM - Forum: Guides - No Replies

Can anybody post a quick code example of how this indicators is coded in a strategy?


  What to do for bitstamp support
Posted by: Dim83fr - 08-04-2019, 12:02 PM - Forum: Bitstamp - No Replies

Hi,

Can you explain what have to be done for bitstamp support. I'm ready to help, but I need a "to do/to check" list. 
New gekko structure, new gekko API, new bitstamp api, Key management modifications, ... ?
Thank you


  Every time
Posted by: pudly - 08-03-2019, 09:08 PM - Forum: General Discussion - Replies (2)

I always get this when trying to NPM the exchange. I can never get past his point when installing gekko on Win 64 machine.



Attached Files
.png   always the same.PNG (Size: 57.55 KB / Downloads: 6)

  Bullseye Markets News
Posted by: bullseyemarkets - 07-31-2019, 06:41 AM - Forum: General Discussion - Replies (2)

Hi,
 
My name is Kiran
I am officially representative of Bullseye Markets
Bullseye Markets is a forex broker, BullsEye Markets LTD is registered as a Financial Investment Firm by the Marshal Island.
Registration Number 96658.
If you have any question regarding this broker about the services and promotion feel free to ask me here. i will be happy to assist you.
 
Regards


  Elliot Wave Gekko Strategy
Posted by: jcdude - 07-30-2019, 11:26 PM - Forum: Strategy Development - No Replies

Hello

Has anyone developed a Elliot Wave indicator for Gekko.
I am looking for a indicator that I can tweak to suit my needs.

I would like to train a neural network with the output.


Photo Roundtrip display error
Posted by: sir_poop_alot - 07-29-2019, 06:05 PM - Forum: Technical Discussion - No Replies

Hi guys... Been using Gekko for a couple of weeks now and encountered the following roundtrip display error.



Attached Files
.png   roundtrip display error.png (Size: 8.22 KB / Downloads: 8)

  exchange wrapper binance error?
Posted by: martyc - 07-27-2019, 05:00 PM - Forum: Technical Discussion - No Replies

Just seen an error 2013 when trading on binance and it looks to me like we have regressed a bit. Can someone please confirm?

It looks like commit 4b122cfdfb0e66225f769ac3db022bdb6b14aeda has been lost in the stable and develop branches

develop branch has this in exchange/wrappers/binance.js

     if(funcName === 'checkOrder' && error.message.includes('Order does not exist.')) {
       console.log(new Date, 'Binance doesnt know this order, retrying up to 10 times..');
       error.retry = 10;
     }

and the commit for [WIP] GB stability improvements #2330

wanted it to be this
     if(funcName === 'checkOrder' && error.message.includes('Order does not exist.')) {
       // order got filled in full before it could be
       // cancelled, meaning it was NOT cancelled.
       return callback(false, {filled: true});
     }
Am I reading this right?