We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
I have this signals but dont trade.
this is my intance.js
var c = module.exports = {}
c.symbols = []
let z = [ 'BTCUSDT', 'ETHUSDT', 'BNBUSDT', 'SOLUSDT', "LUNAUSDT", 'XRPUSDT', 'DOTUSDT', 'GMTUSDT', 'ADAUSDT', "AVAXUSDT", ]
z.forEach((pair) => { c.symbols.push({ 'symbol': pair, 'periods': ['1m', '15m', '1h'], 'exchange': 'binance', 'state': 'watch', 'watchdogs': [ { 'name': 'stoploss_watch', 'stop': 2.5, } ], 'strategies': [ { strategy: 'dip_catcher', options: { "period": "15m", "trend_cloud_multiplier": 4, "hma_high_period": 7, "hma_high_candle_source": "high", "hma_low_period": 4, "hma_low_candle_source": "low" }, } ] }) }) //tradear let x = [ 'BTCEUR', "LUNAEUR", ]
x.forEach((pair) => { c.symbols.push({ 'symbol': pair, 'periods': ['1m', '15m', '1h'], 'exchange': 'binance', 'state': 'trade', 'watchdogs': [ { 'name': 'stoploss_watch', 'stop': 2.5, } ], 'strategies': [ { strategy: 'dip_catcher', options: { "period": "15m", "trend_cloud_multiplier": 5, "hma_high_period": 7, "hma_high_candle_source": "close", "hma_low_period": 4, "hma_low_candle_source": "close" }, } ],
'trade ': { currency_capital: 100, strategies: [ { strategy: 'dip_catcher', interval: '15m', options: { "period": "15m", "trend_cloud_multiplier": 5, "hma_high_period": 7, "hma_high_candle_source": "close", "hma_low_period": 4, "hma_low_candle_source": "close" }, } ], } })
})
The text was updated successfully, but these errors were encountered:
Solved.
this is my instance.js
var c = module.exports = {} c.symbols = [] // only watch solo mirar let z = [ 'BTCUSDT', 'ETHUSDT', 'BNBUSDT', 'SOLUSDT', "LUNAUSDT", 'XRPUSDT', 'DOTUSDT', 'GMTUSDT', 'ADAUSDT', "AVAXUSDT", ] z.forEach((pair) => { c.symbols.push({ 'symbol': pair, 'periods': ['1m', '15m', '1h'], 'exchange': 'binance', 'state': 'watch', 'watchdogs': [ { 'name': 'stoploss_watch', 'stop': 2.5, } ], 'strategies': [ { strategy: 'dip_catcher', options: { "period": "15m", "trend_cloud_multiplier": 4, "hma_high_period": 9, "hma_high_candle_source": "close", "hma_low_period": 7, "hma_low_candle_source": "close" }, } ] }) }) //trade let x = [ 'BTCEUR', "LUNAEUR", ] x.forEach((pair) => { c.symbols.push({ symbol: pair, periods: ['1m', '15m', '1h'], exchange: 'binance', trade : { currency_capital: 100, strategies: [ { strategy: 'dip_catcher', interval: '15m', options: { "period": "15m", "trend_cloud_multiplier": 5, "hma_high_period": 7, "hma_high_candle_source": "close", "hma_low_period": 4, "hma_low_candle_source": "close" } } ] }, watchdogs: [ { name: 'stoploss_watch', stop: 2.5, } ] }) })
Sorry, something went wrong.
No branches or pull requests
I have this signals but dont trade.
this is my intance.js
var c = module.exports = {}
c.symbols = []
let z = [
'BTCUSDT', 'ETHUSDT', 'BNBUSDT', 'SOLUSDT', "LUNAUSDT", 'XRPUSDT', 'DOTUSDT', 'GMTUSDT', 'ADAUSDT', "AVAXUSDT",
]
z.forEach((pair) => {
c.symbols.push({
'symbol': pair,
'periods': ['1m', '15m', '1h'],
'exchange': 'binance',
'state': 'watch',
'watchdogs': [
{
'name': 'stoploss_watch',
'stop': 2.5,
}
],
'strategies': [
{
strategy: 'dip_catcher',
options: {
"period": "15m",
"trend_cloud_multiplier": 4,
"hma_high_period": 7,
"hma_high_candle_source": "high",
"hma_low_period": 4,
"hma_low_candle_source": "low"
},
}
]
})
})
//tradear
let x = [
'BTCEUR', "LUNAEUR",
]
x.forEach((pair) => {
c.symbols.push({
'symbol': pair,
'periods': ['1m', '15m', '1h'],
'exchange': 'binance',
'state': 'trade',
'watchdogs': [
{
'name': 'stoploss_watch',
'stop': 2.5,
}
],
'strategies': [
{
strategy: 'dip_catcher',
options: {
"period": "15m",
"trend_cloud_multiplier": 5,
"hma_high_period": 7,
"hma_high_candle_source": "close",
"hma_low_period": 4,
"hma_low_candle_source": "close"
},
}
],
})
The text was updated successfully, but these errors were encountered: