Plaing around with randomtrader

This commit is contained in:
7u83 2017-01-24 08:59:49 +01:00
parent 41899d9cbd
commit 3c56ef2d0e
1 changed files with 4 additions and 4 deletions

View File

@ -36,13 +36,13 @@ import sesim.Exchange;
public class RandomTraderConfig implements AutoTraderConfig {
public float[] sell_volume = {100, 100};
public float[] sell_limit = {-1f, 1.0101f};
public int[] sell_order_wait = {1000, 50000};
public float[] sell_limit = {-5f, 5f};
public int[] sell_order_wait = {40000, 150000};
public int[] wait_after_sell = {10, 30};
public float[] buy_volume = {100, 100};
public float[] buy_limit = {-1f, 1.0101f};
public int[] buy_order_wait = {1000, 50000};
public float[] buy_limit = {-5f, 5f};
public int[] buy_order_wait = {40000, 150000};
public int[] wait_after_buy = {10, 30};
@Override