add freqao backend machinery, user interface, documentation

This commit is contained in:
robcaulk
2022-05-03 10:14:17 +02:00
parent 65ab6d2468
commit 099263dc25
19 changed files with 1405 additions and 3 deletions

View File

@@ -0,0 +1,12 @@
from freqtrade.resolvers.freqaimodel_resolver import FreqaiModelResolver
class CustomModel:
"""
A bridge between the user defined IFreqaiModel class
and the strategy.
"""
def __init__(self,config):
self.bridge = FreqaiModelResolver.load_freqaimodel(config)