Skip to content
This repository has been archived by the owner on Feb 16, 2020. It is now read-only.

option mutally disable another one ? #384

Closed
Pascal66 opened this issue Jul 14, 2016 · 3 comments
Closed

option mutally disable another one ? #384

Pascal66 opened this issue Jul 14, 2016 · 3 comments

Comments

@Pascal66
Copy link
Contributor

Since I've set config.trader = true (with good key for btce), i've just advice and profit report.
No trade are made
Do I miss something wrong ? Do I wait ? Do I have more asset or currency in wallet?
Thank you

// Want Gekko to perform real trades on buy or sell advice?
// Enabling this will activate trades for the market being
// watched by config.watch.
config.trader = {
enabled: true,
...

config.adviceLogger = {
enabled: true
}
// do you want Gekko to calculate the profit of its own advice?
config.profitSimulator = {
enabled: true,
// report the profit in the currency or the asset?
reportInCurrency: true,
// start balance, on what the current balance is compared with
simulationBalance: {
// these are in the unit types configured in the watcher.
asset: 1,
currency: 100,
},
// // only want report after a sell? set to false.
// verbose: false,

// how much fee in % does each trade cost?
fee: 0.2,
// how much slippage/spread should Gekko assume per trade?
slippage: 0.05
}

// Monitor the live market
config.watch = {
exchange: 'btce', // see gekko/docs/supported_exchanges.md
currency: 'USD',
asset: 'ETH'

config.tradingAdvisor = {
enabled: true,
method: 'CCI', //'MACD',StochRSI
candleSize: 60,
historySize: 25,
adapter: 'sqlite',
talib: {
enabled: false,
version: '1.0.2'
}
}
// CCI Settings
config.CCI = {
constant: 0.015, // constant multiplier. 0.015 gets to around 70% fit
history: 90, // history size, make same or smaller than history
thresholds: {
up: 100, // fixed values for overbuy upward trajectory
down: -100, // fixed value for downward trajectory
persistence: 1 // filter spikes by adding extra filters candles
}
}

@hoddy
Copy link
Contributor

hoddy commented Jul 15, 2016

You will need to have enough currecy to cover your fee's in the btc-e online wallet to be able to trade (say 0.5ETH), also are you sure gekko should have traded following your strategy yet? I find it good to map out the charts on xbtce then you can see what gekko should be doing.

Hope this helps if not i will check it later against my config as mine is currently set for btc-e and eth too.

@Pascal66
Copy link
Contributor Author

Pascal66 commented Jul 15, 2016 via email

@Pascal66
Copy link
Contributor Author

Pascal66 commented Aug 8, 2016

Hope this helps if not i will check it later against my config as mine is currently set for btc-e and eth too.
@hoddy sure :)

@Pascal66 Pascal66 closed this as completed Aug 8, 2016
Sign up for free to subscribe to this conversation on GitHub. Already have an account? Sign in.
Labels
None yet
Projects
None yet
Development

No branches or pull requests

2 participants