hippocritical

Results 38 comments of hippocritical

this proxy does not fully proxy everything if you start 4 bots at once then it will bypass the volume queries 4x (volumepairlist) and hence IP ban you. you will...

### 1st : create a file wait.sh in the same folder as your docker-compose file with this content: #!/bin/bash [ "$SLEEP" ] && sleep $SLEEP freqtrade $@ ### 2nd: add...

pushed a new commit with several fixes, tests will come when the base code looks ok.

Some strategies produce the following error message (as an example for moved modules): freqtrade.resolvers.iresolver - WARNING - Could not import [FILE] due to 'cannot import name 'CategoricalParameter' from 'freqtrade.strategy.hyper' and...

yes ast needs "valid code", but in the start I disabled the full checking of the code. It is that it does not NEED to be fully valid anymore. Meaning...

added a ton of tests split into digestible chunks

yes it takes ages now since we are forced to go through all child nodes recursively again to really get EVERYTHING in there. Going through there curated will not get...

have to rewrite the whole shebang, this gets out of hand ... too many conditionals etc. Rewriting with ast.walk, this might take some time ... on hold until then.

found that astor.to_source(tree) makes some code ugly, like this: {'params': {'trailing': {'trailing_stop': False, 'trailing_stop_positive': False, 'trailing_stop_positive_offset': 0.0, 'trailing_only_offset_is_reached': False}, 'buy': { 'atrs_range': 1, 'rsi_buy_hline': 61, 'window_range': 16}, 'sell': {}, 'protection':...

I am confident that this version will be workable. The conversion time for a simple strategy is 0.0-ish seconds and for a complicated one 1.x-ish seconds. Added timers for conversion...