├── README.md ├── config ├── futures_degen_dry.json ├── futures_market.json └── spot_limit.json ├── hyperotable └── hyperopt_strat.py ├── mind_v1 ├── mind.py └── readme.md ├── momentum ├── gpt_reversal.py ├── gpt_scalp_hr.py ├── multi_rsi_degen.json ├── multi_rsi_degen.py ├── multiple_tf_rsi.json ├── multiple_tf_rsi.py └── williamr.py ├── pattern_recognition └── simple_patterns.py ├── random_ideas ├── big_short.json ├── big_short.py ├── grid.py ├── momentum_tf_divergence.py ├── short_1h_BTC.json └── short_1h_BTC.py └── spot_trading ├── spot_coumpound.py └── spot_macd.py /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/README.md -------------------------------------------------------------------------------- /config/futures_degen_dry.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/config/futures_degen_dry.json -------------------------------------------------------------------------------- /config/futures_market.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/config/futures_market.json -------------------------------------------------------------------------------- /config/spot_limit.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/config/spot_limit.json -------------------------------------------------------------------------------- /hyperotable/hyperopt_strat.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/hyperotable/hyperopt_strat.py -------------------------------------------------------------------------------- /mind_v1/mind.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/mind_v1/mind.py -------------------------------------------------------------------------------- /mind_v1/readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/mind_v1/readme.md -------------------------------------------------------------------------------- /momentum/gpt_reversal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/momentum/gpt_reversal.py -------------------------------------------------------------------------------- /momentum/gpt_scalp_hr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/momentum/gpt_scalp_hr.py -------------------------------------------------------------------------------- /momentum/multi_rsi_degen.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/momentum/multi_rsi_degen.json -------------------------------------------------------------------------------- /momentum/multi_rsi_degen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/momentum/multi_rsi_degen.py -------------------------------------------------------------------------------- /momentum/multiple_tf_rsi.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/momentum/multiple_tf_rsi.json -------------------------------------------------------------------------------- /momentum/multiple_tf_rsi.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/momentum/multiple_tf_rsi.py -------------------------------------------------------------------------------- /momentum/williamr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/momentum/williamr.py -------------------------------------------------------------------------------- /pattern_recognition/simple_patterns.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/pattern_recognition/simple_patterns.py -------------------------------------------------------------------------------- /random_ideas/big_short.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/random_ideas/big_short.json -------------------------------------------------------------------------------- /random_ideas/big_short.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/random_ideas/big_short.py -------------------------------------------------------------------------------- /random_ideas/grid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/random_ideas/grid.py -------------------------------------------------------------------------------- /random_ideas/momentum_tf_divergence.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/random_ideas/momentum_tf_divergence.py -------------------------------------------------------------------------------- /random_ideas/short_1h_BTC.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/random_ideas/short_1h_BTC.json -------------------------------------------------------------------------------- /random_ideas/short_1h_BTC.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/random_ideas/short_1h_BTC.py -------------------------------------------------------------------------------- /spot_trading/spot_coumpound.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/spot_trading/spot_coumpound.py -------------------------------------------------------------------------------- /spot_trading/spot_macd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Yodolescrypto/yodostrats/HEAD/spot_trading/spot_macd.py --------------------------------------------------------------------------------