Welcome, Guest |
You have to register before you can post on our site.
|
Online Users |
There are currently 83 online users. » 1 Member(s) | 82 Guest(s) GekkoMove
|
Latest Threads |
Website development compa...
Forum: General Discussion
Last Post: GekkoMove
13 minutes ago
» Replies: 6
» Views: 569
|
YouTube Vanced
Forum: Technical Discussion
Last Post: hussain16
Yesterday, 01:59 PM
» Replies: 4
» Views: 2,531
|
Duplicate Telegram API co...
Forum: Technical Support
Last Post: lucifar
Yesterday, 07:28 AM
» Replies: 1
» Views: 4,041
|
cbd flower for sale
Forum: Technical Discussion
Last Post: lucifar
Yesterday, 06:11 AM
» Replies: 18
» Views: 1,128
|
promo.com
Forum: General Discussion
Last Post: mehreensiddique
02-23-2021, 09:13 PM
» Replies: 6
» Views: 104
|
how to make money with cr...
Forum: Technical Discussion
Last Post: lucifar
02-23-2021, 12:17 PM
» Replies: 25
» Views: 740
|
How important is the PR A...
Forum: General Discussion
Last Post: Alexandercook
02-23-2021, 10:08 AM
» Replies: 11
» Views: 1,210
|
What Makes Ethereum Uniqu...
Forum: General Discussion
Last Post: emmajoe
02-23-2021, 07:39 AM
» Replies: 2
» Views: 328
|
real weed for sale online
Forum: Technical Discussion
Last Post: duvallmarcano
02-23-2021, 07:33 AM
» Replies: 3
» Views: 167
|
Creating New Strategy Tut...
Forum: Automated Trading
Last Post: MaeRomaguera
02-22-2021, 03:59 PM
» Replies: 4
» Views: 9,367
|
|
|
Parameter Definitions |
Posted by: CrunchTime - 01-30-2018, 09:47 PM - Forum: General Discussion
- Replies (1)
|
 |
Hi there, can someone help or point me to documentation defining the parameters for the example strategies. I can't seem to find anything. I was playing with a couple USD BTC strategies on GDAX but I'm not sure what the parameters mean or what the values are. Heres the parameters for MACD:
short = 10
long = 21
signal = 9
[thresholds]
down = -0.025
up = 0.025
persistence = 1
What do these values mean? Is there any documentation on this? Also under the paper trader, there are these values:
feeMaker = 0.25
feeTaker = 0.25
feeUsing = 'maker'
slippage = 0.05
[simulationBalance]
asset = 1
currency = 100
I understand the first couple but what is the slippage number, a percent? what do the asset and currency numbers represent?
Thanks.
|
|
|
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
|
|
|
[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!
|
|
|
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
|
|
|
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
|
|
|
|