02-15-2018, 11:44 PM
(This post was last modified: 02-16-2018, 02:36 PM by susitronix.)
Hi i try to answer
Check and Update //could you tell where you found this ?
The candle VAR consist of: // it can be found in the candleBatcher // /.../gekko/test/candleBatcher
The candleBatcher makes the candles from the raw data. (CandleSize = 13 Minutes)
I did not used it jet but guess it look something like this:
// in the Strat
Gekko should only be used for one pair per exchange.
Gekko checks the balance of your Currency AND Asset when a Stratrunner(liveGekko) is initiated, AND before every Trade.
Gekko will always trade the full ammount of Currency/Asset avilable.
(i deposit the ammount to begin with AS CURRENCY and start Gekko)
>>> Gekko only uses the PAIR you want to trade with. ENY OTHER ASSET WILL NOT BE TOUCHED BY GEKKO
>>> Gekko ONLY makes the Buy/Sell mouseClick for you. Gekko dos not take over your account or so.
Gekko --ui dos not graph the indicators. (YET!) ;-) THANKS MIKE
>>> You can use Coinigy or TrendView for to setup your indicators and have a visual Feedback
(i use coinigy. It allow me to choose ENY candle value instead of only 5/10/15/30minutes)
Check and Update //could you tell where you found this ?
The candle VAR consist of: // it can be found in the candleBatcher // /.../gekko/test/candleBatcher
Code:
var candles = [
{"start":moment("2015-02-14T23:57:00.000Z"),"open":257.19,"high":257.19,"low":257.18,"close":257.18,"vwp":257.18559990418294,"volume":0.97206065,"trades":2},
{"start":moment("2015-02-14T23:58:00.000Z"),"open":257.02,"high":257.02,"low":256.98,"close":256.98,"vwp":257.0175849772836,"volume":4.1407478,"trades":2},
{"start":moment("2015-02-14T23:59:00.000Z"),"open":256.85,"high":256.99,"low":256.85,"close":256.99,"vwp":256.9376998467,"volume":6,"trades":6},
The candleBatcher makes the candles from the raw data. (CandleSize = 13 Minutes)
I did not used it jet but guess it look something like this:
// in the Strat
Code:
// what happens on every new candle?
method.update = function(candle) {
// nothing!
}
Gekko should only be used for one pair per exchange.
Gekko checks the balance of your Currency AND Asset when a Stratrunner(liveGekko) is initiated, AND before every Trade.
Gekko will always trade the full ammount of Currency/Asset avilable.
(i deposit the ammount to begin with AS CURRENCY and start Gekko)
>>> Gekko only uses the PAIR you want to trade with. ENY OTHER ASSET WILL NOT BE TOUCHED BY GEKKO
>>> Gekko ONLY makes the Buy/Sell mouseClick for you. Gekko dos not take over your account or so.
Gekko --ui dos not graph the indicators. (YET!) ;-) THANKS MIKE
>>> You can use Coinigy or TrendView for to setup your indicators and have a visual Feedback
(i use coinigy. It allow me to choose ENY candle value instead of only 5/10/15/30minutes)