mirror of
https://github.com/freqtrade/freqtrade.git
synced 2024-11-10 18:23:55 +00:00
19 lines
419 B
Python
19 lines
419 B
Python
import pytest
|
|
|
|
@pytest.fixture(scope="module")
|
|
def pairs():
|
|
return ['btc-neo', 'btc-eth', 'btc-omg', 'btc-edg', 'btc-pay',
|
|
'btc-pivx', 'btc-qtum', 'btc-mtl', 'btc-etc', 'btc-ltc']
|
|
|
|
@pytest.fixture(scope="module")
|
|
def conf():
|
|
return {
|
|
"minimal_roi": {
|
|
"40": 0.0,
|
|
"30": 0.01,
|
|
"20": 0.02,
|
|
"0": 0.04
|
|
},
|
|
"stoploss": -0.05
|
|
}
|